* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4A90E2;
}

.menu-toggle {
    display: none;
    background: #4A90E2;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

nav a:hover {
    color: #4A90E2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Info Cards */
.info-cards {
    padding: 4rem 0;
}

.info-cards .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Game Section */
.game-section {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.game-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #666;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-container iframe {
    width: 100%;
    min-height: 600px;
    border-radius: 10px;
}

.game-info {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-info p {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item h4 {
    color: #4A90E2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Notices Section */
.notices {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.notices h2 {
    text-align: center;
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.notice-box {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid;
}

.notice-box.warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.notice-box.info {
    background: #d1ecf1;
    border-color: #0dcaf0;
}

.notice-box.age {
    background: #f8d7da;
    border-color: #dc3545;
}

.notice-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Community Section */
.community {
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.community h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.community > .container > p {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 3rem;
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-links a,
.footer-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-nav a:hover {
    color: #4A90E2;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* 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: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.age-gate-content h2 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-gate-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.age-gate-buttons button:first-child {
    background: #4A90E2;
    color: white;
}

.age-gate-buttons button.decline {
    background: #dc3545;
    color: white;
}

.age-gate-buttons button:hover {
    transform: scale(1.05);
}

/* Play Page */
.play-page {
    background: white;
    min-height: 100vh;
    padding: 3rem 0;
}

.play-page h1 {
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.game-play-section {
    margin-top: 2rem;
}

.game-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.play-instructions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.play-instructions h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
}

.play-instructions ul {
    list-style: none;
    padding-left: 0;
}

.play-instructions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.play-instructions li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #4A90E2;
}

.play-reminders h3 {
    color: #4A90E2;
    margin-bottom: 1.5rem;
}

.reminder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.reminder-card {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    text-align: center;
}

.reminder-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.reminder-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    background: white;
    min-height: 100vh;
    padding: 3rem 0;
}

.legal-page h1 {
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #4A90E2;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.disclaimer-highlight {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
    margin-bottom: 3rem;
}

.disclaimer-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #4A90E2;
    text-align: center;
}

.disclaimer-box h4 {
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .info-cards .container {
        grid-template-columns: 1fr;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .game-container iframe {
        min-height: 400px;
    }
}
