
:root {
    --magma-dark: #0D0D0D;
    --volcano-black: #1A1A1A;
    --ash-gray: #2D2D2D;
    --smoke-gray: #4A4A4A;
    --cinder-gray: #6B6B6B;

    --ember-red: #D32F2F;
    --flame-orange: #FF6B35;
    --blaze-orange: #F7931E;
    --magma-yellow: #FFD23F;
    --lava-gold: #FFA726;

    --inferno-red: #E53935;
    --pyro-red: #FF5722;
    --heat-orange: #FF7043;
    --spark-yellow: #FFCA28;

    --smoke-white: #F5F5F5;
    --ash-white: #E0E0E0;
    --charcoal: #BDBDBD;

    --lava-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    --magma-gradient: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    --flame-gradient: linear-gradient(90deg, #FF5722 0%, #FF6B35 50%, #F7931E 100%);
    --ember-gradient: linear-gradient(45deg, #D32F2F 0%, #FF6B35 100%);

    --fire-glow: 0 0 30px rgba(255, 107, 53, 0.6);
    --magma-glow: 0 0 20px rgba(247, 147, 30, 0.4);
    --ember-glow: 0 0 15px rgba(255, 210, 63, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Puritan', sans-serif;
    background-color: var(--magma-dark);
    color: var(--smoke-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.magma-nav {
    background: var(--volcano-black);
    border-bottom: 2px solid var(--flame-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--fire-glow);
}

.lava-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ember-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ember-left:hover {
    transform: scale(1.02);
}

.ember-left:hover .blaze-brand {
    text-shadow: var(--fire-glow);
}

.inferno-symbol img {
    width: 50px;
    height: 50px;
    animation: flame-flicker 2s ease-in-out infinite;
}

@keyframes flame-flicker {
    0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
    50% { transform: scale(1.05) rotate(2deg); filter: brightness(1.2); }
}

.blaze-brand {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.scorch-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.heat-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.smoke-link {
    color: var(--ash-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.smoke-link:hover {
    color: var(--magma-yellow);
    text-shadow: var(--ember-glow);
}

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

.ignition-btn {
    background: var(--lava-gradient);
    color: var(--volcano-black);
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--fire-glow);
}

.ignition-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 40px rgba(255, 107, 53, 0.8);
}

/* Mobile Menu */
.ash-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.ash-burger span {
    width: 30px;
    height: 6px;
    background: var(--flame-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.ash-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.ash-burger.active span:nth-child(2) {
    opacity: 0;
}

.ash-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-only {
    display: none;
}

.volcanic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.molten-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/volcanic-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.molten-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
        var(--magma-gradient);
    opacity: 0.7;
    animation: magma-flow 5s ease-in-out infinite;
}

@keyframes magma-flow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.crater-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.eruption-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: var(--fire-glow);
    animation: title-pulse 3s ease-in-out infinite;
}

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

.lava-subtitle {
    font-size: 1.5rem;
    color: var(--ash-white);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.flame-play-btn {
    background: var(--lava-gradient);
    color: var(--volcano-black);
    border: none;
    padding: 1.2rem 3.5rem;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--fire-glow);
    animation: button-glow 2s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
    50% { box-shadow: 0 0 50px rgba(255, 107, 53, 0.9), 0 0 80px rgba(247, 147, 30, 0.4); }
}

.flame-play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 60px rgba(255, 107, 53, 1);
}

.ember-perks {
    padding: 5rem 2rem;
    background: var(--volcano-black);
}

.smoke-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.inferno-heading {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--flame-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fire-card {
    background: var(--ash-gray);
    border: 1px solid var(--flame-orange);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fire-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.fire-card:hover::before {
    left: 100%;
}

.fire-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--fire-glow);
    border-color: var(--magma-yellow);
}

.ember-icon {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.fire-card h3 {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 1.3rem;
    color: var(--magma-yellow);
    margin-bottom: 0.8rem;
}

.fire-card p {
    color: var(--charcoal);
    font-size: 1rem;
}

.volcano-about {
    padding: 5rem 2rem;
    background: var(--magma-dark);
}

.magma-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lava-visual {
    position: relative;
}

.crater-image {
    width: 100%;
    height: 400px;
    background-image: url('img/crater-about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.crater-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blaze-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smoke-content {
    color: var(--ash-white);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.geyser-news {
    padding: 4rem 2rem;
    background: var(--ember-gradient);
}

.vapor-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.mist-heading {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--smoke-white);
}

.steam-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fumarole-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Puritan', sans-serif;
    font-size: 1rem;
    background: var(--smoke-white);
}

.fumarole-input:focus {
    outline: 3px solid var(--magma-yellow);
}

.erupt-btn {
    background: var(--volcano-black);
    color: var(--magma-yellow);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.erupt-btn:hover {
    background: var(--magma-dark);
    box-shadow: var(--ember-glow);
}

.pyro-arena {
    padding: 5rem 2rem;
    background: var(--volcano-black);
}

.blaze-arena {
    max-width: 1400px;
    margin: 0 auto;
}

.scorch-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ember-games {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.magma-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    gap: 2rem;
    background: var(--ash-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--flame-orange);
}

.magma-game:hover {
    box-shadow: var(--fire-glow);
    border-color: var(--magma-yellow);
}

.lava-thumbnail {
    position: relative;
    height: 100%;
    min-height: 175px;
    overflow: hidden;
}

.fire-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magma-game:hover .fire-game-image {
    transform: scale(1.05);
}

.fire-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, var(--volcano-black) 100%);
    pointer-events: none;
}

.blaze-game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    text-align: center;
}

.blaze-game-name {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 1.1rem;
    color: var(--magma-yellow);
    margin-bottom: 0.5rem;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smoke-game-desc {
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ember-game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.fire-stat {
    background: var(--volcano-black);
    color: var(--ash-white);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid var(--smoke-gray);
    transition: all 0.3s ease;
}

.fire-stat:hover {
    border-color: var(--flame-orange);
    box-shadow: var(--ember-glow);
}

.ignition-play-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--lava-gradient);
    color: var(--volcano-black);
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Vollkorn SC', sans-serif;
}

.ignition-play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--fire-glow);
}

.ash-faq {
    padding: 5rem 2rem;
    background: var(--magma-dark);
}

.cinder-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.charcoal-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--flame-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spark-questions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ember-faq-item {
    background: var(--ash-gray);
    border-left: 4px solid var(--flame-orange);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ember-faq-item:hover {
    background: var(--smoke-gray);
    border-left-color: var(--magma-yellow);
    transform: translateX(10px);
}

.flame-question {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 1.2rem;
    color: var(--magma-yellow);
    margin-bottom: 0.8rem;
}

.smoke-answer {
    color: var(--charcoal);
    line-height: 1.7;
}

.molten-reviews {
    padding: 5rem 2rem;
    background: var(--volcano-black);
}

.crater-reviews {
    max-width: 1200px;
    margin: 0 auto;
}

.eruption-reviews-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ember-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fire-review {
    background: var(--ash-gray);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    border-top: 3px solid var(--flame-orange);
    transition: all 0.3s ease;
}

.fire-review:hover {
    transform: translateY(-5px);
    box-shadow: var(--magma-glow);
}

.blaze-comment {
    color: var(--ash-white);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.ash-name {
    color: var(--magma-yellow);
    font-weight: 600;
    font-family: 'Vollkorn SC', sans-serif;
}

.magma-contact {
    padding: 5rem 2rem;
    background: var(--magma-dark);
}

.lava-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.fire-contact-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--flame-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ember-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.blaze-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.scorch-info-block {
    background: var(--ash-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--flame-orange);
}

.scorch-info-block h3 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    margin-bottom: 0.5rem;
}

.scorch-info-block p {
    color: var(--charcoal);
}

.heat-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fumarole-field {
    background: var(--ash-gray);
    border: 1px solid var(--smoke-gray);
    color: var(--smoke-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Puritan', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fumarole-field:focus {
    outline: none;
    border-color: var(--flame-orange);
    box-shadow: var(--ember-glow);
}

.fumarole-field::placeholder {
    color: var(--cinder-gray);
}

.ignition-submit {
    background: var(--lava-gradient);
    color: var(--volcano-black);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ignition-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--fire-glow);
}

.age-warning {
    padding: 3rem 2rem;
    background: repeating-linear-gradient(
        45deg,
        var(--volcano-black),
        var(--volcano-black) 10px,
        var(--ash-gray) 10px,
        var(--ash-gray) 20px
    );
}

.restriction-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--volcano-black);
    border: 3px solid var(--ember-red);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.restriction-box h3 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--inferno-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.restriction-box p {
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cinder-footer {
    background: var(--volcano-black);
    border-top: 2px solid var(--flame-orange);
    padding: 2rem;
}

.ember-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.blaze-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ember-red);
    color: var(--smoke-white);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.fire-icon {
    font-size: 1.5rem;
}

.smoke-footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.smoke-footer-links a {
    color: var(--ash-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.smoke-footer-links a:hover {
    color: var(--magma-yellow);
    text-shadow: var(--ember-glow);
}

.lava-copy {
    color: var(--cinder-gray);
    font-size: 0.95rem;
}

.magma-cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--volcano-black);
    border-top: 3px solid var(--flame-orange);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.magma-cookie-popup.show {
    bottom: 0;
}

.crystal-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.crystal-cookie-content h3 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    margin-bottom: 0.5rem;
}

.crystal-cookie-content p {
    color: var(--charcoal);
    flex: 1;
    min-width: 250px;
}

.ember-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ignition-accept {
    background: var(--lava-gradient);
    color: var(--volcano-black);
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ignition-accept:hover {
    box-shadow: var(--fire-glow);
}

.smoke-learn {
    color: var(--magma-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.smoke-learn:hover {
    text-shadow: var(--ember-glow);
}

.ember-game-body {
    background: var(--magma-dark);
}

.pyro-scroll-games {
    cursor: pointer;
}

.volcanic-game-section {
    min-height: 100vh;
    padding: 2rem 0;
    background: var(--magma-dark);
}

.molten-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.crater-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blaze-back-btn {
    background: var(--ember-gradient);
    color: var(--smoke-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.blaze-back-btn:hover {
    transform: translateX(-5px);
    box-shadow: var(--fire-glow);
}

.eruption-game-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lava-game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    aspect-ratio: 16/9;
    background: var(--volcano-black);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--flame-orange);
    box-shadow: var(--fire-glow);
}

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

.ash-game-info {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--ash-gray);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--flame-orange);
}

.ash-game-info h2 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    margin-bottom: 1rem;
}

.ash-game-info p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ember-game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.fire-feature {
    background: var(--volcano-black);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--smoke-gray);
    transition: all 0.3s ease;
}

.fire-feature:hover {
    border-color: var(--flame-orange);
    box-shadow: var(--ember-glow);
}

.blaze-feature-icon {
    font-size: 1.5rem;
}

.fire-feature span:last-child {
    color: var(--ash-white);
    font-weight: 500;
}

.volcanic-contact-page {
    padding: 5rem 2rem 2rem;
    min-height: 100vh;
    background: var(--magma-dark);
}

.molten-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.eruption-page-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 3rem;
    text-align: center;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.lava-page-desc {
    text-align: center;
    color: var(--charcoal);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ember-contact-grid-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.blaze-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scorch-info-card {
    background: var(--ash-gray);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--flame-orange);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.scorch-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--magma-glow);
}

