:root {
    --fire-red: #dc2626;
    --fire-orange: #ea580c;
    --fire-yellow: #f59e0b;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
}

body {
    background: linear-gradient(135deg,
            var(--darker-bg) 0%,
            var(--dark-bg) 50%,
            #2d1b1b 100%);
    color: #ffffff;
    min-height: 100vh;
}

.hero {
    background: linear-gradient(135deg,
            var(--fire-red) 0%,
            var(--fire-orange) 50%,
            var(--fire-yellow) 100%);
    background-size: 400% 400%;
    animation: fireGradient 8s ease infinite;
}

@keyframes fireGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo-container {
    max-width: 200px;
    margin: 0 auto 2rem;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
}

.fire-card {
    background: linear-gradient(145deg,
            rgba(220, 38, 38, 0.1) 0%,
            rgba(234, 88, 12, 0.1) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.fire-card:hover {
    border-color: var(--fire-orange);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
}

.fire-button {
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange));
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.fire-button:hover {
    background: linear-gradient(45deg,
            var(--fire-orange),
            var(--fire-yellow));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    color: white;
}

.contact-link {
    color: var(--fire-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--fire-yellow);
}

.bright-text {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.fire-link {
    color: var(--fire-orange) !important;
    text-decoration: underline;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(234, 12, 12, 0.5);
    transition: all 0.3s ease;
}

.fire-link:hover {
    color: var(--fire-yellow) !important;
    text-shadow: 0 0 12px rgba(255, 158, 11, 0.7);
    text-decoration: none;
}

.section-dark {
    background: rgba(15, 15, 15, 0.8);
}

.flame-icon {
    color: var(--fire-orange);
    animation: flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.donate-section {
    background: linear-gradient(135deg,
            var(--darker-bg) 0%,
            rgba(220, 38, 38, 0.1) 100%);
    border-top: 2px solid var(--fire-red);
}

.source-link {
    text-decoration: underline dotted;
    color: #0000FF;
    text-shadow: 0 0 8px rgba(0, 0, 255, 0.5);
}

.source-link:hover {
    text-decoration: underline solid;
    color: #0000FF;
    text-shadow: 0 0 8px rgba(0, 0, 255, 0.5);
}