* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-primary: #ff4500;
    --flame-secondary: #ff6b35;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-glow: rgba(255, 69, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a00 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--dark-card);
    border-bottom: 2px solid var(--flame-primary);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--flame-primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flame-primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--flame-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--flame-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--flame-primary), var(--flame-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--flame-primary), var(--flame-secondary));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.5);
}

.hero-flame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Info Section */
.info-section {
    padding: 80px 20px;
}

.info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--flame-primary);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.info-card.highlight {
    border-left-color: var(--flame-secondary);
    background: linear-gradient(135deg, var(--dark-card), rgba(255, 69, 0, 0.05));
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--flame-primary);
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-border);
}

.info-list li:last-child {
    border-bottom: none;
}

/* Game Section */
.game-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--flame-primary);
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

/* Features */
.features {
    padding: 80px 20px;
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--dark-border);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--flame-primary);
}

.feature-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--flame-secondary);
    margin-bottom: 15px;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 60px 20px;
    background: var(--dark-card);
    border-top: 2px solid var(--flame-primary);
    border-bottom: 2px solid var(--flame-primary);
    text-align: center;
}

.responsible-gaming h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}

/* Play Page */
.play-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 107, 53, 0.05));
}

.play-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: var(--flame-primary);
    margin-bottom: 15px;
}

.page-intro {
    font-size: 18px;
    color: var(--text-secondary);
}

.game-play-section {
    padding: 60px 20px;
}

.game-info-box {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--flame-primary);
}

.game-info-box h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--flame-primary);
    margin-bottom: 20px;
}

.game-wrapper {
    background: var(--dark-card);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.play-reminder {
    text-align: center;
    padding: 25px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--flame-primary);
}

/* Legal Pages */
.legal-section {
    padding: 60px 20px;
    min-height: calc(100vh - 400px);
}

.legal-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: var(--flame-primary);
    margin-bottom: 10px;
}

.legal-intro {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--flame-secondary);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.disclaimer-highlights .disclaimer-box {
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    border-left: 5px solid var(--flame-primary);
}

.disclaimer-box.warning {
    background: rgba(255, 165, 0, 0.1);
    border-left-color: #ffa500;
}

.disclaimer-box.critical {
    background: rgba(255, 69, 0, 0.1);
    border-left-color: var(--flame-primary);
}

.disclaimer-box.entertainment {
    background: rgba(0, 200, 255, 0.05);
    border-left-color: #00c8ff;
}

.disclaimer-box.summary {
    background: rgba(0, 255, 0, 0.05);
    border-left-color: #00ff00;
}

/* Footer */
footer {
    background: var(--dark-card);
    border-top: 3px solid var(--flame-primary);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--flame-primary);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--flame-primary);
}

.footer-disclaimer {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 8px;
}

.responsible-links {
    margin: 30px 0;
    padding: 25px;
    background: var(--dark-bg);
    border-radius: 8px;
}

.responsible-links p {
    margin-bottom: 15px;
    font-weight: 600;
}

.responsible-links a {
    display: inline-block;
    margin: 0 15px;
    color: var(--flame-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.responsible-links a:hover {
    color: var(--flame-primary);
}

.copyright {
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--flame-primary);
    box-shadow: 0 10px 50px rgba(255, 69, 0, 0.5);
}

.age-gate-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--flame-primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-gate-buttons button {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-accept {
    background: linear-gradient(135deg, var(--flame-primary), var(--flame-secondary));
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.5);
}

.btn-reject {
    background: #555;
    color: white;
}

.btn-reject:hover {
    background: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-card);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s;
        border-top: 2px solid var(--flame-primary);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .age-gate-content {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .age-gate-buttons button {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .responsible-links a {
        display: block;
        margin: 10px 0;
    }
}
