/* HeroHosty Popup Offer Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Left Side Diyas */
.popup-overlay::before {
    content: '🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔';
    position: absolute;
    left: calc(50% - 480px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    z-index: 1;
    animation: diyaVertical 5s ease-in-out infinite;
    white-space: pre;
    pointer-events: none;
    line-height: 1.8;
}

/* Right Side Diyas */
.popup-overlay::after {
    content: '🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔\A🪔';
    position: absolute;
    right: calc(50% - 480px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    z-index: 1;
    animation: diyaVertical 5s ease-in-out infinite reverse;
    white-space: pre;
    pointer-events: none;
    line-height: 1.8;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Corner Diyas */
.popup-overlay.active::before,
.popup-overlay.active::after {
    animation-play-state: running;
}

.popup-container {
    position: relative;
}

/* Corner Decorations */
.popup-container .corner-diya {
    position: absolute;
    font-size: 20px;
    z-index: 1;
    animation: cornerGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.popup-container .corner-diya.top-left {
    top: -18px;
    left: -18px;
    animation-delay: 0s;
}

.popup-container .corner-diya.top-right {
    top: -18px;
    right: -18px;
    animation-delay: 0.5s;
}

.popup-container .corner-diya.bottom-left {
    bottom: -18px;
    left: -18px;
    animation-delay: 1s;
}

.popup-container .corner-diya.bottom-right {
    bottom: -18px;
    right: -18px;
    animation-delay: 1.5s;
}

.popup-container {
    background: linear-gradient(145deg, 
        #8B0000 0%, 
        #DC143C 20%, 
        #FF6B35 40%, 
        #FFD700 60%, 
        #FFA500 80%, 
        #FF4500 100%
    );
    border-radius: 25px;
    box-shadow: 
        0 30px 60px rgba(139, 0, 0, 0.4),
        0 15px 35px rgba(255, 215, 0, 0.3),
        inset 0 2px 0 rgba(255, 215, 0, 0.7),
        0 0 0 4px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 69, 0, 0.5);
    position: relative;
    max-width: 880px;
    width: 92%;
    margin: 20px;
    overflow: visible;
    transform: scale(0.7) translateY(-50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: row;
    min-height: 480px;
    z-index: 10;
    border: 4px solid #FFD700;
    animation: rangoliBorder 6s ease-in-out infinite;
}

/* Top Border Diyas */
.popup-container::before {
    content: '🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    z-index: 2;
    animation: diyaWave 4s ease-in-out infinite;
    white-space: nowrap;
    pointer-events: none;
}

/* Bottom Border Diyas */
.popup-container::after {
    content: '🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔🪔';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    z-index: 2;
    animation: diyaWave 4s ease-in-out infinite reverse;
    white-space: nowrap;
    pointer-events: none;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, 
        #8B0000 0%, 
        #B22222 25%, 
        #DC143C 50%, 
        #FF6B35 75%, 
        #FFD700 100%
    );
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 480px;
    z-index: 11;
    border-radius: 25px 0 0 25px;
    box-shadow: 
        inset 0 2px 0 rgba(255, 215, 0, 0.5),
        inset 0 -2px 10px rgba(139, 0, 0, 0.3);
    border-right: 2px solid #FFD700;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent);
    animation: premiumShine 4s ease-in-out infinite;
    z-index: 1;
}

.popup-header .header-decorations {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    animation: diwaLights 3s ease-in-out infinite;
    white-space: nowrap;
    z-index: 5;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.popup-header .footer-decorations {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite alternate;
    white-space: nowrap;
    z-index: 5;
}

@keyframes diwaLights {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes sparkle {
    0% { 
        transform: translateX(-50%) rotate(0deg);
        opacity: 0.7;
    }
    100% { 
        transform: translateX(-50%) rotate(5deg);
        opacity: 1;
    }
}

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

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes candleGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 107, 53, 0.5); }
}

@keyframes flicker {
    0%, 100% { opacity: 0.8; transform: scale(1) rotate(-2deg); }
    25% { opacity: 1; transform: scale(1.1) rotate(2deg); }
    50% { opacity: 0.9; transform: scale(1.05) rotate(-1deg); }
    75% { opacity: 1; transform: scale(0.95) rotate(1deg); }
}

@keyframes diyadance {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-3px) scale(1.1); }
    50% { transform: translateY(-6px) scale(1); }
    75% { transform: translateY(-3px) scale(1.1); }
}

