* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #2c0e1a 0%, #601020 50%, #2c0e1a 100%);
    color: #f4e8d8;
    line-height: 1.7;
    min-height: 100vh;
}

/* Age Check */
.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.95) 0%, rgba(44, 14, 26, 0.98) 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.visible {
    display: flex;
}

.age-check-panel {
    background: linear-gradient(135deg, #8b1538 0%, #601020 100%);
    max-width: 550px;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    border: 3px solid #d4af37;
}

.age-check-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-check-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.age-check-primary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.age-check-secondary {
    font-size: 1rem;
    color: #f4d4a1;
    margin-bottom: 2rem;
}

.age-check-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn-confirm, .age-btn-reject {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
}

.age-btn-confirm {
    background: #ffd700;
    color: #601020;
}

.age-btn-confirm:hover {
    background: #ffed4e;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
}

.age-btn-reject {
    background: #4a4a4a;
    color: #fff;
}

.age-btn-reject:hover {
    background: #666;
}

/* Header */
.primary-header {
    background: linear-gradient(135deg, #8b1538 0%, #601020 100%);
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 2px;
}

.primary-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #f4d4a1;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Grand Hero */
.grand-hero {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.7) 0%, rgba(96, 16, 32, 0.7) 100%);
    border-bottom: 3px solid #d4af37;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-inner h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-motto {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #f4d4a1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #f4e8d8;
    margin-bottom: 2.5rem;
}

.hero-action {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #d4af37;
    color: #2c0e1a;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.hero-action:hover {
    background: #ffd700;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

/* Content Wrap */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrap-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Introduction */
.introduction {
    padding: 6rem 2rem;
}

.introduction h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2.5rem;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #e8d4b8;
}

/* Critical Info */
.critical-info {
    padding: 6rem 2rem;
    background: rgba(212, 175, 55, 0.05);
}

.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-tile {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.tile-gold {
    border-color: #ffd700;
}

.tile-silver {
    border-color: #c0c0c0;
}

.tile-bronze {
    border-color: #cd7f32;
}

.info-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.tile-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-tile h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.info-tile p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Featured Game */
.featured-game {
    padding: 6rem 2rem;
}

.featured-game h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
}

.game-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #c9a777;
    margin-bottom: 3rem;
}

.game-showcase {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 4px solid #d4af37;
    margin-bottom: 2rem;
}

.game-window {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-advisory {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.game-advisory p {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Advantages */
.advantages {
    padding: 6rem 2rem;
    background: rgba(139, 21, 56, 0.1);
}

.advantages h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.advantage-label {
    display: inline-block;
    background: #8b1538;
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsible Play */
.responsible-play {
    padding: 5rem 2rem;
}

.responsible-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsible-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 2rem;
}

.responsible-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e8d4b8;
}

/* Play Pages */
.play-introduction {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(139, 21, 56, 0.3);
    border-bottom: 3px solid #d4af37;
}

.play-introduction h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
}

.play-description {
    font-size: 1.3rem;
    color: #f4d4a1;
    max-width: 800px;
    margin: 0 auto;
}

.gaming-guide {
    padding: 4rem 2rem;
}

.guide-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #d4af37;
}

.guide-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.guide-points {
    list-style: none;
    padding: 0;
}

.guide-points li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.gaming-area {
    padding: 2rem 2rem 5rem;
}

.game-display {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 4px solid #d4af37;
}

.game-window-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-advisory {
    padding: 4rem 2rem;
}

.advisory-panel {
    background: rgba(255, 215, 0, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #ffd700;
    text-align: center;
}

.advisory-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.advisory-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Content */
.legal-content {
    padding: 5rem 2rem;
    min-height: 70vh;
}

.legal-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.legal-timestamp {
    font-size: 0.95rem;
    color: #9a8160;
    margin-bottom: 3rem;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.terms-section p, .terms-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.critical-notice {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #d4af37;
}

/* Footer */
.primary-footer {
    background: linear-gradient(135deg, #8b1538 0%, #601020 100%);
    border-top: 3px solid #d4af37;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #f4d4a1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-menu a:hover {
    color: #ffd700;
}

.footer-about {
    color: #f4d4a1;
    line-height: 1.6;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
    color: #c9a777;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .primary-nav {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, #8b1538 0%, #601020 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 3px solid #d4af37;
    }

    .primary-nav.open {
        left: 0;
    }

    .nav-link {
        display: block;
        margin: 0.8rem 0;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .hero-inner h1 {
        font-size: 2.8rem;
    }

    .hero-motto {
        font-size: 1.4rem;
    }

    .hero-intro {
        font-size: 1.05rem;
    }

    .introduction h2, .featured-game h2, .advantages h2 {
        font-size: 2.3rem;
    }

    .info-tiles {
        grid-template-columns: 1fr;
    }

    .game-window {
        height: 450px;
    }

    .game-window-full {
        height: 500px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .play-introduction h1 {
        font-size: 2.5rem;
    }

    .legal-content h1 {
        font-size: 2.3rem;
    }

    .age-check-panel {
        margin: 1rem;
        padding: 2rem;
    }

    .age-check-panel h2 {
        font-size: 2rem;
    }

    .age-check-buttons {
        flex-direction: column;
    }

    .age-btn-confirm, .age-btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .grand-hero {
        padding: 5rem 1rem;
    }

    .hero-inner h1 {
        font-size: 2.2rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .header-inner {
        padding: 1rem;
    }
}
