* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
}

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

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

.age-verification-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #047857;
    margin-bottom: 1.5rem;
}

.age-verification-modal p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-verify-yes, .btn-verify-no {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-verify-yes {
    background: #047857;
    color: white;
}

.btn-verify-yes:hover {
    background: #065f46;
    transform: translateY(-2px);
}

.btn-verify-no {
    background: #dc2626;
    color: white;
}

.btn-verify-no:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #047857 0%, #065f46 100%);
    color: white;
    padding: 2rem 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
}

.logo svg {
    width: 100%;
    height: auto;
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 0;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-nav a {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.3s;
    border-left: 4px solid transparent;
    font-size: 1.05rem;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #34d399;
}

.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #34d399;
    font-weight: 600;
}

/* Main Container */
.main-container {
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.top-bar {
    display: none;
    background: #047857;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-logo {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Content */
.content {
    flex: 1;
    padding: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #047857;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    font-style: italic;
}

/* Notice Cards */
.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.notice-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Playfair Display', serif;
    color: #047857;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* About Section */
.about-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    color: #047857;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Game Section */
.game-section {
    margin-bottom: 3rem;
}

.game-section h2 {
    font-family: 'Playfair Display', serif;
    color: #047857;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-section > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.game-container {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-info {
    background: #ecfdf5;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #047857;
}

.game-info p {
    margin-bottom: 0.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-box h3 {
    color: #047857;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* Responsible Gaming */
.responsible-gaming {
    background: #fef3c7;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    margin-bottom: 3rem;
}

.responsible-gaming h2 {
    font-family: 'Playfair Display', serif;
    color: #92400e;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #047857;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    color: #047857;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #047857;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
}

.disclaimer-highlight {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    margin-bottom: 2rem;
}

.disclaimer-highlight h2 {
    color: #dc2626;
    margin-top: 0;
}

/* Play Info */
.play-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    color: #047857;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Play Reminders */
.play-reminders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reminder-card {
    background: #ecfdf5;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #047857;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #047857 0%, #065f46 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-close {
        display: block;
    }
    
    .main-container {
        margin-left: 0;
    }
    
    .top-bar {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
}
