@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --emerald-dark: #0a2e1a;
    --emerald-main: #10b981;
    --emerald-light: #34d399;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --charcoal: #1f2937;
    --text-primary: #f0fdf4;
    --text-secondary: #a7b8a8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--charcoal);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.65;
}

.header {
    background: linear-gradient(to right, var(--emerald-dark), var(--charcoal));
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--emerald-main);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.site-brand svg {
    width: 40px;
    height: 40px;
}

.site-brand-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--emerald-light);
    letter-spacing: 1px;
}

.menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--emerald-main);
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--emerald-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.navigation a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--emerald-main);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navigation a:hover {
    color: var(--emerald-light);
}

.navigation a:hover::before {
    width: 100%;
}

.main-hero {
    padding: 9rem 2rem 4rem;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--charcoal) 50%, #0d3320 100%);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.main-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--silver-light), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 2rem;
}

.pill-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--emerald-main);
    padding: 0.65rem 1.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gaming-section {
    padding: 5rem 2rem;
    background: var(--charcoal);
    margin-top: -3rem;
}

.section-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--silver);
    margin-bottom: 2rem;
}

.game-frame {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--emerald-dark), var(--charcoal));
    border: 3px solid var(--emerald-main);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.features-block {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--charcoal), var(--emerald-dark));
}

.features-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: rgba(31, 41, 55, 0.7);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--emerald-main);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: var(--emerald-light);
}

.feature-box:hover::before {
    transform: scaleY(1);
}

.feature-box .icon-wrap {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--silver-light);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-area {
    padding: 4rem 2rem;
    background: var(--emerald-dark);
}

.about-content {
    max-width: 950px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 1.8rem;
    color: var(--silver);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.alert-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--emerald-main);
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-box h3 {
    color: var(--emerald-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.alert-box p {
    color: var(--text-primary);
    margin: 0;
}

.page-area {
    padding: 7rem 2rem 4rem;
    min-height: 80vh;
    background: linear-gradient(180deg, var(--charcoal), var(--emerald-dark));
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-container h1 {
    font-size: 2.4rem;
    color: var(--silver);
    margin-bottom: 1.5rem;
    font-weight: 900;
    border-left: 5px solid var(--emerald-main);
    padding-left: 1rem;
}

.page-container h2 {
    font-size: 1.35rem;
    color: var(--emerald-light);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.page-container p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.page-container ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-container ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
}

.page-container ul li::before {
    content: '▸';
    position: absolute;
    left: -1.5rem;
    color: var(--emerald-main);
}

.footer {
    background: var(--charcoal);
    border-top: 2px solid var(--emerald-main);
    padding: 2.5rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.help-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.help-links a:hover {
    color: var(--emerald-light);
}

.footer-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 46, 26, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: var(--charcoal);
    border: 3px solid var(--emerald-main);
    padding: 2.5rem;
    text-align: center;
    max-width: 440px;
    width: 100%;
}

.age-gate-box .gate-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    color: var(--silver);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.age-gate-box p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-btns button {
    padding: 0.9rem 2.2rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-accept {
    background: var(--emerald-main);
    color: var(--charcoal);
}

.btn-accept:hover {
    background: var(--emerald-light);
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
}

.btn-decline:hover {
    border-color: #ef4444;
    color: #ef4444;
}

@media (max-width: 992px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--emerald-dark);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid var(--emerald-main);
    }

    .navigation.open {
        right: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .navigation a {
        font-size: 1.05rem;
    }

    .main-hero {
        padding: 7rem 1.5rem 3rem;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .main-hero h1 {
        font-size: 2rem;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 450px;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .help-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-gate-box {
        padding: 1.8rem 1.2rem;
    }

    .gate-btns {
        flex-direction: column;
    }

    .gate-btns button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .site-brand-text {
        font-size: 1.15rem;
    }

    .main-hero h1 {
        font-size: 1.6rem;
    }

    .page-container h1 {
        font-size: 1.7rem;
    }
}
