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

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

:root {
    --neon-green: #00FF88;
    --neon-purple: #B968E8;
    --neon-blue: #00D9FF;
    --dark-bg: #0A0E27;
    --darker-bg: #050816;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1f3a 100%);
    color: #E0E0E0;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(185, 104, 232, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.page-content {
    position: relative;
    z-index: 1;
}

header {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 50px rgba(185, 104, 232, 0.8); }
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.primary-nav a {
    color: #E0E0E0;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.primary-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(185, 104, 232, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.primary-nav a:hover::before {
    opacity: 1;
}

.primary-nav a:hover {
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.hamburger {
    display: none;
    background: transparent;
    border: 2px solid var(--neon-green);
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--neon-green);
    margin: 5px 0;
    transition: all 0.3s;
}

main {
    padding: 4rem 0;
}

.hero-banner {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-text {
    font-size: 1.3rem;
    color: #B0B0B0;
    font-weight: 300;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 255, 136, 0.2);
}

.card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    font-size: 2.5rem;
}

.alert-panel {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.alert-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.alert-panel h3 {
    color: var(--neon-green);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.alert-panel ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.alert-panel li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.alert-panel li::before {
    content: "►";
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

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

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--neon-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-showcase {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.game-container {
    background: #000;
    border: 3px solid var(--neon-green);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.4), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

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

footer {
    background: rgba(10, 14, 39, 0.9);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-wrapper {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 2px solid var(--neon-green);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.5);
    position: relative;
}

.modal-content::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-purple), var(--neon-blue));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.modal-content h2 {
    color: var(--neon-green);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin: 1rem 0;
    color: #E0E0E0;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.neon-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-btn-accept {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.neon-btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
}

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

.neon-btn-decline:hover {
    background: rgba(185, 104, 232, 0.2);
    box-shadow: 0 0 30px rgba(185, 104, 232, 0.5);
}

@media (max-width: 968px) {
    .hamburger {
        display: block;
    }
    
    .primary-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        transition: left 0.3s;
        border-top: 1px solid var(--neon-green);
    }
    
    .primary-nav.active {
        left: 0;
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .primary-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}