@keyframes diyaWave {
    0% { 
        transform: translateX(-50%) scaleY(1);
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    25% { 
        transform: translateX(-50%) scaleY(1.1) scaleX(0.95);
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    }
    50% { 
        transform: translateX(-50%) scaleY(0.9) scaleX(1.05);
        filter: brightness(0.9) drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    75% { 
        transform: translateX(-50%) scaleY(1.1) scaleX(0.95);
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    }
    100% { 
        transform: translateX(-50%) scaleY(1);
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
}

@keyframes diyaVertical {
    0% { 
        transform: translateY(-50%) scaleX(1);
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }
    25% { 
        transform: translateY(-50%) scaleX(1.1) translateX(-3px);
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    }
    50% { 
        transform: translateY(-50%) scaleX(0.9) translateX(3px);
        opacity: 0.9;
        filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
    }
    75% { 
        transform: translateY(-50%) scaleX(1.1) translateX(-3px);
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    }
    100% { 
        transform: translateY(-50%) scaleX(1);
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }
}

@keyframes cornerGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)) brightness(1);
        opacity: 0.9;
    }
    50% { 
        transform: scale(1.2) rotate(10deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9)) brightness(1.3);
        opacity: 1;
    }
}

@keyframes premiumShine {
    0% { 
        left: -100%;
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 215, 0, 0.15));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
    animation: pulse 2s infinite;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
}

.popup-badge::before {
    content: '🪔';
    margin-right: 8px;
    animation: diyadance 2s ease-in-out infinite;
}

.popup-badge::after {
    content: '🪔';
    margin-left: 8px;
    animation: diyadance 2s ease-in-out infinite reverse;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.popup-title {
    color: #FFD700;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 
        3px 3px 0 #8B0000,
        6px 6px 0 #DC143C,
        0 0 20px rgba(255, 215, 0, 0.9),
        0 0 40px rgba(255, 215, 0, 0.6);
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    animation: goldShimmer 3s ease-in-out infinite;
    text-transform: uppercase;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.popup-body {
    padding: 35px 30px;
    background: linear-gradient(145deg, 
        #FFF8DC 0%, 
        #FFFACD 25%, 
        #F0E68C 50%, 
        #FFE4B5 75%, 
        #FFEFD5 100%
    );
    text-align: center;
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 11;
    border-radius: 0 25px 25px 0;
    box-shadow: 
        inset 0 2px 0 rgba(255, 215, 0, 0.6),
        inset -2px 0 10px rgba(139, 0, 0, 0.2);
    border-left: 2px solid #FFD700;
}

.popup-body::before {
    content: '🪔';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 25px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.4;
    z-index: 1;
}

.popup-body::after {
    content: '🪔';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
    animation: float 3s ease-in-out infinite reverse;
    opacity: 0.4;
    z-index: 1;
}

.offer-content {
    margin-bottom: 15px;
    position: relative;
    z-index: 12;
}

.discount-text {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes glow {
    0% {
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)) drop-shadow(0 0 10px rgba(102, 126, 234, 0.4));
    }
    100% {
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)) drop-shadow(0 0 20px rgba(102, 126, 234, 0.8)) drop-shadow(0 0 30px rgba(118, 75, 162, 0.6));
    }
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
        text-shadow: 3px 3px 8px rgba(0,0,0,0.4), 0 0 30px rgba(255, 215, 0, 0.5);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    }
    50% {
        transform: scale(1.05);
        text-shadow: 3px 3px 15px rgba(0,0,0,0.6), 0 0 40px rgba(255, 215, 0, 0.8);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
    100% {
        transform: scale(1);
        text-shadow: 3px 3px 8px rgba(0,0,0,0.4), 0 0 30px rgba(255, 215, 0, 0.5);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    }
}

.offer-text {
    font-size: 28px;
    color: #DC143C;
    margin-bottom: 35px;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    z-index: 999;
    position: relative;
}



.timer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffdc00 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 18px;
    margin: 35px 0;
    font-weight: 700;
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: candleGlow 3s ease-in-out infinite;
    z-index: 12;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.timer::before {
    content: '🕯️';
    position: absolute;
    bottom: -5px;
    left: -5px;
    font-size: 20px;
    animation: flicker 1.5s ease-in-out infinite;
}

.timer::after {
    content: '🕯️';
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 20px;
    animation: flicker 1.5s ease-in-out infinite reverse;
}

.timer-text {
    font-size: 14px;
    margin-bottom: 8px;
}

.countdown {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 12;
    margin-top: 25px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn {
    padding: 30px 60px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 400px;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin: 15px 0;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 25%, #FF6B35 50%, #FFD700 100%);
    color: #FFFFFF;
    box-shadow: 
        0 8px 25px rgba(139, 0, 0, 0.6), 
        0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 215, 0, 0.5);
    border: 3px solid #FFD700;
    background-clip: padding-box;
    animation: diwaliButtonGlow 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.8);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
    border-radius: inherit;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d6821a 50%, #ff7028 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #8B0000;
    border: 2px solid #8B0000;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    min-width: 300px;
    max-width: 450px;
    padding: 20px 40px;
    font-size: 18px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF6B35 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 25px rgba(139, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    text-decoration: none;
}


.discount-percentage {
    font-size: 90px;
    margin: 15px 0 10px 0;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    animation: pulse-scale 2s ease-in-out infinite alternate;
    line-height: 1;
}

