* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #2d1b4e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1d3a 0%, #2d1b4e 100%);
    border: 2px solid #00d9ff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.age-gate-logo {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #b0b0b0;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.age-gate-buttons button {
    flex: 1;
    min-width: 150px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-yes {
    background: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
    color: #0a0e27;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

.age-no {
    background: #2d1b4e;
    color: #e0e0e0;
    border: 2px solid #555;
}

.age-no:hover {
    background: #1a1d3a;
    border-color: #777;
}

header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #00d9ff;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.logo-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8));
}

.logo-text {
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

nav a:hover, nav a.active {
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #00d9ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(45, 27, 78, 0.3) 100%);
    border-radius: 30px;
    margin-bottom: 60px;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d9ff 0%, #b19eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(0, 217, 255, 0.15);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(0, 217, 255, 0.3);
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
    color: #0a0e27;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.info-section {
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(26, 29, 58, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00d9ff;
    font-weight: 700;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

.game-section {
    margin-bottom: 60px;
    text-align: center;
}

.game-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #00d9ff;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.game-container {
    background: rgba(26, 29, 58, 0.6);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    margin-bottom: 20px;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.game-info {
    font-size: 16px;
    color: #b0b0b0;
}

.important-notices {
    margin-bottom: 60px;
}

.important-notices h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #00d9ff;
    font-weight: 700;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-box {
    background: rgba(45, 27, 78, 0.6);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(177, 158, 255, 0.3);
}

.notice-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #b19eff;
    font-weight: 700;
}

.notice-box p {
    color: #b0b0b0;
    line-height: 1.8;
}

.extra-content {
    margin-bottom: 60px;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.column h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.column p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.play-header {
    text-align: center;
    margin-bottom: 50px;
}

.play-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00d9ff;
    font-weight: 700;
}

.play-header p {
    font-size: 20px;
    color: #b0b0b0;
}

.game-play-section {
    margin-bottom: 50px;
}

.game-container-full {
    background: rgba(26, 29, 58, 0.6);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.play-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.info-box-play {
    background: rgba(26, 29, 58, 0.6);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.info-box-play h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.info-box-play p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #00d9ff;
    font-weight: 700;
}

.legal-updated {
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.legal-content p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-content a {
    color: #00d9ff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid rgba(0, 217, 255, 0.2);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00d9ff;
    font-weight: 700;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d9ff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    color: #888;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    }

    nav.active {
        max-height: 400px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .content-columns {
        grid-template-columns: 1fr;
    }

    .play-info {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .game-frame-full {
        height: 500px;
    }

    .age-gate-content {
        padding: 40px 25px;
    }

    .age-gate-logo {
        font-size: 60px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-buttons button {
        width: 100%;
    }
}