/* Creative Giveaway Section Styles */
.giveaway-highlight {
    position: relative;
    padding: 40px 30px;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
}

/* Creative background effect */
.giveaway-highlight::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, 
        rgba(255, 223, 0, 0.15) 0%, 
        rgba(255, 223, 0, 0.05) 50%, 
        transparent 90%);
    filter: blur(10px);
    z-index: -1;
    animation: glow-pulse 4s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.giveaway-highlight p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Chewy', cursive;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Luxury Gold and White Glowing Effect */
.money-effect {
    display: inline-block;
    position: relative;
    font-family: 'Chewy', cursive;
    font-size: 42px;
    padding: 0 8px;
    margin: 0 4px;
    background: linear-gradient(135deg, 
        #FFD700 0%, 
        #FFFFFF 50%, 
        #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 0px 8px rgba(255, 215, 0, 0.7));
    animation: gold-gradient-shift 4s ease infinite, gold-float 3s infinite ease-in-out;
    text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2),
        0 0 15px rgba(255, 215, 0, 0.1);
}

@keyframes gold-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gold-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

/* Gold dollar sign with glow */
.money-effect::before {
    content: '$';
    position: absolute;
    left: -18px;
    top: 0;
    font-size: 30px;
    color: #FFD700;
    text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 15px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
    animation: dollar-pulse 2s infinite alternate;
}

@keyframes dollar-pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; filter: brightness(1.3); }
}

/* Gold sparkle effect */
.money-effect::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    left: -20%;
    top: -20%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.9) 2px, transparent 3px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.9) 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.9) 2px, transparent 3px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.9) 1px, transparent 2px);
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
    animation: gold-sparkle 4s infinite linear;
}

@keyframes gold-sparkle {
    0% { transform: rotate(0deg); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: rotate(360deg); opacity: 0.5; }
}

/* Remove the previous split color effect as we're using gradients now */
.money-top, .money-bottom {
    display: none;
}

/* Sparkling stars effect */
.giveaway-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 223, 0, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(255, 223, 0, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 100px 100px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
    animation: twinkle 5s infinite linear;
    opacity: 0.5;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .money-effect {
        font-size: 36px;
    }
    
    .money-effect::before {
        left: -15px;
        font-size: 24px;
    }
} 