/* Global Styles for Ravinder Thakur Landing Page */

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

body {
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

/* Enhanced Fire Effects */
.fire-glow {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .fire-text {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .profile-circle {
        width: 120px;
        height: 120px;
    }
    
    .fire-ring {
        width: 140px;
        height: 140px;
        top: -10px;
        left: -10px;
    }
    
    .timer-digit {
        font-size: 2.5rem;
    }
}

/* Smooth Animations */
.smooth-bounce {
    animation: smoothBounce 2s ease-in-out infinite;
}

@keyframes smoothBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Enhanced Gradient Background */
.night-gradient {
    background: radial-gradient(ellipse at center, 
        rgba(25, 35, 60, 0.8) 0%, 
        rgba(10, 15, 30, 0.9) 50%, 
        rgba(0, 0, 0, 1) 100%);
}

/* Cricket Stadium Effect */
.stadium-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Success Badge Enhancement */
.success-badge {
    position: relative;
    overflow: hidden;
}

.success-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}