* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0f0f23;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #e5e7eb;
    line-height: 1.65;
    min-height: 100vh;
}

.top-bar {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #6366f1;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-graphic {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.site-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.nav-trigger {
    display: none;
    background: transparent;
    border: 2px solid #6366f1;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-trigger:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #8b5cf6;
}

.trigger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-trigger.activated .trigger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.nav-trigger.activated .trigger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-trigger.activated .trigger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 10px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #a5b4fc;
}

.main-nav a:hover::before {
    width: 100%;
}

.hero-section {
    padding: 5rem 30px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.3rem;
    color: #9ca3af;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.alert-card {
    background: rgba(30, 27, 75, 0.6);
    border: 2px solid #6366f1;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.alert-card h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a5b4fc;
    margin-bottom: 2rem;
    text-align: center;
}

.alert-card ul {
    list-style: none;
}

.alert-card li {
    padding: 1.2rem;
    margin: 1rem 0;
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #6366f1;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.alert-card li:hover {
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #8b5cf6;
    transform: translateX(5px);
}

.gaming-area {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 30px;
}

.game-box {
    background: rgba(30, 27, 75, 0.5);
    border: 2px solid #6366f1;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.game-box h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #a5b4fc;
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-viewer {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 12px;
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 30px;
}

.info-panel {
    background: rgba(30, 27, 75, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.info-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.info-panel:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    background: rgba(30, 27, 75, 0.6);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.info-panel:hover::after {
    transform: scaleX(1);
}

.info-panel h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #a5b4fc;
    margin-bottom: 1.2rem;
}

.info-panel p {
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 30px;
}

.page-content h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #a5b4fc;
    margin-bottom: 3rem;
    text-align: center;
}

.page-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #a5b4fc;
    margin: 3rem 0 1.5rem;
}

.page-content p {
    color: #9ca3af;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.site-footer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 4rem 30px;
    margin-top: 6rem;
    border-top: 2px solid #6366f1;
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-message {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-nav a {
    color: #a5b4fc;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-nav a:hover {
    color: #c7d2fe;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
}

.footer-legal {
    margin-top: 2.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.gate-content {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    border: 3px solid #6366f1;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
}

.gate-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #a5b4fc;
    margin-bottom: 2rem;
}

.gate-content p {
    color: #9ca3af;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.gate-btn {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gate-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gate-btn.confirm {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
}

.gate-btn.reject {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-trigger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: rgba(30, 27, 75, 0.98);
        transition: left 0.3s;
        padding: 3rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.4rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 1.15rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .game-viewer {
        height: 500px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gate-content {
        padding: 3rem;
        max-width: 90%;
    }

    .gate-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}
