/* Import Mythical Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #030712;
    --card-bg: #0f172a;
    --accent-blue: #0ea5e9;
    --forest-green: #22c55e;
    --gold: #d4af37;
    --mist: #cbd5e1;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(3, 7, 18, 0.3), rgba(3, 7, 18, 0.8)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, var(--bg-dark));
}

.hero h1 {
    font-size: clamp(3rem, 12vw, 5.5rem);
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.5s ease-out;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    max-width: 900px;
    font-weight: 300;
    color: var(--mist);
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.strategy-section {
    margin-bottom: 8rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
}

.strategy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strategy-header h2 {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.strategy-header p {
    color: var(--mist);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.strategy-item:hover {
    background: rgba(14, 165, 233, 0.05);
    border-left-color: var(--accent-blue);
    transform: translateX(10px);
}

.strategy-item .icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.strategy-item h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.strategy-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

/* Domain Grid */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.domain-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.domain-name {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
}

.paypal-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    padding: 1rem;
    border: 1px solid var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.paypal-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Trust Section */
.trust-section {
    margin-top: 8rem;
    padding: 4rem;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.trust-header p {
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trust-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Brokered Section */
.brokered-by {
    text-align: center;
    padding: 6rem 2rem;
    background: #020617;
    border-top: 1px solid #1e293b;
}

.brokered-by p {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.brokered-by img {
    max-width: 280px;
    height: auto;
    filter: grayscale(1) invert(1) brightness(2);
    transition: filter 0.3s ease;
}

.brokered-by img:hover {
    filter: grayscale(0) invert(0) brightness(1);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .strategy-grid { grid-template-columns: 1fr; }
    .strategy-item { padding: 1.5rem; }
}
