* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #e4e4e7;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #6366f1;
}

.age-gate-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e4e4e7;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #6366f1;
    color: white;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: #64748b;
    color: white;
}

.btn-secondary:hover {
    background: #475569;
}

/* Header */
header {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #6366f1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    color: #fbbf24;
    cursor: pointer;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e4e4e7;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #6366f1;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fbbf24;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3) 0%, rgba(109, 40, 217, 0.3) 100%);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e4e4e7;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #6366f1;
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
    background: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: rgba(17, 24, 39, 0.5);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    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 40px rgba(99, 102, 241, 0.3);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.info-card p {
    color: #d1d5db;
    line-height: 1.7;
}

/* Game Section */
.game-section {
    padding: 80px 0;
}

.game-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #d1d5db;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #6366f1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-notice {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
}

.game-notice p {
    color: #fbbf24;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(17, 24, 39, 0.5);
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #fbbf24;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: rgba(88, 28, 135, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #e4e4e7;
}

.feature-item p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Disclaimer Brief */
.disclaimer-brief {
    padding: 60px 0;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.disclaimer-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #fbbf24;
}

.disclaimer-box ul {
    list-style: none;
    margin-bottom: 20px;
}

.disclaimer-box ul li {
    padding: 12px 0;
    color: #e4e4e7;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-box ul li:last-child {
    border-bottom: none;
}

.disclaimer-box p {
    color: #d1d5db;
}

.disclaimer-box a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer-box a:hover {
    text-decoration: underline;
}

/* Play Page */
.play-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.play-hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.play-hero .lead {
    font-size: 1.2rem;
    color: #d1d5db;
}

.game-play-section {
    padding: 40px 0 80px;
}

.play-info {
    max-width: 1200px;
    margin: 40px auto 0;
    background: rgba(88, 28, 135, 0.2);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.play-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.play-info ul {
    list-style: none;
}

.play-info ul li {
    padding: 12px 0;
    color: #e4e4e7;
    font-size: 1.05rem;
}

.play-reminder {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 25px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
}

.play-reminder p {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* Content Pages */
.content-page {
    padding: 80px 0;
    min-height: 70vh;
}

.content-page h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #fbbf24;
    text-align: center;
}

.content-body {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.6);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.content-body h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #6366f1;
}

.content-body h4 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #818cf8;
}

.content-body p {
    margin-bottom: 20px;
    color: #d1d5db;
    line-height: 1.8;
}

.content-body ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #d1d5db;
}

.content-body ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-body a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.content-body a:hover {
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    color: #9ca3af;
    margin-bottom: 30px;
}

.disclaimer-highlight {
    background: rgba(251, 191, 36, 0.1);
    padding: 30px;
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
    margin: 30px 0;
}

.disclaimer-highlight h3 {
    color: #fbbf24;
}

/* Footer */
footer {
    background: rgba(17, 24, 39, 0.9);
    padding: 60px 0 30px;
    border-top: 2px solid #6366f1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    color: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(30, 27, 75, 0.98);
        flex-direction: column;
        padding: 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #6366f1;
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 15px 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .game-frame {
        height: 500px;
    }

    .content-body {
        padding: 30px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .game-frame {
        height: 400px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}