* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #0a0e1a;
    color: #c5d9e8;
    min-height: 100vh;
    line-height: 1.7;
}

.site-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

header {
    background: linear-gradient(90deg, #003d5c 0%, #00bcd4 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 100%;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.logo-symbol {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00e5ff, #00bcd4);
    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: 26px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.5);
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 4px;
    border: 2px solid transparent;
}

.main-nav ul li a:hover {
    border-color: #00e5ff;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background: #00e5ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.banner-section {
    background: linear-gradient(135deg, rgba(0, 61, 92, 0.8), rgba(0, 188, 212, 0.3));
    padding: 100px 30px;
    text-align: center;
    border-bottom: 4px solid #00bcd4;
}

.banner-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 229, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.banner-section p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 80px 30px;
    flex-wrap: wrap;
}

.info-box {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 5px solid #00bcd4;
    border-right: 5px solid #00bcd4;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    border-left-color: #00e5ff;
    border-right-color: #00e5ff;
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.4);
}

.info-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 18px;
    color: #00e5ff;
    text-transform: uppercase;
    font-weight: 700;
}

.info-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #a8c5da;
}

.gaming-zone {
    margin: 80px 30px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-zone h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: #00e5ff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

.game-wrapper {
    background: #0d1b2a;
    padding: 40px;
    border-radius: 16px;
    border: 3px solid #00bcd4;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.3);
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.text-content {
    margin: 80px auto;
    padding: 40px 30px;
    max-width: 1300px;
}

.text-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 35px;
    color: #00e5ff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.text-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    margin: 35px 0 18px;
    color: #00bcd4;
    font-weight: 700;
}

.text-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #b5cfe0;
}

.text-content ul {
    margin: 25px 0;
    padding-left: 35px;
}

.text-content ul li {
    margin: 12px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #b5cfe0;
}

footer {
    background: linear-gradient(90deg, #003d5c 0%, #00bcd4 100%);
    padding: 60px 30px 35px;
    margin-top: 100px;
    border-top: 4px solid #00e5ff;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.resource-links a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-links a:hover {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.footer-notice {
    color: #c5d9e8;
    font-size: 15px;
    line-height: 1.8;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.gate-content {
    background: linear-gradient(135deg, #0d1b2a, #003d5c);
    padding: 55px 45px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #00bcd4;
    box-shadow: 0 0 60px rgba(0, 188, 212, 0.7);
}

.gate-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    margin-bottom: 28px;
    color: #00e5ff;
    text-transform: uppercase;
    font-weight: 800;
}

.gate-content p {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #c5d9e8;
}

.gate-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.gate-btn {
    padding: 18px 50px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gate-btn.confirm {
    background: linear-gradient(135deg, #00bcd4, #00e5ff);
    color: #0a0e1a;
}

.gate-btn.confirm:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.6);
}

.gate-btn.decline {
    background: transparent;
    color: #fff;
    border: 3px solid #00bcd4;
}

.gate-btn.decline:hover {
    background: rgba(0, 188, 212, 0.2);
    border-color: #00e5ff;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(180deg, #003d5c, #0a0e1a);
        transition: right 0.3s ease;
        padding: 100px 25px 25px;
        border-left: 3px solid #00bcd4;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid rgba(0, 188, 212, 0.3);
    }

    .main-nav ul li a {
        display: block;
        padding: 20px 18px;
        font-size: 17px;
    }

    .banner-section h1 {
        font-size: 42px;
    }

    .banner-section p {
        font-size: 18px;
    }

    .info-grid {
        flex-direction: column;
        align-items: center;
    }

    .game-embed {
        height: 550px;
    }

    .text-content h2 {
        font-size: 36px;
    }

    .gate-content {
        margin: 25px;
        padding: 40px 28px;
    }

    .gate-content h2 {
        font-size: 30px;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }
}
