* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    border-right: 2px solid #d4af37;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.logo-container {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid #d4af37;
    margin-bottom: 2rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #d4af37;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.nav-link {
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: translateX(5px);
}

.nav-link.active {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-left: 3px solid #d4af37;
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: #d4af37;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #d4af37;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: #c0c0c0;
    font-style: italic;
}

.hero-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #d4af37;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.important-notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.notice-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid;
    display: flex;
    gap: 1.5rem;
}

.notice-primary {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(26, 26, 46, 0.6) 100%);
}

.notice-secondary {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(26, 26, 46, 0.6) 100%);
}

.notice-tertiary {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.6) 100%);
}

.notice-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.notice-content h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.notice-content p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.game-showcase {
    margin-bottom: 3rem;
}

.game-showcase h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    background: #000;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #d4af37;
    margin-bottom: 2rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.game-info p {
    color: #d4af37;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-card p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.responsible-gaming {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #d4af37;
}

.responsible-gaming h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
}

.responsible-gaming > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tip {
    background: rgba(26, 26, 46, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    color: #c0c0c0;
    font-size: 1rem;
}

.play-section {
    margin-bottom: 3rem;
}

.play-instructions {
    margin-bottom: 2rem;
}

.play-instructions h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.instruction-item {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.instruction-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.instruction-item p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.game-container-play {
    background: #000;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #d4af37;
    margin-bottom: 2rem;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.play-notice {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.play-notice p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #c0c0c0;
    line-height: 1.6;
}

.terms-acknowledgment,
.privacy-summary,
.disclaimer-acknowledgment {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.disclaimer-highlight {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-highlight h2 {
    color: #ff6b6b !important;
}

.site-footer {
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
    border-top: 2px solid #d4af37;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-text {
    color: #c0c0c0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.age-gate {
    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: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.age-gate-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #c0c0c0;
    border: 2px solid #c0c0c0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .important-notices {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-content h2 {
        font-size: 1.5rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .gaming-tips {
        grid-template-columns: 1fr;
    }

    .instruction-grid {
        grid-template-columns: 1fr;
    }
}
