* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #8b1538;
    --burgundy-dark: #5c0a1f;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --cream: #faf7f2;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
    --light-gray: #e5e5e5;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    display: flex;
    min-height: 100vh;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    padding: 50px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    border: 3px solid var(--gold);
    color: white;
}

.age-icon {
    font-size: 70px;
    margin-bottom: 20px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--gold);
}

.age-modal-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.small-text {
    font-size: 14px !important;
    font-style: italic;
    opacity: 0.8;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 3px solid var(--gold);
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background: rgba(212, 175, 55, 0.15);
    border-left-color: var(--gold);
    color: white;
}

.nav-icon {
    font-size: 24px;
}

.nav-text {
    font-size: 16px;
    font-weight: 500;
}

.sidebar-footer {
    padding: 30px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.footer-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
}

.footer-subtext {
    font-size: 13px;
    opacity: 0.7;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
    overflow-y: auto;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 30px;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold);
}

.hero-description {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(212, 175, 55, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--gold);
    font-size: 15px;
}

/* Content Sections */
.content-section {
    padding: 80px 30px;
    background: white;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--burgundy);
}

.section-heading.centered {
    text-align: center;
}

.intro-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray);
}

/* Highlights Section */
.highlights-section {
    padding: 80px 30px;
    background: var(--cream);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);
    border-color: var(--gold);
}

.highlight-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.highlight-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--burgundy);
}

/* Legal Notice Section */
.legal-notice-section {
    padding: 60px 30px;
    background: #fff9f0;
}

.notice-card {
    background: white;
    border-left: 5px solid var(--gold);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.notice-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--burgundy);
    margin-bottom: 25px;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notice-item {
    padding: 20px;
    background: var(--cream);
    border-radius: 5px;
    border-left: 3px solid var(--burgundy);
}

.notice-item strong {
    color: var(--burgundy);
}

/* Game Showcase */
.game-showcase {
    padding: 80px 30px;
    background: white;
}

.game-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.game-embed {
    max-width: 950px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(139, 21, 56, 0.2);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: var(--gray);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 30px;
    background: var(--cream);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.advantage-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.advantage-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--burgundy);
}

/* Site Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
    max-width: 1100px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-page {
    background: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 50px;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.legal-block h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: var(--burgundy-dark);
}

.legal-block ul {
    margin-left: 25px;
    margin-top: 15px;
}

.legal-block li {
    margin-bottom: 10px;
}

.legal-block a {
    color: var(--burgundy);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

.warning-block {
    background: #fff9f0;
    border: 3px solid var(--gold);
    padding: 30px;
    border-radius: 8px;
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
}

/* Play Page */
.play-page .play-header {
    background: var(--cream);
    padding: 60px 30px;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.game-display {
    background: #000;
    padding: 0;
}

.game-container-full {
    max-width: 1400px;
    margin: 0 auto;
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-details {
    padding: 80px 30px;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.detail-box p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 3px solid var(--gold);
    }

    .sidebar-header {
        padding: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .sidebar-nav {
        display: none;
        padding: 20px 0;
    }

    .sidebar-nav.active {
        display: block;
    }

    .sidebar-footer {
        display: none;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-full {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        gap: 20px;
    }

    .advantage-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .age-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .game-iframe {
        height: 400px;
    }

    .game-iframe-full {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .game-iframe {
        height: 350px;
    }

    .game-iframe-full {
        height: 400px;
    }
}
