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

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #f9f7f4, #ede8e0);
    color: #2c2416;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2c2416 0%, #1a1510 100%);
    color: #f9f7f4;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.sidebar-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.logo-icon {
    margin-bottom: 15px;
}

.site-title {
    font-size: 28px;
    color: #d4af37;
    letter-spacing: 2px;
}

.sidebar-nav {
    padding: 30px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    color: #f9f7f4;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #d4af37;
    color: #d4af37;
}

.nav-icon {
    font-size: 24px;
}

.nav-text {
    font-size: 16px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #2c2416;
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 5px 0;
    transition: all 0.3s;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 60px 40px;
}

.welcome-banner {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(201, 162, 39, 0.05));
    border-radius: 20px;
    margin-bottom: 60px;
}

.welcome-banner h1 {
    font-size: 48px;
    color: #2c2416;
    margin-bottom: 15px;
}

.tagline {
    font-size: 22px;
    font-style: italic;
    color: #d4af37;
}

.intro-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.key-notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.notice-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gold-border {
    border-top: 4px solid #d4af37;
}

.notice-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.notice-box h3 {
    font-size: 22px;
    color: #2c2416;
    margin-bottom: 12px;
}

.notice-box p {
    color: #5a5244;
    line-height: 1.6;
}

.featured-game, .about-social-casino, .why-choose {
    margin-bottom: 80px;
}

.featured-game h2, .about-social-casino h2, .why-choose h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c2416;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #5a5244;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #d4af37;
}

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

.about-content {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.feature-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 12px;
}

.feature-card p {
    color: #5a5244;
    line-height: 1.6;
}

.site-footer {
    background: #2c2416;
    color: #f9f7f4;
    padding: 60px 40px 30px;
    margin-top: 80px;
    border-top: 4px solid #d4af37;
}

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

.footer-col h4 {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 15px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

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

.footer-col a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 14px;
    opacity: 0.8;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, #f9f7f4, #ede8e0);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #d4af37;
}

.age-gate-icon {
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-size: 32px;
    color: #2c2416;
    margin-bottom: 20px;
}

.age-gate-box p {
    color: #5a5244;
    line-height: 1.7;
    margin-bottom: 15px;
}

.age-disclaimer {
    font-size: 14px;
    font-style: italic;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 15px 35px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #d4af37;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: #d4af37;
    color: #2c2416;
}

.btn-confirm:hover {
    background: #c9a227;
    transform: scale(1.05);
}

.btn-deny {
    background: transparent;
    color: #2c2416;
}

.btn-deny:hover {
    background: #2c2416;
    color: #f9f7f4;
    transform: scale(1.05);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 44px;
    color: #2c2416;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #5a5244;
}

.game-instructions {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d4af37;
}

.game-instructions h3 {
    font-size: 24px;
    color: #2c2416;
    margin-bottom: 20px;
}

.instructions-grid {
    display: grid;
    gap: 15px;
}

.instruction-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.instruction-item strong {
    color: #d4af37;
}

.play-game {
    margin-bottom: 40px;
}

.play-notice {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #d4af37;
    text-align: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c2416;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #5a5244;
    font-style: italic;
    margin-bottom: 50px;
}

.legal-section {
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d4af37;
}

.legal-section h2 {
    font-size: 26px;
    color: #2c2416;
    margin-bottom: 15px;
}

.legal-section p, .legal-section ul {
    color: #5a5244;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 10px;
}

.emphasis {
    border-left-color: #c9a227;
    border-left-width: 6px;
    background: rgba(212, 175, 55, 0.05);
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding: 100px 30px 40px;
    }
    
    .welcome-banner h1 {
        font-size: 36px;
    }
    
    .game-embed {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .key-notices {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .age-gate-box {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .btn-confirm, .btn-deny {
        width: 100%;
    }
    
    .main-content {
        padding: 100px 20px 30px;
    }
    
    .game-embed {
        height: 350px;
    }
}