.discount-label {
    color: rgba(255,255,255,0.95);
    font-size: 20px;
    font-weight: 700;
    margin-top: -10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-container {
        margin: 10px;
        border-radius: 15px;
        flex-direction: column;
        max-width: 400px;
        min-height: auto;
        max-height: 85vh;
    }

    .popup-header {
        min-height: auto;
        padding: 20px 15px;
    }
    
    .popup-header::before {
        font-size: 16px;
        top: 10px;
    }
    
    .popup-header::after {
        font-size: 14px;
        bottom: 10px;
    }

    .popup-title {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .popup-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .discount-percentage {
        font-size: 60px !important;
        margin: 10px 0 5px 0 !important;
    }

    .discount-label {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .popup-body {
        padding: 20px 15px;
        max-height: none;
        overflow: visible;
    }
    
    .popup-body::before,
    .popup-body::after {
        font-size: 20px;
        top: 15px;
    }
    
    .timer::before,
    .timer::after {
        font-size: 16px;
    }
    
    /* Mobile Diya Border Adjustments - REMOVED */
}

/* Hide side diyas on very small screens */
@media (max-width: 480px) {
    .popup-overlay::before,
    .popup-overlay::after {
        display: none;
    }
    
    .corner-diya {
        font-size: 16px;
    }
    
    .popup-container::before,
    .popup-container::after {
        top: -15px;
        bottom: -15px;
    }
}
    .offer-text {
        font-size: 16px;
        margin-bottom: 10px;
    }


    .timer {
        margin: 10px 0;
        padding: 8px 12px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        align-items: stretch;
    }

    .btn {
        min-width: auto;
        max-width: none;
        padding: 18px 30px;
        font-size: 16px;
        white-space: nowrap;
    }
    
    .btn-secondary {
        margin-top: 5px;
    }

}

/* Medium screens - stack buttons vertically but keep them in popup */
@media (max-width: 950px) and (min-width: 769px) {
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .btn {
        max-width: 400px;
        min-width: 350px;
        padding: 25px 50px;
        font-size: 22px;
    }
    
    .btn-secondary {
        margin-top: 5px;
        max-width: 150px;
    }
}

@media (min-width: 951px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .btn-primary {
        flex: 1;
        max-width: 600px;
    }
    
    .btn-secondary {
        flex-basis: 100%;
        margin-top: 10px;
    }
}

@media (min-width: 769px) {
    .popup-header {
        border-radius: 20px 0 0 20px;
    }

    .popup-body {
        border-radius: 0 20px 20px 0;
    }
}

/* Animation for popup entrance */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-body {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

/* Custom Scrollbar */
.popup-body::-webkit-scrollbar {
    width: 6px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Button pulse animation */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* Candle glow animation for timer */
@keyframes candleGlow {
    0%, 100% {
        box-shadow: 
            0 15px 35px rgba(255, 107, 53, 0.3),
            0 5px 15px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 20px 45px rgba(255, 107, 53, 0.4),
            0 8px 25px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes rangoliBorder {
    0%, 100% {
        border-color: #FFD700;
        box-shadow: 
            0 30px 60px rgba(139, 0, 0, 0.4),
            0 15px 35px rgba(255, 215, 0, 0.3),
            inset 0 2px 0 rgba(255, 215, 0, 0.7),
            0 0 0 4px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 69, 0, 0.5);
    }
    25% {
        border-color: #FF6B35;
    }
    50% {
        border-color: #DC143C;
        box-shadow: 
            0 35px 70px rgba(139, 0, 0, 0.5),
            0 20px 40px rgba(255, 215, 0, 0.4),
            inset 0 3px 0 rgba(255, 215, 0, 0.8),
            0 0 0 5px rgba(255, 215, 0, 0.7),
            0 0 40px rgba(255, 69, 0, 0.6);
    }
    75% {
        border-color: #8B0000;
    }
}

@keyframes goldShimmer {
    0%, 100% {
        text-shadow: 
            3px 3px 0 #8B0000,
            6px 6px 0 #DC143C,
            0 0 20px rgba(255, 215, 0, 0.9),
            0 0 40px rgba(255, 215, 0, 0.6);
    }
    50% {
        text-shadow: 
            3px 3px 0 #8B0000,
            6px 6px 0 #DC143C,
            0 0 30px rgba(255, 215, 0, 1),
            0 0 50px rgba(255, 215, 0, 0.8),
            0 0 70px rgba(255, 140, 0, 0.6);
    }
}

@keyframes rangoliText {
    0%, 100% {
        background: linear-gradient(135deg, #8B0000, #DC143C, #FF6B35, #FFD700);
    }
    33% {
        background: linear-gradient(135deg, #DC143C, #FF6B35, #FFD700, #8B0000);
    }
    66% {
        background: linear-gradient(135deg, #FF6B35, #FFD700, #8B0000, #DC143C);
    }
}

@keyframes diwaliButtonGlow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(139, 0, 0, 0.6), 
            0 4px 15px rgba(255, 215, 0, 0.4),
            inset 0 2px 0 rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(139, 0, 0, 0.8), 
            0 6px 20px rgba(255, 215, 0, 0.6),
            inset 0 3px 0 rgba(255, 215, 0, 0.7),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
}
