* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.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;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    color: white;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.4);
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-yes {
    background: white;
    color: #c41e3a;
}

.btn-yes:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #c41e3a 0%, #8b1429 100%);
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 3rem;
    background: #f5f5f5;
}

.hero-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    padding: 4rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c41e3a;
}

.game-showcase {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.game-showcase h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #c41e3a;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.game-container {
    width: 100%;
    height: 600px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #c41e3a;
}

.play-header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.play-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-instructions {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.instruction-box h3 {
    font-family: 'Playfair Display', serif;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.instruction-box ul {
    list-style-position: inside;
    line-height: 2;
}

.game-play-area {
    margin-bottom: 3rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b1429;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
}

.footer-notice {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    border-left: 4px solid #c41e3a;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.footer-links a {
    display: inline-block;
    color: #c41e3a;
    text-decoration: none;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4560;
}

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        margin-top: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding: 1.5rem;
    }

    .hero-section {
        padding: 2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .game-container {
        height: 400px;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .site-footer {
        padding: 2rem;
    }
}