.inferno-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.scorch-info-card h3 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.heat-contact-text {
    color: var(--charcoal);
    line-height: 1.6;
}

.ash-contact-form-page {
    background: var(--ash-gray);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--flame-orange);
}

.fire-form-title {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    margin-bottom: 1.5rem;
}

.heat-contact-form-page {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.magma-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.magma-form-group label {
    color: var(--ash-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.fumarole-field-page {
    background: var(--volcano-black);
    border: 1px solid var(--smoke-gray);
    color: var(--smoke-white);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-family: 'Puritan', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fumarole-field-page:focus {
    outline: none;
    border-color: var(--flame-orange);
    box-shadow: var(--ember-glow);
}

.fumarole-field-page::placeholder {
    color: var(--cinder-gray);
}

.ignition-submit-page {
    background: var(--lava-gradient);
    color: var(--volcano-black);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Vollkorn SC', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.ignition-submit-page:hover {
    transform: translateY(-2px);
    box-shadow: var(--fire-glow);
}

.cinder-hours {
    background: var(--ash-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--magma-yellow);
}

.charcoal-hours-title {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.spark-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.ember-hour-item {
    background: var(--volcano-black);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ember-hour-item strong {
    color: var(--flame-orange);
    font-family: 'Vollkorn SC', sans-serif;
}

.ember-hour-item span {
    color: var(--charcoal);
}

.volcanic-legal-page {
    padding: 5rem 2rem 2rem;
    min-height: 100vh;
    background: var(--magma-dark);
}

.molten-legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.eruption-legal-title {
    font-family: 'Vollkorn SC', sans-serif;
    font-size: 2.5rem;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.ember-legal-content {
    background: var(--ash-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--flame-orange);
}

.ember-legal-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ember-legal-content h2 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--magma-yellow);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.ember-legal-content h3 {
    font-family: 'Vollkorn SC', sans-serif;
    color: var(--blaze-orange);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.ember-legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.ember-legal-content li {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.ember-legal-content a {
    color: var(--flame-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ember-legal-content a:hover {
    color: var(--magma-yellow);
    text-decoration: underline;
}

.active-link {
    color: var(--magma-yellow) !important;
    text-shadow: var(--ember-glow);
}

.active-link::after {
    width: 100% !important;
}

@media (max-width: 1024px) {
    .ember-contact-grid-page {
        grid-template-columns: 1fr;
    }

    .crater-game-header {
        flex-direction: column;
        text-align: center;
    }

    .magma-game {
        grid-template-columns: 1fr;
    }

    .lava-thumbnail {
        min-height: 125px;
    }

    .blaze-game-name {
        font-size: 1.1rem;
    }

    .blaze-game-info {
        padding: 1.25rem;
    }
    .magma-wrapper {
        grid-template-columns: 1fr;
    }

    .ember-contact-grid {
        grid-template-columns: 1fr;
    }

    .eruption-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }

    .scorch-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--volcano-black);
        width: 100%;
        padding: 2rem;
        border-bottom: 2px solid var(--flame-orange);
        transition: left 0.3s ease;
    }

    .scorch-menu.active {
        left: 0;
    }

    .heat-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .eruption-title {
        font-size: 2.2rem;
    }

    .lava-subtitle {
        font-size: 1.1rem;
    }

    .inferno-heading,
    .charcoal-title,
    .eruption-reviews-title,
    .fire-contact-title,
    .scorch-title {
        font-size: 1.8rem;
    }

    .blaze-title {
        font-size: 1.8rem;
    }

    .crystal-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lava-container {
        padding: 1rem;
    }

    .blaze-brand {
        font-size: 1.3rem;
    }

    .eruption-title {
        font-size: 1.8rem;
    }

    .sparks-grid,
    .ember-games,
    .ember-testimonials {
        grid-template-columns: 1fr;
    }

    .steam-form {
        flex-direction: column;
    }

    .fumarole-input {
        min-width: 100%;
    }

    .eruption-game-title {
        font-size: 1.5rem;
    }

    .blaze-back-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

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

    .eruption-page-title {
        font-size: 1.8rem;
    }

    .lava-page-desc {
        font-size: 1rem;
    }

    .eruption-legal-title {
        font-size: 1.5rem;
    }

    .ember-legal-content {
        padding: 1.5rem;
    }

    .blaze-game-name {
        font-size: 1rem;
    }

    .ember-game-stats {
        gap: 0.3rem;
    }

    .fire-stat {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .ignition-play-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
