@font-face {
    font-family: 'Outfit';
    src: url('Outfit-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('Outfit-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FFD23F;
    /* More vibrant yellow from original logo */
    --primary-hover: #F7C01B;
    --secondary: #1E293B;
    --bg: #110e24;
    /* Deeper purple-blue from theme */
    --bg-light: #1c1836;
    --text: #F8FAFC;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --glass: rgba(17, 14, 36, 0.8);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: block;
    height: 50px;
    width: 150px;
    background: url('logo.png') no-repeat center/contain;
    text-indent: -9999px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
}

.nav ul li a:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--border);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(17, 14, 36, 0.7) 0%, rgba(28, 24, 54, 0.4) 100%), url('hero.webp') center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.8s ease-out;
}

.bonus-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 14px;
}

.bonus-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn-hero {
    padding: 20px 50px;
    font-size: 1.2rem;
    background: linear-gradient(to right, #D4AF37, #F5D76E);
    color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.content-section p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 17px;
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 60px 0 30px;
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.content-section h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin: 40px 0 20px;
}

.content-section h4 {
    font-size: 1.3rem;
    color: var(--text);
    margin: 30px 0 15px;
    font-weight: 600;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 50px;
}

/* Footer */
.footer {
    background-color: #0c1221;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-nav h4 {
    color: var(--text);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: var(--text-muted);
}

.footer-nav ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text);
    transition: 0.3s;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg);
        z-index: 999;
        transition: 0.4s;
        padding: 40px;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .nav ul li a {
        font-size: 24px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .bonus-title {
        font-size: 1.8rem;
    }

    .bonus-card {
        padding: 30px 20px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section h3 {
        font-size: 1.4rem;
    }
}

/* Mobile identical screen optimization */
@media (max-width: 480px) {
    .hero {
        align-items: flex-start;
        padding-top: 120px;
    }

    .hero-content {
        text-align: left;
    }

    .bonus-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        backdrop-filter: none;
    }

    .bonus-title {
        font-size: 1.6rem;
        text-align: left;
    }

    .btn-hero {
        width: 100%;
        margin-top: 20px;
    }
}