/* Aetheroryx.xyz - Emerald Aether Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Karla:wght@300;400;500;600;700&display=swap');

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

:root {
    --aether-dark: #071210;
    --aether-deep: #0d211d;
    --aether-emerald: #10b981;
    --aether-jade: #34d399;
    --aether-mint: #a7f3d0;
    --aether-light: #ecfdf5;
    --aether-gray: #6b8a84;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Karla', sans-serif;
    background: var(--aether-dark);
    color: var(--aether-light);
    line-height: 1.75;
}

/* Header */
.aether-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(7, 18, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    padding: 1rem 0;
}

.header-box {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aether-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--aether-emerald);
    text-decoration: none;
    letter-spacing: 2px;
}

.ham-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.ham-menu span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--aether-emerald);
    margin: 6px 0;
    transition: 0.3s;
}

.ham-menu.on span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.ham-menu.on span:nth-child(2) {
    opacity: 0;
}

.ham-menu.on span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.aether-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.aether-links a {
    font-weight: 500;
    color: var(--aether-gray);
    text-decoration: none;
    padding: 0.6rem 1.3rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.aether-links a:hover {
    color: var(--aether-light);
    background: rgba(16, 185, 129, 0.15);
}

/* Intro */
.intro {
    min-height: 100vh;
    padding: 9rem 2rem 5rem;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(52, 211, 153, 0.06) 0%, transparent 40%),
        var(--aether-dark);
}

.intro-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--aether-light);
}

.intro-text h1 em {
    font-style: normal;
    color: var(--aether-emerald);
}

.intro-text p {
    font-size: 1.15rem;
    color: var(--aether-gray);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    color: var(--aether-jade);
    font-size: 0.9rem;
}

.intro-visual {
    display: flex;
    justify-content: center;
}

.gem-shape {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--aether-emerald) 0%, var(--aether-jade) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
    animation: gem-glow 4s ease-in-out infinite;
}

@keyframes gem-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Game Area */
.game-area {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--aether-deep) 0%, var(--aether-dark) 100%);
}

.area-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    text-align: center;
    color: var(--aether-emerald);
    margin-bottom: 2rem;
}

.game-holder {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--aether-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.1);
}

.game-display {
    width: 100%;
    height: 620px;
    border: none;
    border-radius: 10px;
    background: #000;
}

/* Benefits */
.benefits {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--aether-emerald);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    background: linear-gradient(145deg, var(--aether-deep), rgba(13, 33, 29, 0.5));
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s;
}

.benefit:hover {
    border-color: var(--aether-emerald);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.benefit h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--aether-jade);
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--aether-gray);
    line-height: 1.8;
}

/* About */
.about {
    padding: 5rem 2rem;
    background: var(--aether-deep);
}

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

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--aether-emerald);
    margin-bottom: 2rem;
}

.about p {
    color: var(--aether-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Footer */
.aether-footer {
    background: var(--aether-dark);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aether-emerald);
    margin-bottom: 1.5rem;
}

.footer-help {
    margin-bottom: 1.5rem;
}

.footer-help h4 {
    font-size: 0.9rem;
    color: var(--aether-mint);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.footer-help a {
    color: var(--aether-gray);
    text-decoration: none;
    margin: 0 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-help a:hover {
    color: var(--aether-emerald);
}

.footer-legal {
    color: var(--aether-gray);
    font-size: 0.85rem;
}

/* Age Verify */
.age-verify {
    position: fixed;
    inset: 0;
    background: rgba(7, 18, 16, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.age-verify.gone {
    display: none;
}

.verify-box {
    background: var(--aether-deep);
    border: 2px solid var(--aether-emerald);
    border-radius: 18px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 0 70px rgba(16, 185, 129, 0.25);
}

.verify-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--aether-emerald);
    margin-bottom: 1rem;
}

.verify-box p {
    color: var(--aether-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.aether-btn {
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.aether-btn.solid {
    background: linear-gradient(135deg, var(--aether-emerald), var(--aether-jade));
    color: var(--aether-dark);
}

.aether-btn.solid:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.aether-btn.ghost {
    background: transparent;
    color: var(--aether-gray);
    border: 2px solid var(--aether-gray);
}

.aether-btn.ghost:hover {
    border-color: var(--aether-emerald);
    color: var(--aether-emerald);
}

/* Page Layout */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        var(--aether-dark);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--aether-emerald);
}

.page-body {
    max-width: 920px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--aether-jade);
    margin: 2.5rem 0 1rem;
}

.page-body p {
    color: var(--aether-gray);
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.page-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-body li {
    color: var(--aether-gray);
    margin-bottom: 0.7rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-pills {
        justify-content: center;
    }

    .gem-shape {
        width: 200px;
        height: 200px;
    }
}

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

    .aether-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--aether-deep);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s;
        border-left: 1px solid rgba(16, 185, 129, 0.2);
    }

    .aether-links.show {
        right: 0;
    }

    .aether-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    }

    .game-display {
        height: 400px;
    }

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

    .footer-help a {
        display: block;
        margin: 0.4rem 0;
    }
}

@media (max-width: 480px) {
    .aether-brand {
        font-size: 1.5rem;
    }

    .intro-text h1 {
        font-size: 2rem;
    }

    .gem-shape {
        width: 150px;
        height: 150px;
    }

    .game-display {
        height: 320px;
    }
}
