@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0014;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 25, 112, 0.05) 0%, transparent 100%);
    color: #e6e6fa;
    line-height: 1.6;
    min-height: 100vh;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
header {
    background: rgba(15, 0, 30, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(147, 112, 219, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ba55d3;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 20px rgba(186, 85, 211, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #d8bfd8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ba55d3, #9370db);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ba55d3;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger-menu div {
    width: 28px;
    height: 3px;
    background: #ba55d3;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #ba55d3;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(186, 85, 211, 0.7);
    letter-spacing: 3px;
}

h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #9370db;
    margin: 45px 0 25px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(147, 112, 219, 0.6);
    letter-spacing: 2px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ab82d3;
    margin: 30px 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
    font-weight: 400;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.4), rgba(138, 43, 226, 0.4));
    border: 2px solid rgba(186, 85, 211, 0.5);
    border-radius: 20px;
    padding: 70px 50px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.4);
}

.banner-section p {
    font-size: 1.3rem;
    color: #e6e6fa;
}

/* Warning Alert */
.warning-alert {
    background: rgba(139, 0, 139, 0.2);
    border: 3px solid #8b008b;
    border-radius: 15px;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
}

.warning-alert h2 {
    margin-top: 0;
    color: #da70d6;
}

.warning-alert p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dda0dd;
    margin: 12px 0;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.info-card {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.3), rgba(138, 43, 226, 0.2));
    border: 2px solid rgba(186, 85, 211, 0.4);
    border-radius: 18px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(186, 85, 211, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #ba55d3;
    box-shadow: 0 15px 40px rgba(186, 85, 211, 0.4);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h3 {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.info-card p {
    position: relative;
    z-index: 1;
}

/* Game Display */
.game-display {
    background: rgba(15, 0, 30, 0.6);
    border: 3px solid rgba(186, 85, 211, 0.5);
    border-radius: 20px;
    padding: 45px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
}

.game-display h2 {
    text-align: center;
}

.game-display iframe {
    width: 100%;
    max-width: 980px;
    height: 680px;
    border: 3px solid #9370db;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 10px 40px rgba(147, 112, 219, 0.5);
}

/* Text Content Block */
.text-block {
    background: rgba(75, 0, 130, 0.2);
    border: 1px solid rgba(186, 85, 211, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.text-block ul,
.text-block ol {
    margin-left: 35px;
    margin-bottom: 20px;
}

.text-block li {
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background: rgba(15, 0, 30, 0.9);
    border-top: 3px solid rgba(186, 85, 211, 0.5);
    padding: 45px 0;
    margin-top: 80px;
}

.footer-inner {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #9370db;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #ba55d3;
    text-shadow: 0 0 15px rgba(186, 85, 211, 0.7);
}

footer p {
    color: #9370db;
    font-size: 0.95rem;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.gate-content {
    background: linear-gradient(145deg, #1a0033, #0f001e);
    border: 4px solid #ba55d3;
    border-radius: 20px;
    padding: 55px 65px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(186, 85, 211, 0.6);
}

.gate-content h2 {
    margin-top: 0;
    color: #ba55d3;
    text-align: center;
}

.gate-content p {
    font-size: 1.15rem;
    margin: 18px 0;
}

.gate-buttons {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}

.gate-btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.btn-confirm {
    background: linear-gradient(135deg, #ba55d3, #9370db);
    color: #ffffff;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(186, 85, 211, 0.6);
}

.btn-deny {
    background: #333;
    color: #e6e6fa;
}

.btn-deny:hover {
    background: #444;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: rgba(15, 0, 30, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        border-left: 3px solid #ba55d3;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 12px 0;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .banner-section {
        padding: 50px 30px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .game-display iframe {
        height: 480px;
    }

    .gate-content {
        margin: 25px;
        padding: 40px 30px;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .site-logo {
        font-size: 1.6rem;
    }
}
