/* ============================================
   Template 10 - Fire Storm
   ============================================ */

.template-fire {
    background: radial-gradient(ellipse at bottom, #1a0a00 0%, #0a0a0f 100%);
}

/* Heat Overlay */
.heat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at bottom center, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
}

/* Logo */
.fire-logo {
    filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.5));
}

.fire-icon {
    background: linear-gradient(180deg, #ff5722 0%, #f44336 50%, #ff9800 100%);
    color: white;
    animation: fire-glow 2s ease-in-out infinite;
}

@keyframes fire-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 87, 34, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 87, 34, 0.8); }
}

.fire-text {
    color: #ff5722;
    text-shadow: 0 0 10px #ff5722, 0 0 20px #ff9800;
}

/* Fire Heading */
.fire-heading {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.text-fire-ember {
    display: block;
    color: #ff9800;
    text-shadow: 0 0 30px rgba(255, 152, 0, 0.5);
}

.text-fire-flame {
    display: block;
    background: linear-gradient(180deg, #ffeb3b 0%, #ff9800 30%, #ff5722 60%, #f44336 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fire-text 3s ease-in-out infinite;
}

@keyframes fire-text {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Fire Countdown */
.fire-countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.fire-item {
    text-align: center;
}

.fire-ember {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.3) 0%, rgba(244, 67, 54, 0.1) 100%);
    border: 2px solid rgba(255, 87, 34, 0.5);
    border-radius: 50%;
    position: relative;
    animation: ember-pulse 2s ease-in-out infinite;
}

@keyframes ember-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.3), inset 0 0 20px rgba(255, 87, 34, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 87, 34, 0.5), inset 0 0 30px rgba(255, 87, 34, 0.2);
    }
}

.fire-item .countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9800;
    background: none;
    -webkit-text-fill-color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

/* Fire Form */
.fire-form input {
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.fire-form input:focus {
    border-color: #ff5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
}

.btn-fire {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff5722 0%, #f44336 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-fire:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
}

/* Heat Meter */
.heat-meter {
    max-width: 400px;
    margin: 2rem auto 0;
}

.heat-bar {
    height: 12px;
    background: rgba(255, 87, 34, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.heat-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #f44336 0%, #ff5722 30%, #ff9800 60%, #ffeb3b 100%);
    border-radius: 9999px;
    animation: heat-pulse 2s ease-in-out infinite;
}

@keyframes heat-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.heat-label {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Fire Social */
.fire-social-link {
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.fire-social-link:hover {
    background: linear-gradient(135deg, #ff5722 0%, #f44336 100%);
    border-color: transparent;
}
