/* ============================
   HERO SECTION BACKGROUND
============================ */
.contest-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 15rem 0;
    background: linear-gradient(to bottom right, #ffe5bf 0%, #FFF 40%, #FFF 60%, #d0f3c5 100%);
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgb(183 213 247 / 17%) 0%, rgba(214, 233, 255, 0.1) 50%);
    animation: gradient-rotate 20s linear infinite;
    z-index: 0;
    pointer-events: none
}

@keyframes gradient-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container-products{
    margin-top: -10rem;
    margin-bottom: 2em
}

/* ============================
   SIDE LAMPS
============================ */
.side-lamp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    color: #6db2ff;
    z-index: 1;
    animation: lamp-float 4s ease-in-out infinite;
}

.side-lamp.left {
    left: 10%;
}

.side-lamp.right {
    right: 10%;
}

.lamp-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    pointer-events: none;
}

@keyframes lamp-float {
    0%, 100% {
        transform: translateY(-50%) scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-55%) scale(1.05);
        opacity: 1;
    }
}

/* ============================
   ICON AND TEXT EFFECTS
============================ */
.hero-icon {
    position: relative;
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 2rem;
    display: inline-block;
}

.icon-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: pulse 2s infinite;
}

h1.gradient-text {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #ad41ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(43, 108, 176, 0.1);
    margin-bottom: 1.5rem;
}

/* ============================
   HIGHLIGHTED TEXT DECORATION
============================ */
.highlight {
    display: inline-block;
    position: relative;
    padding: 0 1rem;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffd700;
    transform: scaleX(1.2);
    z-index: -1;
}

/* ============================
   INFO BADGE
============================ */
.info-badge {
    gap:10px;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.badge-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-50%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

/* ============================
   BLOB BACKGROUND ELEMENTS
============================ */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blob-float 15s infinite linear;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #c3dafe;
    top: 20%;
    left: 10%;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #ffd6a5;
    top: 50%;
    right: 15%;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: #fed7d7;
    bottom: 20%;
    left: 40%;
}

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

/* ============================
   BULB ICON HOVER EFFECT
============================ */
.side-lamp .bi-lightbulb {
    transition: all 0.3s ease;
}

/* ============================
   RESPONSIVE ADJUSTMENTS
============================ */
@media (max-width: 1200px) {
    .side-lamp {
        font-size: 4rem;
    }
    .side-lamp.left {
        left: 5%;
    }
    .side-lamp.right {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .side-lamp {
        display: none;
    }
    h1.gradient-text {
        font-size: 2.5rem;
    }
    .hero-icon {
        font-size: 3rem;
    }
}
