* {
    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 */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px 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: 1rem 20px;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #667eea;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
main {
    background: white;
    margin: 2rem auto;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-section h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-section p {
    margin-bottom: 1rem;
    color: #555;
}

/* Notices */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.notice-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Game Section */
.game-section {
    margin: 3rem 0;
}

.game-section h3 {
    color: #764ba2;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-description {
    color: #666;
    margin-bottom: 2rem;
}

.game-container {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.game-container iframe {
    width: 100%;
    height: 100%;
}

/* Info Widgets */
.info-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.widget h4 {
    color: #764ba2;
    margin-bottom: 1rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.widget li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Play Page */
.play-page h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.play-info {
    margin-bottom: 2rem;
}

.game-instructions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.game-instructions h3 {
    color: #764ba2;
    margin-bottom: 1rem;
}

.game-instructions ul {
    list-style: none;
}

.game-instructions li {
    padding: 0.5rem 0;
    color: #555;
}

.play-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    border-radius: 10px;
    text-align: center;
}

/* Legal Pages */
.legal-page h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h3 {
    color: #764ba2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #555;
    margin-bottom: 1rem;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
}

.modal-content h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin-bottom: 1rem;
    color: #555;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-yes,
.btn-no {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-no {
    background: #e74c3c;
    color: white;
}

.btn-yes:hover,
.btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    text-align: center;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #764ba2;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: white;
        transition: right 0.3s;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    nav li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .game-container {
        height: 400px;
    }

    .notices {
        grid-template-columns: 1fr;
    }

    .info-widgets {
        grid-template-columns: 1fr;
    }
}
