body {
    background: radial-gradient(ellipse at center, #2C2623 0%, #1E1A17 70%, #0F0D0B 100%);
    min-height: 100vh;
    color: #F5F5F5;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 130, 50, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 75% 25%, rgba(203, 131, 88, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(244, 192, 102, 0.2) 0%, transparent 40%);
    animation: campfireFlicker 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 60% 80%, rgba(168, 95, 61, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 40% 20%, rgba(139, 91, 61, 0.1) 0%, transparent 45%);
    animation: emberGlow 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes campfireFlicker {
    0% { opacity: 0.8; transform: scale(1); }
    25% { opacity: 1; transform: scale(1.05); }
    50% { opacity: 0.9; transform: scale(0.98); }
    75% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.85; transform: scale(1); }
}

@keyframes emberGlow {
    0%, 100% { opacity: 0.6; transform: translateY(0px) scale(1); }
    33% { opacity: 0.8; transform: translateY(-15px) scale(1.1); }
    66% { opacity: 0.4; transform: translateY(10px) scale(0.9); }
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}