* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Age Verification */
.age-check {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 100000;
    backdrop-filter: blur(15px);
}

.age-check.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-check-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid #FF4500;
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(255, 69, 0, 0.4);
    animation: flameIn 0.6s ease-out;
}

@keyframes flameIn {
    0% {
        transform: scale(0.8) rotateX(90deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateX(0deg);
        opacity: 1;
    }
}

.flame-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-check-content h2 {
    color: #FF4500;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.age-main {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.age-detail {
    font-size: 1.4rem;
    color: #FF8C00;
    margin-bottom: 20px;
    font-weight: 500;
}

.highlight {
    color: #FF4500;
    font-weight: 700;
}

.age-info {
    font-size: 1.05rem;
    color: #bbb;
    font-style: italic;
    margin-bottom: 30px;
}

.age-buttons-row {
    display: flex;
    gap: 20px;
}

.btn-confirm, .btn-reject {
    flex: 1;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    color: #fff;
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #FF5722 0%, #FFA726 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.5);
}

.btn-reject {
    background: #333;
    color: #fff;
}

.btn-reject:hover {
    background: #444;
}

/* Navigation */
.navbar {
    background: #1a1a1a;
    border-bottom: 3px solid #FF4500;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #FF4500;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #FF4500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF4500;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2D1B00 100%);
    padding: 120px 30px;
    text-align: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #FF4500;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.7);
}

.hero-lead {
    font-size: 1.6rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255, 69, 0, 0.2);
    border: 2px solid #FF4500;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #FF8C00;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2D1B00 0%, #1a1a1a 100%);
    padding: 80px 30px;
    text-align: center;
    border-bottom: 3px solid #FF4500;
}

.page-header h1 {
    font-size: 3rem;
    color: #FF4500;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

/* Main Wrapper */
.main-wrapper {
    background: #0a0a0a;
}

/* Content Sections */
.content-section {
    padding: 90px 30px;
}

.content-section.dark {
    background: #1a1a1a;
}

.content-section.light {
    background: #0a0a0a;
}

.content-section.cta {
    background: linear-gradient(135deg, #2D1B00 0%, #1a1a1a 100%);
    text-align: center;
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #FF4500;
}

.section-subtext {
    text-align: center;
    font-size: 1.25rem;
    color: #bbb;
    margin-bottom: 40px;
}

.text-columns {
    column-count: 2;
    column-gap: 40px;
}

.text-columns p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Info Blocks */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-block {
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-8px);
}

.info-block.red {
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);
}

.info-block.orange {
    background: linear-gradient(135deg, #E65100 0%, #FF6F00 100%);
}

.info-block.dark {
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
}

.block-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.info-block h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Game Display */
.game-display {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
    border: 3px solid #FF4500;
}

.game-display.wide {
    max-width: 100%;
}

.game-embed {
    width: 100%;
    height: 100%;
}

.game-notice {
    background: rgba(255, 140, 0, 0.15);
    border: 2px solid #FF8C00;
    padding: 25px;
    border-radius: 15px;
    margin-top: 35px;
    text-align: center;
}

.game-notice p {
    font-size: 1.15rem;
    color: #FF8C00;
}

.play-warning {
    background: rgba(183, 28, 28, 0.2);
    border: 3px solid #D32F2F;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.play-warning h3 {
    color: #FF5252;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.play-warning p {
    color: #FFB74D;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Benefits Layout */
.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #FF4500;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.3);
}

.benefit-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #FF8C00;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: #bbb;
    line-height: 1.7;
}

/* Info Tiles */
.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-tile {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    transition: border-color 0.3s ease;
}

.info-tile:hover {
    border-color: #FF4500;
}

.tile-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-tile h3 {
    color: #FF8C00;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-tile p {
    color: #bbb;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #FF5722 0%, #FFA726 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

/* Legal Container */
.legal-container {
    background: #0a0a0a;
    padding: 80px 30px;
    min-height: 100vh;
}

.legal-container h1 {
    font-size: 3rem;
    color: #FF4500;
    margin-bottom: 15px;
}

.doc-date {
    color: #888;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

.legal-content h2 {
    color: #FF8C00;
    font-size: 1.9rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.9;
}

.legal-content ul {
    color: #bbb;
    margin: 20px 0 20px 40px;
    line-height: 1.9;
}

.disclaimer-box {
    background: rgba(183, 28, 28, 0.2);
    border: 4px solid #D32F2F;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: center;
}

.disclaimer-box h3 {
    color: #FF5252;
    font-size: 2rem;
    margin-bottom: 20px;
}

.disclaimer-box p {
    color: #FFB74D;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    border-top: 3px solid #FF4500;
    padding: 70px 30px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FF4500;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF4500;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FF4500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #333;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .text-columns {
        column-count: 1;
    }
    
    .game-display {
        aspect-ratio: 3/4;
    }
    
    .age-buttons-row {
        flex-direction: column;
    }
}
