/* Cinderholt - Blazing Fire Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-red: #ff4500;
    --deep-orange: #ff6b35;
    --amber: #ffa500;
    --dark-red: #8b0000;
    --charcoal: #1c1c1c;
    --dark-gray: #2d2d2d;
    --light-gray: #f0f0f0;
    --white: #ffffff;
    --text-light: #e0e0e0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(180deg, #1c1c1c 0%, #2d2d2d 50%, #1c1c1c 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, var(--dark-red), var(--charcoal));
    border: 4px solid var(--flame-red);
    border-radius: 20px;
    padding: 50px 45px;
    max-width: 600px;
    width: 92%;
    text-align: center;
    box-shadow: 0 0 70px rgba(255, 69, 0, 0.6);
}

.flame-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.age-gate-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    color: var(--amber);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.age-confirm {
    font-size: 20px;
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 30px;
    font-weight: 700;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-accept,
.btn-decline {
    padding: 16px 40px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accept {
    background: linear-gradient(135deg, var(--flame-red), var(--deep-orange));
    color: var(--white);
}

.btn-accept:hover {
    background: linear-gradient(135deg, var(--deep-orange), var(--amber));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
}

.btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--dark-gray);
}

.btn-decline:hover {
    background: var(--dark-gray);
}

/* Header */
.top-header {
    background: rgba(28, 28, 28, 0.95);
    border-bottom: 3px solid var(--flame-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    color: var(--amber);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 14px;
    color: var(--deep-orange);
    font-weight: 600;
}

.hamburger {
    display: none;
    background: var(--flame-red);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.top-nav {
    display: flex;
    gap: 25px;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, var(--flame-red), var(--deep-orange));
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-red), var(--charcoal));
    border-bottom: 3px solid var(--flame-red);
    padding: 70px 40px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 48px;
    color: var(--amber);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero p {
    font-size: 19px;
    line-height: 1.8;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Highlight Boxes */
.highlight-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-box {
    padding: 40px;
    border-radius: 15px;
    border: 3px solid;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-box.flame {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(139, 0, 0, 0.2));
    border-color: var(--flame-red);
}

.highlight-box.ember {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 107, 53, 0.2));
    border-color: var(--amber);
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.box-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.highlight-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 26px;
    color: var(--amber);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.highlight-box p {
    line-height: 1.7;
}

/* Alert Section */
.alert-section {
    background: rgba(139, 0, 0, 0.3);
    border: 3px solid var(--flame-red);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.alert-section h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 30px;
    color: var(--amber);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.alert-content {
    display: grid;
    gap: 20px;
}

.alert-row {
    background: rgba(45, 45, 45, 0.5);
    padding: 22px;
    border-radius: 10px;
    border-left: 5px solid var(--flame-red);
    line-height: 1.8;
}

.alert-row strong {
    color: var(--amber);
}

/* Game Zone */
.game-zone {
    margin-bottom: 60px;
    text-align: center;
}

.game-zone h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 40px;
    color: var(--amber);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.game-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border: 4px solid var(--flame-red);
    border-radius: 15px;
    overflow: hidden;
}

.game-player {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

/* Perks Grid */
.perks-grid h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 38px;
    color: var(--amber);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.perks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.perk {
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid var(--dark-gray);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
}

.perk:hover {
    border-color: var(--flame-red);
    transform: translateY(-3px);
}

.perk h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 22px;
    color: var(--amber);
    margin-bottom: 15px;
}

.perk p {
    line-height: 1.7;
}

/* Closing Message */
.closing-message {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(139, 0, 0, 0.2));
    border: 3px solid var(--flame-red);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.closing-message h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 28px;
    color: var(--amber);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.closing-message p {
    font-size: 18px;
    line-height: 1.8;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, var(--dark-red), var(--charcoal));
    border-bottom: 3px solid var(--flame-red);
    padding: 50px 40px;
    text-align: center;
}

.play-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 44px;
    color: var(--amber);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.play-header p {
    font-size: 19px;
}

.play-guide {
    margin-bottom: 50px;
}

.guide-box {
    background: rgba(139, 0, 0, 0.3);
    border: 3px solid var(--flame-red);
    border-radius: 12px;
    padding: 35px;
}

.guide-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 28px;
    color: var(--amber);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.guide-box p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.play-area {
    display: flex;
    justify-content: center;
}

.play-frame-container {
    width: 100%;
    max-width: 1200px;
    background: #000;
    border: 4px solid var(--flame-red);
    border-radius: 15px;
    overflow: hidden;
}

.play-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

/* Legal Pages */
.page-title {
    background: linear-gradient(135deg, var(--dark-red), var(--charcoal));
    border-bottom: 3px solid var(--flame-red);
    padding: 50px 40px;
    text-align: center;
}

.page-title h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 42px;
    color: var(--amber);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.date-stamp {
    font-size: 17px;
    color: var(--deep-orange);
}

.legal-main {
    max-width: 1000px;
}

.legal-section {
    background: rgba(45, 45, 45, 0.4);
    border: 3px solid var(--dark-gray);
    border-radius: 15px;
    padding: 50px;
}

.legal-section h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 26px;
    color: var(--amber);
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-section p {
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 35px;
}

.legal-section li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.warning-panel {
    background: rgba(255, 69, 0, 0.15);
    border: 4px solid var(--flame-red);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

.warning-panel h3 {
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: rgba(28, 28, 28, 0.95);
    border-top: 3px solid var(--flame-red);
    padding: 50px 40px 25px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 20px;
    color: var(--amber);
    margin-bottom: 12px;
}

.footer-info p {
    color: var(--text-light);
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid var(--dark-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.footer-nav a:hover {
    background: linear-gradient(135deg, var(--flame-red), var(--deep-orange));
    border-color: var(--flame-red);
}

.footer-bar {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid var(--dark-gray);
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        background: rgba(28, 28, 28, 0.98);
        width: 280px;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 30px 20px;
        transition: right 0.3s ease;
        border-left: 3px solid var(--flame-red);
        gap: 15px;
    }

    .top-nav.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 50px 25px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .main-container {
        padding: 40px 25px;
    }

    .highlight-boxes {
        grid-template-columns: 1fr;
    }

    .game-player {
        height: 450px;
    }

    .play-frame {
        height: 550px;
    }

    .perks-container {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding: 35px 25px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .age-gate-content {
        padding: 35px 25px;
    }

    .age-gate-content h2 {
        font-size: 28px;
    }

    .age-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
    }

    .game-player {
        height: 350px;
    }

    .play-frame {
        height: 450px;
    }

    .footer-nav {
        flex-direction: column;
        width: 100%;
    }

    .footer-nav a {
        width: 100%;
        text-align: center;
    }
}
