* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

/* 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;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-modal-content h2 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.age-modal-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.age-yes {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.age-no {
    background: #e0e0e0;
    color: #666;
}

.age-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #667eea;
    margin: 5px 0;
    transition: 0.3s;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #667eea;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #FF6B9D;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
}

/* Notices Section */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background: white;
}

.notice-card {
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.notice-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Featured Game Section */
.featured-game {
    padding: 4rem 2rem;
    background: white;
}

.featured-game h2 {
    text-align: center;
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
    line-height: 1.6;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
}

.game-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #f5f7fa;
    border-radius: 10px;
    text-align: center;
}

.game-note p {
    color: #666;
    line-height: 1.6;
}

/* Features Grid */
.features {
    padding: 4rem 2rem;
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsible Gaming Section */
.responsible {
    padding: 4rem 2rem;
    background: white;
    max-width: 900px;
    margin: 0 auto;
}

.responsible h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.responsible p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Play Section */
.play-section {
    padding: 4rem 2rem;
    background: white;
    min-height: calc(100vh - 80px);
}

.play-section h1 {
    text-align: center;
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.play-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.game-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 15px;
}

.game-info h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.game-info ul {
    list-style-position: inside;
    color: #666;
    line-height: 2;
    margin-bottom: 1rem;
}

.browser-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    color: #666;
    font-size: 0.95rem;
}

.play-disclaimer {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
}

.play-disclaimer h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.play-disclaimer p {
    color: #856404;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem;
    background: white;
    max-width: 900px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.legal-content h1 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #667eea;
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #666;
    line-height: 1.8;
}

.disclaimer-highlight {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.disclaimer-highlight h2 {
    color: #856404;
    margin-top: 0;
}

.disclaimer-highlight p {
    color: #856404;
}

.disclaimer-footer-note {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.disclaimer-footer-note p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #FF6B9D;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .age-modal-content {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .game-frame {
        height: 400px;
    }

    .features-grid,
    .notices {
        grid-template-columns: 1fr;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }
}
