/* Hero Section */
.prizes-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.03) 0%, rgba(0, 168, 232, 0.05) 100%);
    
    position: relative;
    overflow: hidden;
}

.prizes-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
    z-index: -1;
}

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

.prizes-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite alternate;
}

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

.prizes-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-dark);
    opacity: 0.9;
    font-weight: 500;
}

/* Sparkles animation - now in CSS */
.hero-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-sparkles .sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--sparkle);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s infinite;
}

.hero-sparkles .sparkle:nth-child(1) {
    left: 10%; top: 20%; animation-delay: 0.5s; animation-duration: 3s;
}
.hero-sparkles .sparkle:nth-child(2) {
    left: 25%; top: 40%; animation-delay: 1.2s; animation-duration: 2.5s;
}
.hero-sparkles .sparkle:nth-child(3) {
    left: 40%; top: 15%; animation-delay: 0.8s; animation-duration: 3.2s;
}
.hero-sparkles .sparkle:nth-child(4) {
    left: 55%; top: 30%; animation-delay: 1.5s; animation-duration: 2.8s;
}
.hero-sparkles .sparkle:nth-child(5) {
    left: 70%; top: 25%; animation-delay: 0.3s; animation-duration: 3.5s;
}
.hero-sparkles .sparkle:nth-child(6) {
    left: 85%; top: 35%; animation-delay: 2s; animation-duration: 2.7s;
}
.hero-sparkles .sparkle:nth-child(7) {
    left: 30%; top: 60%; animation-delay: 1.8s; animation-duration: 3s;
}
.hero-sparkles .sparkle:nth-child(8) {
    left: 45%; top: 70%; animation-delay: 0.7s; animation-duration: 2.9s;
}
.hero-sparkles .sparkle:nth-child(9) {
    left: 60%; top: 65%; animation-delay: 1.1s; animation-duration: 3.1s;
}
.hero-sparkles .sparkle:nth-child(10) {
    left: 75%; top: 75%; animation-delay: 0.4s; animation-duration: 2.6s;
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(2); }
    100% { opacity: 0; transform: scale(0); }
}

/* Floating coins animation - now in CSS */
.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-coins .coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23FFD700"/><circle cx="12" cy="12" r="8" fill="%23FFC000"/><path d="M12 4C15 4 15 8 15 12C15 16 15 20 12 20C9 20 9 16 9 12C9 8 9 4 12 4Z" fill="%23E6B800"/></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Prizes Section */
.prizes-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.prize-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.prize-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.prize-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--box-shadow-lg);
}

.prize-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--primary);
    transition: var(--transition);
    display: inline-block;
}

.prize-card:hover .prize-icon {
    transform: rotate(10deg) scale(1.1);
    color: var(--secondary);
}

.prize-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.prize-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Rewards Tiers */
.tiers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.03) 0%, rgba(0, 168, 232, 0.05) 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 50px;
    font-weight: 500;
}

.tiers-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tier-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: var(--transition);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.digital-badge {
    background: rgba(0, 168, 232, 0.1);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.cash-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.status-badge {
    background: rgba(106, 17, 203, 0.1);
    color: #6a11cb;
    border: 1px solid #6a11cb;
}

.tier-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 232, 0.05);
    border-radius: 50%;
    padding: 10px;
}

.tier-icon img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tier-name {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.tier-name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.payment-methods img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.tier-rewards {
    margin: 30px 0;
    list-style: none;
    text-align: left;
}

.tier-rewards li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
}

.tier-rewards li::before {
    content: "✓";
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

.tier-rewards li span {
    position: relative;
    top: -2px;
}

.tier-points {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.points-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.points-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Featured Card */
.tier-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    animation: pulse 2s infinite;
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(-45deg);
    width: 120px;
    text-align: center;
}

/* Points Info */
.points-info {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 15px 20px;
    background: rgba(0, 168, 232, 0.05);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.points-info p {
    margin: 0;
}

.info-icon {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .tiers-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-card {
        max-width: 100%;
    }
    
    .tier-card.featured {
        transform: none;
    }
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23f5f7fa" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') no-repeat bottom center;
    background-size: 100% 50px;
    margin-bottom: -1px;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.5rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}



/* Winner Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.03) 0%, rgba(0, 168, 232, 0.05) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 168, 232, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* Header scroll effect - now in CSS */
@media (min-width: 769px) {
    body {
        padding-top: 80px;
    }
    
    header {
        padding: 10px 0;
        background: rgba(10, 26, 47, 0.95);
    }
    
    header.scrolled {
        padding: 5px 0;
        background: rgba(10, 26, 47, 0.98);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .prizes-hero h1 {
        font-size: 2.5rem;
    }
    
    .tiers-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-card {
        max-width: 100%;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }

    .steps-container::before {
        left: 25px;
    }
    
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 8px 0;
        background: rgba(10, 26, 47, 0.98);
    }
}