body {
    font-family: 'TodaySHOP';
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #0061a5 0%, #014f9a 30%, #211e53 100%);
    min-height: 100vh;overflow-x: hidden;position: relative;
   
}
.roboto{font-family: "Roboto", sans-serif;letter-spacing: -2.5px;font-weight: 900;}
.bg{width:100%;height:100%; background: url(img/sfondo.png) no-repeat ;z-index: -1;
    position: absolute;left:0px;top:0px;opacity: .3;background-size: cover;
    background-position: top center;}
/* Sparkle Animation Background */
.sparkle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkleRotate 4s infinite linear;
}

@keyframes sparkleRotate {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
        opacity: 0;
    }
}


.sparkle:nth-child(1) { width: 4px; height: 4px; top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { width: 6px; height: 6px; top: 25%; left: 85%; animation-delay: 1s; }
.sparkle:nth-child(3) { width: 3px; height: 3px; top: 45%; left: 15%; animation-delay: 2s; }
.sparkle:nth-child(4) { width: 5px; height: 5px; top: 65%; left: 80%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { width: 4px; height: 4px; top: 35%; left: 90%; animation-delay: 1.5s; }
.sparkle:nth-child(6) { width: 7px; height: 7px; top: 75%; left: 5%; animation-delay: 2.5s; }
.sparkle:nth-child(7) { width: 3px; height: 3px; top: 55%; left: 70%; animation-delay: 3s; }
.sparkle:nth-child(8) { width: 5px; height: 5px; top: 85%; left: 25%; animation-delay: 3.5s; }

.main-content {
    position: relative;
    z-index: 10;
}

/* Navbar Styling */
.navbar {
    background: transparent;
    padding: 20px 0;
}

.navbar-brand {
    font-weight: 900;
    color: white !important;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links span {
    color: white;
    
    font-size: 0.9rem;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    z-index: 15;
    width: 100%;
    pointer-events: none;
}

.badge-50 {
    position: absolute;
    top: 15%;
    right: 8%;
    background: linear-gradient(145deg, #4ecdc4, #26a69a);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.badge-25-1 {
    position: absolute;
    bottom: 40%;
    left: 3%;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite reverse;
}

.badge-25-2 {
    position: absolute;
    bottom: 25%;
    right: 5%;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}


@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

/* Logo WhatsApp Pro */
.whatsapp-logo {
    position: relative;
    z-index: 10;
    margin: 40px auto;
    max-width: 350px;
}

.whatsapp-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Slot Machine Container */
.slot-container {
    position: relative;
    margin: 0px auto 40px auto;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slot-machine-img {
    width:100%;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Rotating Rays SVG */
.rotating-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 5;
    animation: rotateRays 8s linear infinite;
}

@keyframes rotateRays {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Date Banner */
.date-banner {
    background: linear-gradient(180deg, #fcf7f3, #dec896);
    font-size: 1.7rem;
    padding: 15px 15px;
    border:5px solid #caa64e;
    color: #201851;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 40px auto;
    max-width: fit-content;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.2;
}

.download-btn {
    background: linear-gradient(180deg, #ce301d, #75160f);
    font-size: 1.8rem;
    padding: 20px 40px;
    border: 2px solid white;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    font-weight: 900;
    
    max-width: fit-content;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block; /* Importante per i link */
}

.download-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
    text-decoration: none; /* Rimuove underline al hover */
    color: #fff; /* Mantiene il colore bianco */
}

/* Rotating Rays - Bianchi trasparenti larghi quanto la pagina */
.rotating-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    z-index: 5;
    animation: rotateRays 8s linear infinite;
    opacity: 0.3;
}

@keyframes rotateRays {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Raggi bianchi trasparenti */
.rotating-rays defs linearGradient stop {
    stop-color: #ffffff !important;
}

/* Action Buttons - Stile glassmorphism */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.action-btn {
    position: relative;
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 220px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, .25) 0%,
        rgba(255, 215, 0, 0) 50%,
        rgba(255, 215, 0, .25) 100%
    );
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}


.action-btn h5 {
    margin-bottom: 0px;
    font-weight: 900;
    font-size: 2.15rem;
    background: linear-gradient(180deg, #e8d5ad 0%, #e0c78f 50%, #c6a554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
 
}

.action-btn p {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.action-btn small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Prizes Section */
.prizes-section {
   
    backdrop-filter: blur(15px);
    border-radius: 25px;
    
    margin: 50px 0;
    
}

.prizes-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(180deg, #e8d5ad 0%, #e0c78f 50%, #c6a554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
  
    
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
}

.prize-item {
    font-size: 2.2rem;
    background: linear-gradient(180deg, #e8d5ad 0%, #e0c78f 50%, #c6a554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
   
}
.prize-item .fs-1{font-size: 3rem !important;font-family: "Roboto", sans-serif;letter-spacing: -2.5px;font-weight: 900; }

.prize-item .text-white{color: white !important; background:white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

.final-prize {
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
    margin-top: 30px;
    line-height: 1.3;
  
}

.final-prize-highlight {
    font-size: 2.8rem;
    background: linear-gradient(180deg, #e8d5ad 0%, #e0c78f 50%, #c6a554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: block;
    margin-top: 15px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
   
}

.prize-logos {
    margin-top: 30px;
    width:200px;
    justify-content: center;margin: 20px auto;
    align-items: center;border-radius: 10px;overflow: hidden; 
    gap: 30px;
}

.prize-logos img {
    width:100%;height: 100%;
}

/* Brands Section */
.brands-section {
    
    padding: 60px 0;
    margin-top: 0;
}

.brands-disclaimer {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-item {
    background: #fff;
    height:auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
    overflow: hidden;
}
.brand-item a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.brand-item img{width: 100%;height:100%;object-fit: cover;}



.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prizes-title { 
        font-size: 2.2rem; 
    }
    
    .prize-item {
        font-size: 1.8rem;
    }
    
    .final-prize-highlight {
        font-size: 2.2rem;
    }
    
    .brand-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .action-buttons { 
        flex-direction: column; 
        align-items: center;
        gap: 20px;
    }
    
    .action-btn {
        min-width: 280px;
    }
    .download-btn{    font-size: 1.2rem;}
   /* CSS per raggi perfetti e lenti */
.rotating-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    z-index: 5;
    animation: rotateRaysSlowly 60s linear infinite; /* MOLTO più lento - 60 secondi */
    opacity: 0.6;
    pointer-events: none;
}

@keyframes rotateRaysSlowly {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive per raggi */
@media (max-width: 768px) {
    .rotating-rays {
        width: 200vw;
        height: 200vw;
        animation: rotateRaysSlowly 80s linear infinite; /* Ancora più lento su mobile */
    }
}

@media (max-width: 480px) {
    .rotating-rays {
        width: 250vw;
        height: 250vw;
        animation: rotateRaysSlowly 100s linear infinite; /* Lentissimo su mobile */
        opacity: 0.4;
    }
}
    
    .date-banner {
        font-size: 1.7rem;
        padding: 15px 25px;
        border:2px solid #caa64e;
        color: #201851;
    }
    
    .badge-50, .badge-25-1, .badge-25-2 {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
   .brands-section{
    padding: 30px 0 60px 0px;
   }
    .sparkle {
        display: none;
    }
    
   
}