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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    background: #0a0a0a;
    color: #e0e0e0;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

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

.age-gate-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 20px;
    text-align: center;
    border: 2px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.age-gate-disclaimer {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid #d4af37;
}

.age-gate-disclaimer p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
    color: #d4af37;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.age-gate-actions button {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s;
    min-width: 150px;
}

.btn-accept {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.btn-decline {
    background: #333;
    color: #fff;
}

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

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

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-right: 1px solid #d4af37;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
}

.brand-icon {
    font-size: 2rem;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.sidebar-nav {
    padding: 2rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

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

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

.nav-icon {
    font-size: 1.3rem;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    background: #0d0d0d;
}

.sidebar-footer p {
    font-size: 0.9rem;
    color: #888;
    margin: 0.3rem 0;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.top-bar {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.top-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    display: none;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.hero-lead {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid #d4af37;
    color: #d4af37;
}

.intro-section {
    padding: 4rem 2rem;
}

.intro-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.intro-text {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: center;
}

.key-features {
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.5);
}

.key-features h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
}

.featured-game {
    padding: 4rem 2rem;
}

.featured-game h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
}

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

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.about-social-casino {
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.5);
}

.two-column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.column h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.column p {
    font-size: 1.05rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.responsibility-notice {
    padding: 4rem 2rem;
}

.notice-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    max-width: 1000px;
    margin: 0 auto;
}

.notice-box h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.notice-box p {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.8;
}

.site-footer {
    background: #0d0d0d;
    border-top: 2px solid #d4af37;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

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

.footer-col h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

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

.footer-base {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #aaa;
}

.gameplay-section {
    padding: 4rem 2rem;
}

.gameplay-info {
    margin-bottom: 3rem;
}

.gameplay-info h2 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gameplay-info p {
    font-size: 1.05rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tips-container {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 2rem;
}

.tips-container h3 {
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-number {
    background: #d4af37;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-item p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
}

.play-reminder {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    margin-top: 3rem;
}

.play-reminder h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.play-reminder p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.legal-document {
    padding: 4rem 2rem;
}

.legal-document h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.document-date {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-text p {
    font-size: 1.05rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-close {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .menu-toggle,
    .top-brand {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-lead {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .age-gate-box {
        padding: 2rem;
    }
    
    .age-gate-actions {
        flex-direction: column;
    }
    
    .age-gate-actions button {
        width: 100%;
    }
}
