/* Aetheravos Social Casino - Futuristic Neon Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-cyan: #06b6d4;
    --dark-bg: #0a0118;
    --darker-bg: #050010;
    --light-text: #e9d5ff;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top, #1a0b2e 0%, #0a0118 50%, #050010 100%);
    color: var(--light-text);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(168, 85, 247, 0.03) 2px,
            rgba(168, 85, 247, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

header {
    background: rgba(10, 1, 24, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-purple);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
    transition: all 0.3s ease;
}

.brand:hover {
    text-shadow: 0 0 15px var(--neon-purple), 0 0 30px var(--neon-purple), 0 0 45px var(--neon-pink);
}

.brand::before {
    content: "▲";
    margin-right: 0.5rem;
    color: var(--neon-cyan);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

nav a:hover {
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}

.nav-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-trigger span {
    width: 28px;
    height: 2px;
    background: var(--neon-purple);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--neon-purple);
    transition: all 0.3s ease;
}

.nav-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-trigger.active span:nth-child(2) {
    opacity: 0;
}

.nav-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main {
    max-width: 1350px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.splash {
    text-align: center;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4), inset 0 0 30px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.splash::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(168, 85, 247, 0.1),
        transparent
    );
    animation: sweep 3s infinite;
}

@keyframes sweep {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px var(--neon-purple), 0 0 40px var(--neon-pink);
    position: relative;
    z-index: 1;
}

h2 {
    font-size: 2.2rem;
    color: var(--neon-purple);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-purple);
}

.splash-text {
    font-size: 1.4rem;
    color: var(--light-text);
    font-weight: 300;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: rgba(10, 1, 24, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 50px rgba(236, 72, 153, 0.4);
    border-color: var(--neon-pink);
}

.feature-item h3 {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    color: #c4b5fd;
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Rajdhani', sans-serif;
}

.game-zone {
    background: rgba(10, 1, 24, 0.6);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.game-embed {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto 0;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-block {
    background: rgba(10, 1, 24, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.info-block p {
    margin-bottom: 1rem;
    color: #c4b5fd;
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.info-block ul {
    list-style: none;
    margin: 1.5rem 0;
}

.info-block li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #c4b5fd;
    font-family: 'Rajdhani', sans-serif;
}

.info-block li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.warning-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--neon-pink);
    margin: 3rem 0;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.4);
}

.warning-box h3 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-box p {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
}

footer {
    background: rgba(5, 0, 16, 0.9);
    border-top: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    padding: 3rem 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.footer-wrap {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrap p {
    margin: 0.5rem 0;
    color: #c4b5fd;
    font-family: 'Rajdhani', sans-serif;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.footer-menu a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 0, 16, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.9), rgba(26, 11, 46, 0.9));
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.8), 0 0 100px rgba(236, 72, 153, 0.4);
    position: relative;
    z-index: 2;
}

.age-box h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.age-box p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-family: 'Rajdhani', sans-serif;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.action-btn {
    padding: 1.2rem 3rem;
    border: 2px solid;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn-yes {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: white;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.action-btn-yes:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8), 0 0 50px rgba(236, 72, 153, 0.6);
    transform: scale(1.05);
}

.action-btn-no {
    background: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}

.action-btn-no:hover {
    background: rgba(233, 213, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 1, 24, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--neon-purple);
        box-shadow: -5px 0 30px rgba(168, 85, 247, 0.5);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav a {
        display: block;
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .splash {
        padding: 4rem 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .age-box {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
