* {
    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;
}

/* Age Verification Modal */
.age-modal {
    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-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-modal-content h2 {
    color: #4f46e5;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-modal-content p {
    margin-bottom: 15px;
    color: #666;
}

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

.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-decline {
    background: #e0e0e0;
    color: #666;
}

.btn-decline:hover {
    background: #d0d0d0;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #4f46e5;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4f46e5;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

nav a:hover,
nav a.active {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
}

/* Hero Section */
.hero {
    background: white;
    padding: 60px 0;
    margin: 30px 20px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 48px;
    color: #4f46e5;
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    color: #4f46e5;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* Notices Section */
.notices {
    padding: 40px 0;
}

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

.notice-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.notice-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #4f46e5;
}

.notice-item p {
    color: #666;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    background: white;
    padding: 60px 0;
    margin: 30px 20px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-section h2 {
    text-align: center;
    color: #4f46e5;
    font-size: 36px;
    margin-bottom: 20px;
}

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

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 15px;
}

.game-info p {
    margin-bottom: 10px;
    color: #555;
}

/* Info Section */
.info-section {
    padding: 60px 0;
}

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

.info-col {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-col h3 {
    color: #4f46e5;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-col p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsible Gaming */
.responsible-gaming {
    background: white;
    padding: 40px 0;
    margin: 30px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.responsible-gaming h2 {
    color: #4f46e5;
    margin-bottom: 20px;
}

.responsible-gaming p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 0 20px;
    margin-top: 40px;
}

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

.footer-section h4 {
    color: #4f46e5;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section li {
    color: #666;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #4f46e5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

/* Content Pages */
.content-page {
    background: white;
    margin: 30px 20px;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-page h1 {
    color: #4f46e5;
    font-size: 42px;
    margin-bottom: 10px;
}

.last-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.content-page h2 {
    color: #4f46e5;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.content-page h3 {
    color: #764ba2;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-page p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-page ul li {
    color: #666;
    margin-bottom: 8px;
}

.terms-highlight,
.privacy-highlight,
.disclaimer-summary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border-left: 4px solid #4f46e5;
}

.disclaimer-alert {
    background: #fff3cd;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff9800;
    margin-bottom: 30px;
}

.disclaimer-footer-note {
    background: #4f46e5;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

/* Play Page Specific */
.play-hero {
    background: white;
    padding: 40px 0;
    margin: 30px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.play-hero h1 {
    color: #4f46e5;
    font-size: 42px;
    margin-bottom: 15px;
}

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

.game-details {
    margin-top: 40px;
}

.game-details h2 {
    text-align: center;
    color: #4f46e5;
    margin-bottom: 30px;
}

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

.detail-card {
    background: rgba(79, 70, 229, 0.05);
    padding: 25px;
    border-radius: 15px;
}

.detail-card h3 {
    color: #4f46e5;
    margin-bottom: 10px;
    font-size: 18px;
}

.detail-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.play-reminder {
    padding: 40px 0;
}

.reminder-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reminder-box h2 {
    color: #4f46e5;
    margin-bottom: 20px;
}

.reminder-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 15px;
        font-size: 18px;
    }

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

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

    .game-container iframe {
        height: 400px;
    }

    .content-page {
        padding: 40px 20px;
    }

    .content-page h1 {
        font-size: 32px;
    }

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

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

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

    .game-section h2 {
        font-size: 28px;
    }

    .game-container iframe {
        height: 300px;
    }
}
