@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700;900&family=Saira+Condensed:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-orange: #ff6600;
    --bright-orange: #ff8800;
    --yellow: #ffaa00;
    --deep-orange: #cc5200;
    --dark-bg: #1a0f00;
    --darker-bg: #0f0800;
    --light-text: #fff5e6;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: radial-gradient(ellipse at top, #1a0f00 0%, #0f0800 100%);
    color: var(--light-text);
    line-height: 1.75;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 170, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(26, 15, 0, 0.95) 0%, rgba(15, 8, 0, 0.98) 100%);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--flame-orange);
    box-shadow: 0 4px 30px rgba(255, 102, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--flame-orange) 50%, var(--deep-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.6));
}

nav {
    display: flex;
    gap: 2.2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--flame-orange));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--yellow);
    filter: drop-shadow(0 0 8px rgba(255, 170, 0, 0.8));
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--flame-orange);
    color: var(--flame-orange);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 102, 0, 0.1);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    position: relative;
}

.hero h1 {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 5.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--flame-orange) 50%, var(--deep-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.5));
    animation: flameGlow 3s ease-in-out infinite;
}

@keyframes flameGlow {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 35px rgba(255, 170, 0, 0.8)); }
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--deep-orange) 100%);
    color: white;
    padding: 1.3rem 4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.7);
}

/* Content Sections */
.content-section {
    padding: 4.5rem 0;
}

.section-title {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--flame-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.flame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.flame-card {
    background: linear-gradient(145deg, rgba(26, 15, 0, 0.8) 0%, rgba(15, 8, 0, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.flame-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--flame-orange), var(--yellow), var(--deep-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.flame-card:hover::before {
    opacity: 1;
}

.flame-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.flame-card h3 {
    color: var(--flame-orange);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-family: 'Saira Condensed', sans-serif;
    text-transform: uppercase;
}

.notice-flame {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(204, 82, 0, 0.15) 100%);
    border: 3px solid var(--flame-orange);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.2);
}

.notice-flame h3 {
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-family: 'Saira Condensed', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.notice-flame ul {
    list-style: none;
    padding-left: 0;
}

.notice-flame li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.notice-flame li::before {
    content: '🔥';
    position: absolute;
    left: 0;
}

/* Game Container */
.game-container {
    background: rgba(26, 15, 0, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 3px solid var(--flame-orange);
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(15, 8, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    padding: 3.5rem 0 1.5rem;
    margin-top: 5rem;
    border-top: 4px solid var(--flame-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: var(--flame-orange);
    margin-bottom: 1.2rem;
    font-family: 'Saira Condensed', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.footer-section a {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 102, 0, 0.3);
    opacity: 0.8;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a0f00 0%, #0f0800 100%);
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--flame-orange);
    box-shadow: 0 0 60px rgba(255, 102, 0, 0.6);
}

.age-modal-content h2 {
    font-family: 'Saira Condensed', sans-serif;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--flame-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-yes {
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--deep-orange) 100%);
    color: white;
    border: 2px solid var(--flame-orange);
}

.btn-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(255, 102, 0, 0.6);
}

.btn-no {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 8, 0, 0.98);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 0;
        display: none;
        border-bottom: 4px solid var(--flame-orange);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 2rem;
    }

    .flame-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 400px;
    }

    .age-modal-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Legal Content Styling */
.legal-content {
    background: linear-gradient(145deg, rgba(26, 15, 0, 0.7) 0%, rgba(15, 8, 0, 0.8) 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid rgba(255, 102, 0, 0.4);
}

.legal-content h2 {
    color: var(--flame-orange);
    margin-bottom: 1.5rem;
    font-family: 'Saira Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
}

.legal-content h3 {
    color: var(--yellow);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Saira Condensed', sans-serif;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: var(--flame-orange);
    text-decoration: none;
    border-bottom: 1px solid var(--flame-orange);
}

.legal-content a:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}