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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #2d2d44 0%, #1f1f35 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    border: 2px solid #6366f1;
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-gate-content p {
    color: #b0b0c0;
    margin-bottom: 15px;
    font-size: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-yes {
    background: #6366f1;
    color: #fff;
}

.age-yes:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.age-no {
    background: #dc2626;
    color: #fff;
}

.age-no:hover {
    background: #b91c1c;
}

/* Header */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #6366f1;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #b0b0c0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid #6366f1;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(45, 45, 68, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #b0b0c0;
    line-height: 1.8;
}

/* Important Notices */
.important-notices {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.important-notices h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-box {
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid;
}

.notice-red {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.notice-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.notice-purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

.notice-box h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.notice-box p {
    color: #d0d0d0;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    padding: 60px 0;
}

.game-section h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #b0b0c0;
    font-size: 18px;
    margin-bottom: 40px;
}

.game-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-info {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
}

.game-info p {
    color: #e0e0e0;
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-section h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    text-align: center;
}

.feature-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #6366f1;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #b0b0c0;
    line-height: 1.8;
}

/* Play Page */
.play-hero {
    padding: 60px 0 30px 0;
    text-align: center;
}

.play-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.play-hero p {
    font-size: 18px;
    color: #b0b0c0;
}

.game-play-section {
    padding: 40px 0 80px 0;
}

.game-container-full {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 40px;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.game-instructions {
    margin-bottom: 40px;
}

.game-instructions h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.instruction-item {
    background: rgba(45, 45, 68, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.instruction-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.instruction-item p {
    color: #d0d0d0;
    line-height: 1.6;
}

.play-notice {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 30px;
}

.play-notice h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.play-notice ul {
    list-style: none;
    padding: 0;
}

.play-notice li {
    color: #d0d0d0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.play-notice li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Legal Pages */
.page-header {
    padding: 60px 0 40px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.page-header h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    color: #b0b0c0;
    font-size: 16px;
}

.legal-content {
    padding: 60px 0 80px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(45, 45, 68, 0.4);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.legal-text h2 {
    color: #fff;
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #e0e0e0;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-text p {
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    color: #c0c0c0;
    margin-left: 25px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-notice,
.privacy-summary,
.disclaimer-summary {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.terms-notice h3,
.privacy-summary h3,
.disclaimer-summary h3 {
    color: #fff;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}

.disclaimer-alert {
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.disclaimer-alert h2 {
    margin-top: 0;
    color: #fff;
}

.disclaimer-footer-notice {
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.disclaimer-footer-notice p {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

/* Footer */
footer {
    background: rgba(15, 15, 25, 0.95);
    padding: 60px 0 30px 0;
    border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #b0b0c0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer-bottom p {
    color: #808090;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 0;
        border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 300px;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .legal-text {
        padding: 30px 20px;
    }

    .legal-text h2 {
        font-size: 26px;
    }

    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-gate-content h2 {
        font-size: 24px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }

    .logo-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .info-cards,
    .notice-grid,
    .features-grid,
    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 350px;
    }

    .game-frame-full {
        height: 400px;
    }
}