* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-orange: #ff6b35;
    --ember-red: #d32f2f;
    --ash-gold: #ffa500;
    --charcoal: #2a2a2a;
    --dark-charcoal: #1a1a1a;
    --light-ash: #f5f5f5;
    --smoke-gray: #9e9e9e;
    --glow-yellow: #ffeb3b;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--charcoal) 50%, #3e2723 100%);
    color: var(--light-ash);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Age Verification Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--charcoal), #3e2723);
    padding: 3rem;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--flame-orange);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.flame-icon {
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-size: 2.5rem;
    color: var(--ash-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 1.1rem;
    color: var(--smoke-gray);
    margin-bottom: 1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-gate-buttons button {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.confirm-btn {
    background: linear-gradient(135deg, var(--flame-orange), var(--ember-red));
    color: white;
}

.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.deny-btn {
    background: #424242;
    color: var(--smoke-gray);
}

.deny-btn:hover {
    background: #616161;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(90deg, var(--dark-charcoal), var(--charcoal));
    padding: 1rem 0;
    border-bottom: 3px solid var(--flame-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--flame-orange), var(--ash-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    background: var(--flame-orange);
    border: none;
    padding: 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--smoke-gray);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--ash-gold);
    background: rgba(255, 107, 53, 0.1);
}

.nav-menu a.nav-active {
    color: var(--flame-orange);
    background: rgba(255, 107, 53, 0.2);
}

/* Main Wrapper */
.main-wrapper {
    padding-top: 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(211, 47, 47, 0.2)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%232a2a2a" width="1200" height="300"/></svg>');
    background-size: cover;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin: 2rem;
    border: 2px solid var(--flame-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--flame-orange), var(--glow-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--smoke-gray);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--flame-orange), var(--ember-red));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Page Heading */
.page-heading {
    text-align: center;
    margin: 3rem 0;
}

.page-heading h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--flame-orange), var(--ash-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-subheading {
    font-size: 1.3rem;
    color: var(--smoke-gray);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--ash-gold);
    font-weight: 700;
}

/* Key Notices */
.key-notices {
    padding: 4rem 0;
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-item {
    background: linear-gradient(135deg, var(--charcoal), #3e2723);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--flame-orange);
    text-align: center;
    transition: all 0.3s ease;
}

.notice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.notice-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.notice-item h3 {
    font-size: 1.8rem;
    color: var(--ash-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-item p {
    color: var(--smoke-gray);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* About Platform */
.about-platform {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--flame-orange);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--smoke-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: var(--charcoal);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--ember-red);
}

.feature-box h4 {
    font-size: 1.3rem;
    color: var(--ash-gold);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--smoke-gray);
    margin: 0;
}

/* Featured Game */
.featured-game {
    padding: 4rem 0;
}

.game-subtitle {
    text-align: center;
    color: var(--smoke-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.game-embed {
    background: var(--dark-charcoal);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--flame-orange);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 2rem 0;
}

.game-embed iframe {
    width: 100%;
    height: 650px;
    border-radius: 10px;
}

.game-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--ash-gold);
    color: var(--smoke-gray);
}

.tip-item strong {
    color: var(--ash-gold);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.05);
    margin: 2rem 0;
    border-radius: 20px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--flame-orange);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ember-red);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: var(--ash-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--smoke-gray);
    line-height: 1.7;
}

/* Responsibility Message */
.responsibility-msg {
    padding: 4rem 0;
}

.responsibility-box {
    background: linear-gradient(135deg, var(--charcoal), #3e2723);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--ash-gold);
    text-align: center;
}

.responsibility-box h2 {
    font-size: 2.3rem;
    color: var(--ash-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.responsibility-box p {
    color: var(--smoke-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Play Page Specific */
.game-instructions {
    margin: 3rem 0;
}

.game-instructions h2 {
    font-size: 2.3rem;
    color: var(--flame-orange);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instruction-box {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--flame-orange);
    text-align: center;
}

.instruction-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.instruction-box h3 {
    font-size: 1.5rem;
    color: var(--ash-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.instruction-box p {
    color: var(--smoke-gray);
    margin: 0;
}

.play-game-section {
    margin: 4rem 0;
}

.play-game-section h2 {
    font-size: 2.5rem;
    color: var(--flame-orange);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.game-description {
    text-align: center;
    color: var(--smoke-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.play-info-section {
    margin: 4rem 0;
}

.play-info-section h2 {
    font-size: 2.3rem;
    color: var(--ash-gold);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-box {
    background: linear-gradient(135deg, var(--charcoal), #3e2723);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--ember-red);
}

.info-box h3 {
    font-size: 1.4rem;
    color: var(--ash-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    color: var(--smoke-gray);
    margin: 0;
}

.play-reminder {
    margin: 4rem 0;
}

.reminder-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--flame-orange);
    text-align: center;
}

.reminder-box h3 {
    font-size: 1.8rem;
    color: var(--ash-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.reminder-box p {
    color: var(--smoke-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1rem 0;
}

/* Legal Document */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: var(--charcoal);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--flame-orange);
}

.legal-block h2 {
    font-size: 2rem;
    color: var(--ash-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-block h3 {
    font-size: 1.5rem;
    color: var(--flame-orange);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-block p {
    color: var(--smoke-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-block ul {
    color: var(--smoke-gray);
    margin: 1rem 0 1.5rem 2rem;
}

.legal-block li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.warning-block {
    border: 2px solid var(--ember-red);
    background: linear-gradient(135deg, var(--charcoal), #3e2723);
}

.warning-block h2 {
    color: var(--flame-orange);
}

.help-resources {
    margin-top: 2rem;
}

.resource-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    border-left: 3px solid var(--ash-gold);
}

.resource-item h4 {
    color: var(--ash-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.resource-item a {
    color: var(--flame-orange);
    text-decoration: none;
}

.resource-item a:hover {
    text-decoration: underline;
}

.final-warning {
    background: rgba(211, 47, 47, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--ember-red);
    text-align: center;
    margin: 2rem 0;
}

/* Footer */
.site-footer {
    background: var(--dark-charcoal);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 3px solid var(--flame-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--ash-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--smoke-gray);
    margin-bottom: 1rem;
}

.support-links,
.footer-nav {
    list-style: none;
}

.support-links li,
.footer-nav li {
    margin: 0.7rem 0;
}

.support-links a,
.footer-nav a {
    color: var(--smoke-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.support-links a:hover,
.footer-nav a:hover {
    color: var(--flame-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal);
}

.footer-bottom p {
    color: var(--smoke-gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-charcoal);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 3px solid var(--flame-orange);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .page-heading h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-banner {
        padding: 4rem 1.5rem;
        margin: 1rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .page-heading h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .notice-cards,
    .benefits-layout,
    .instruction-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-embed iframe {
        height: 400px;
    }

    .legal-block {
        padding: 1.5rem;
    }

    .age-gate-box {
        padding: 2rem 1.5rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
