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

body {
    height: 100vh;
    overflow: hidden;
    background: #000;
    font-family: 'Arial', sans-serif;
    cursor: none;
}

.fire-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fire-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 69, 0, 0.8) 0%,
        rgba(255, 140, 0, 0.6) 20%,
        rgba(255, 165, 0, 0.4) 40%,
        rgba(220, 20, 60, 0.3) 60%,
        rgba(139, 0, 0, 0.2) 80%,
        transparent 100%);
    animation: fireFlicker 3s ease-in-out infinite alternate;
}

.layer1 {
    animation-delay: 0s;
    opacity: 0.9;
}

.layer2 {
    animation-delay: -0.5s;
    opacity: 0.7;
    transform: scale(1.1);
}

.layer3 {
    animation-delay: -1s;
    opacity: 0.5;
    transform: scale(1.2);
}

.layer4 {
    animation-delay: -1.5s;
    opacity: 0.3;
    transform: scale(1.3);
}

@keyframes fireFlicker {
    0% {
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        transform: scale(1.05) rotate(1deg);
        filter: hue-rotate(5deg) brightness(1.1);
    }
    50% {
        transform: scale(1.1) rotate(-1deg);
        filter: hue-rotate(-5deg) brightness(0.9);
    }
    75% {
        transform: scale(1.03) rotate(2deg);
        filter: hue-rotate(3deg) brightness(1.05);
    }
    100% {
        transform: scale(1.08) rotate(-2deg);
        filter: hue-rotate(-3deg) brightness(1.15);
    }
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #fff;
}

.logo h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8),
                 0 0 40px rgba(255, 140, 0, 0.6),
                 0 0 60px rgba(255, 165, 0, 0.4);
    animation: logoGlow 2s ease-in-out infinite alternate;
    letter-spacing: 0.1em;
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 69, 0, 0.8),
                     0 0 40px rgba(255, 140, 0, 0.6),
                     0 0 60px rgba(255, 165, 0, 0.4);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 69, 0, 1),
                     0 0 60px rgba(255, 140, 0, 0.8),
                     0 0 90px rgba(255, 165, 0, 0.6);
    }
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, 
        rgba(255, 69, 0, 0.8) 0%,
        rgba(255, 140, 0, 0.9) 50%,
        rgba(255, 69, 0, 0.8) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid rgba(255, 140, 0, 0.6);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4),
                0 0 40px rgba(255, 140, 0, 0.3),
                inset 0 0 20px rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    animation: buttonGlow 2s ease-in-out infinite alternate;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, 
        rgba(255, 69, 0, 1) 0%,
        rgba(255, 140, 0, 1) 50%,
        rgba(255, 69, 0, 1) 100%);
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.6),
                0 0 60px rgba(255, 140, 0, 0.5),
                inset 0 0 30px rgba(255, 165, 0, 0.3);
    text-shadow: 0 0 15px rgba(255, 69, 0, 1),
                 0 0 30px rgba(255, 140, 0, 0.8);
    animation-duration: 1s;
}

.contact-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.4),
                    0 0 40px rgba(255, 140, 0, 0.3),
                    inset 0 0 20px rgba(255, 165, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 69, 0, 0.6),
                    0 0 60px rgba(255, 140, 0, 0.4),
                    inset 0 0 30px rgba(255, 165, 0, 0.3);
    }
}



/* Mouse cursor effect */
.cursor-fire {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        rgba(255, 69, 0, 1) 0%,
        rgba(255, 140, 0, 0.8) 50%,
        transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 20;
    animation: cursorFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes cursorFlicker {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    .contact-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .coming-soon p {
        font-size: 0.9rem;
    }
    
    .contact-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}