@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lynx-black: #0a0a0a;
    --lynx-charcoal: #1a1a1a;
    --lynx-slate: #2d2d2d;
    --lynx-gold: #d4af37;
    --lynx-amber: #ffbf00;
    --lynx-silver: #c0c0c0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--lynx-black);
    color: #e8e8e8;
    min-height: 100vh;
    line-height: 1.7;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, var(--lynx-black) 0%, transparent 100%);
    padding: 0.5rem 0;
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--lynx-gold);
    text-decoration: none;
    letter-spacing: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo::before {
    content: '◆';
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    color: var(--lynx-silver);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--lynx-gold);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    padding: 12px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--lynx-gold);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-toggle.open span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

main {
    padding-top: 90px;
}

.hero-banner {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--lynx-black) 0%, var(--lynx-charcoal) 50%, var(--lynx-black) 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(212, 175, 55, 0.03) 100px,
        rgba(212, 175, 55, 0.03) 101px
    );
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--lynx-black), transparent);
}

.hero-inner {
    width: 100%;
    padding: 4rem;
    position: relative;
    z-index: 2;
}

.hero-inner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    line-height: 1.1;
}

.hero-inner h1 span {
    color: var(--lynx-gold);
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--lynx-silver);
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    border: 2px solid var(--lynx-gold);
    color: var(--lynx-gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--lynx-gold);
    color: var(--lynx-black);
}

.notice-strip {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.notice-item span:first-child {
    color: var(--lynx-gold);
    font-size: 1.3rem;
}

.featured-area {
    padding: 5rem 4rem;
    background: var(--lynx-charcoal);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--lynx-gold);
    letter-spacing: 5px;
}

.game-container {
    max-width: 950px;
    margin: 0 auto;
    background: var(--lynx-black);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

.features-section {
    padding: 6rem 4rem;
    background: var(--lynx-black);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: var(--lynx-charcoal);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--lynx-gold);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--lynx-gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--lynx-silver);
    font-size: 0.95rem;
}

.about-block {
    padding: 6rem 4rem;
    background: linear-gradient(180deg, var(--lynx-charcoal) 0%, var(--lynx-black) 100%);
}

.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-wrapper h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--lynx-gold);
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-align: center;
}

.about-wrapper p {
    font-size: 1.1rem;
    color: var(--lynx-silver);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.9;
}

.site-footer {
    background: var(--lynx-black);
    padding: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--lynx-gold);
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.gaming-resources h4 {
    font-size: 1rem;
    color: var(--lynx-silver);
    margin-bottom: 1rem;
    font-weight: 500;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.resource-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.resource-links a:hover {
    color: var(--lynx-gold);
}

.footer-legal {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: var(--lynx-charcoal);
    padding: 4rem;
    text-align: center;
    max-width: 480px;
    border: 1px solid var(--lynx-gold);
}

.age-gate-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--lynx-gold);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    color: var(--lynx-silver);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.age-btn.confirm {
    background: var(--lynx-gold);
    color: var(--lynx-black);
}

.age-btn.deny {
    background: transparent;
    border: 1px solid var(--lynx-silver);
    color: var(--lynx-silver);
}

.age-btn:hover {
    transform: scale(1.05);
}

.page-content {
    padding: 6rem 4rem 4rem;
    min-height: calc(100vh - 250px);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--lynx-charcoal);
    padding: 3rem 4rem;
    border-left: 4px solid var(--lynx-gold);
}

.content-wrapper h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--lynx-gold);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.content-wrapper h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    margin: 2.5rem 0 1rem;
}

.content-wrapper p {
    color: var(--lynx-silver);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-wrapper ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--lynx-silver);
}

.content-wrapper li {
    margin-bottom: 0.6rem;
}

.play-info {
    background: var(--lynx-slate);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--lynx-amber);
}

.play-info p {
    margin: 0;
}

@media (max-width: 1024px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--lynx-black);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .header-inner {
        padding: 1rem 1.5rem;
    }

    .hero-inner {
        padding: 2rem 1.5rem;
    }

    .hero-inner h1 {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .notice-strip {
        flex-direction: column;
        gap: 1rem;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .featured-area,
    .features-section,
    .about-block,
    .site-footer,
    .page-content {
        padding: 3rem 1.5rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .game-container iframe {
        height: 400px;
    }
}
