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

*:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Fire Container */
.fire-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Grill Base */
.grill {
    width: 300px;
    height: 20px;
    background: linear-gradient(to bottom, #222, #000);
    border-radius: 10px;
    position: relative;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Fire Animation */
.fire {
    position: relative;
    width: 200px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.flame {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 80px;
    background: linear-gradient(to top, 
        #ff6600 0%, 
        #ff9933 30%, 
        #ffcc00 60%, 
        rgba(255, 204, 0, 0.5) 100%);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
    animation: flicker 1.5s ease-in-out infinite;
    filter: blur(2px);
}

.flame1 {
    left: 30%;
    animation-delay: 0s;
    height: 90px;
}

.flame2 {
    left: 45%;
    animation-delay: 0.3s;
    height: 100px;
}

.flame3 {
    left: 60%;
    animation-delay: 0.6s;
    height: 85px;
}

.flame4 {
    left: 38%;
    animation-delay: 0.9s;
    height: 70px;
    opacity: 0.8;
}

.flame5 {
    left: 52%;
    animation-delay: 1.2s;
    height: 75px;
    opacity: 0.9;
}

@keyframes flicker {
    0%, 100% {
        transform: scaleY(1) scaleX(1) translateY(0);
        opacity: 1;
    }
    25% {
        transform: scaleY(1.2) scaleX(0.9) translateY(-10px);
        opacity: 0.9;
    }
    50% {
        transform: scaleY(0.8) scaleX(1.1) translateY(5px);
        opacity: 0.95;
    }
    75% {
        transform: scaleY(1.1) scaleX(0.95) translateY(-5px);
        opacity: 0.85;
    }
}

/* Content Styling */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInFloat 1s ease-out forwards;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.4;
    animation: float 3s ease-in-out infinite;
}

.content h1 strong {
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5),
                 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.content p {
    font-size: 1.5rem;
    color: #ddd;
    font-style: italic;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.2s;
}

@keyframes fadeInFloat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1.2rem;
    }
    
    .fire {
        width: 150px;
        height: 120px;
    }
    
    .flame {
        width: 30px;
        height: 60px;
    }
    
    .grill {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .fire {
        width: 120px;
        height: 100px;
    }
    
    .flame {
        width: 25px;
        height: 50px;
    }
    
    .grill {
        width: 150px;
    }
}