* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --primary-gold: #f59e0b;
    --primary-orange: #ea580c;
    --dark-bg: #0f0a0a;
    --dark-card: #1a0f0f;
    --warm-glow: rgba(245, 158, 11, 0.3);
    --text-light: #fef3c7;
    --text-gold: #fbbf24;
    --text-white: #ffffff;
    --border-gold: #d97706;
}

body {
    font-family: 'Noto Serif', serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000 0%, #0a0000 50%, #1a0a00 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, #2d1818 0%, #1a0f0f 100%);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    box-shadow: 0 0 60px var(--warm-glow), inset 0 0 40px rgba(0, 0, 0, 0.5);
    padding: 40px;
    text-align: center;
}

.lantern-decoration {
    position: absolute;
    width: 40px;
    height: 50px;
    background: radial-gradient(circle, #f59e0b 0%, #dc2626 100%);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 0 30px var(--primary-gold);
    animation: sway 3s ease-in-out infinite;
}

.lantern-left {
    top: -25px;
    left: 20px;
}

.lantern-right {
    top: -25px;
    right: 20px;
    animation-delay: 1.5s;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.age-gate-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-gold));
}

.age-gate-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--text-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--warm-glow);
}

.age-gate-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.age-gate-subtext {
    font-size: 14px;
    color: rgba(254, 243, 199, 0.7);
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.age-btn {
    flex: 1;
    padding: 14px 24px;
    font-family: 'Noto Serif', serif;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--dark-bg);
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--warm-glow);
}

.age-btn-no {
    background: transparent;
    color: var(--text-light);
}

.age-btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

.age-gate-disclaimer {
    font-size: 12px;
    color: rgba(254, 243, 199, 0.5);
    line-height: 1.4;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(26, 15, 15, 0.95) 0%, rgba(15, 10, 10, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    padding: 0;
}

.navbar-ornament {
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
    top: 0;
    box-shadow: 0 0 10px var(--primary-gold);
}

.navbar-ornament-left {
    left: 0;
}

.navbar-ornament-right {
    right: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 8px var(--primary-gold));
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: 0 0 10px var(--warm-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2d1818 0%, var(--dark-bg) 70%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-lanterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-lantern {
    position: absolute;
    width: 30px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-gold) 0%, var(--primary-red) 100%);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 0 40px var(--primary-gold);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(3deg);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-badge {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--primary-orange));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-fire {
    color: var(--primary-red);
    text-shadow: 0 0 30px var(--primary-red);
    letter-spacing: 8px;
}

.hero-title-fighter {
    color: var(--text-gold);
    text-shadow: 0 0 30px var(--primary-gold);
    letter-spacing: 8px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--dark-bg);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--border-gold);
    border-radius: 50px;
    box-shadow: 0 0 30px var(--warm-glow);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--warm-glow);
}

.info-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.title-ornament {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 100%);
}

.title-ornament-right {
    background: linear-gradient(90deg, var(--primary-gold) 0%, transparent 100%);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: var(--text-gold);
    text-align: center;
    text-shadow: 0 0 20px var(--warm-glow);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    position: relative;
    background: linear-gradient(135deg, #2d1818 0%, #1a0f0f 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--warm-glow);
}

.card-lantern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--primary-gold) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-gold);
}

.info-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--text-gold);
    margin-bottom: 15px;
    text-align: center;
}

.info-card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--text-gold);
    font-size: 14px;
    margin-bottom: 30px;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.features-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.features-badge {
    text-align: center;
    color: var(--text-gold);
    font-size: 14px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(45, 24, 24, 0.5) 0%, rgba(26, 15, 15, 0.5) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--warm-glow);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-gold));
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.gameplay-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.gameplay-badge {
    text-align: center;
    color: var(--text-gold);
    font-size: 14px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gameplay-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.gameplay-text {
    background: linear-gradient(135deg, #2d1818 0%, #1a0f0f 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.game-wrapper {
    background: linear-gradient(135deg, #2d1818 0%, #1a0f0f 100%);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px var(--warm-glow);
}

.game-status-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-gold);
}

.game-status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.game-status-text {
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
}

.game-name {
    font-size: 14px;
    color: var(--text-light);
    margin-left: auto;
}

.game-frame {
    width: 100%;
    height: 600px;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.about-us-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.about-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 40px var(--warm-glow);
    display: flex;
    justify-content: center;
}

.image-wrapper img {
    width: 60%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, rgba(245, 158, 11, 0.1) 100%);
    pointer-events: none;
}

.about-us-block {
    margin-bottom: 40px;
}

.about-us-heading {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.about-us-paragraph {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.footer {
    position: relative;
    background: linear-gradient(180deg, var(--dark-card) 0%, #0a0000 100%);
    padding: 60px 20px 40px;
    border-top: 2px solid var(--border-gold);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-gold) 0px,
        var(--primary-gold) 20px,
        transparent 20px,
        transparent 40px
    );
    box-shadow: 0 0 10px var(--primary-gold);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(217, 119, 6, 0.3);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px var(--primary-gold));
}

.footer-brand-text {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: 0 0 10px var(--warm-glow);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-gold);
}

.footer-middle {
    margin-bottom: 40px;
}

.footer-text {
    font-size: 14px;
    color: rgba(254, 243, 199, 0.7);
    line-height: 1.8;
    max-width: 900px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(254, 243, 199, 0.5);
}

.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-badge {
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badge:hover {
    opacity: 1;
}

.footer-badge img {
    height: 40px;
    width: auto;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(circle, var(--warm-glow) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 15, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .game-frame {
        height: 400px;
    }
}
    
.content {
    padding: 40px 10%;
   
}
.content-block {}

.content-block h2 {
    color: #dc540b;
    font-size: 2rem;
}

.content-block p,
ul {
    color: rgb(185, 135, 49);
    font-size: 1.2rem;
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}