 /* Reset and Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary: #2563eb;
     --primary-dark: #1d4ed8;
     --secondary: #10b981;
     --accent: #f59e0b;
     --dark: #1f2937;
     --light: #f9fafb;
     --gray: #6b7280;
     --gray-light: #e5e7eb;
     --border-radius: 12px;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     line-height: 1.6;
     color: var(--dark);
     /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
     min-height: 100vh;
     position: relative;
 }

 
/* =========================
   HEADER BACKGROUND
========================= */
.year-header {
    /* background: #000; */
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;   
}

/* YEAR CONTAINER */
.year-2026 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font: bold 170px/170px "Google Sans", sans-serif;
    perspective: 2000px;
    cursor: pointer;
}

/* YEAR BLOCK */
.year-2026 li {
    width: 100px;
    height: 150px;
    background: #8b0000;
    color: #fff;
    margin-right: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotateY(-10deg) rotate(-6deg);
    box-shadow: 0 0 30px #111;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* EVEN BLOCK ROTATION */
.year-2026 li:nth-child(even) {
    /* background: #b30000; */
    background: #8b0000;
    transform: rotateY(-10deg) rotate(7deg);
}

/* HOVER NUMBER (2026) */
.year-2026 li::after {
    content: attr(data-num);
    position: absolute;
    inset: 0;
    /* background: #ff1a1a; */
    background: #8b0000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.year-2026:hover li {
    margin-right: 15px;
    transform: rotateY(0deg) rotate(0deg);
    box-shadow: 0 0 40px #000;
}

.year-2026:hover li::after {
    transform: translateY(0);
}

/* STAGGER EFFECT */
.year-2026 li:nth-child(1)::after { transition-delay: 0.05s; }
.year-2026 li:nth-child(2)::after { transition-delay: 0.1s; }
.year-2026 li:nth-child(3)::after { transition-delay: 0.15s; }
.year-2026 li:nth-child(4)::after { transition-delay: 0.2s; }

/* Mobile Size Start Here */
@media (max-width: 600px) {

    .year-header {
        min-height: 160px;
    }

    .year-2026 {
        font-size: 90px;
        line-height: 90px;
        perspective: 800px;
    }

    .year-2026 li {
        width: 65px;
        height: 90px;
        margin-right: -8px;
        transform: rotateY(-6deg) rotate(-3deg);
    }

    .year-2026 li:nth-child(even) {
        transform: rotateY(-6deg) rotate(3deg);
    }

    .year-2026:hover li {
        margin-right: 6px;
        transform: rotateY(0deg) rotate(0deg);
    }
}

 /* =========================
   BACKGROUND VIDEO STYLES
========================= */

 .video-bg {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     overflow: hidden;
 }

 .video-bg video {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Dark overlay for readability */
 .video-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.45);
     z-index: -1;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 /* Header */
 .header {
     background: white;
     border-radius: var(--border-radius);
     padding: 24px;
     margin-bottom: 24px;
     box-shadow: var(--shadow);
     justify-content: space-between;
     align-items: center;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: nowrap;
     gap: 10px;
     overflow-x: hidden;
 }

 .logo a {
     display: flex;
     align-items: center;
     gap: 14px;
     text-decoration: none;
     color: #fff;
 }

 /* AMAZON STYLE BADGE */
 .gift-badge {
     background: linear-gradient(145deg, #1c1c1c, #000);
     padding: 8px 14px;
     border-radius: 10px;
     border: 2px solid #fbbf24;
     text-align: center;
     min-width: 90px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
 }

 .gift-amount {
     font-size: 40px;
     font-weight: 800;
     color: #ffb703;
     line-height: 1;
     /* margin-left: 20px; */
     margin: 0;
 }

 .gift-brand {
     font-size: 18px;
     font-weight: 700;
     color: #ffffff;
     letter-spacing: 0.5px;
     /* margin-right: 40px; */
     margin: 0;
     /* text-transform: uppercase; */
 }

 @media (max-width: 600px) {

     .gift-badge {
         padding: 6px 10px;
         border-radius: 8px;
     }

     .gift-amount {
         font-size: 22px;
         margin: 0;
     }

     .gift-brand {
         font-size: 13px;
         margin: 0;
     }

     .logo {
         flex-shrink: 1;
     }
 }
  .reward-badge.luxury {
    position: relative;
    padding: 14px 30px;
    border-radius: 50px;
    color: #1a1a2e;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

/* ✨ Gold Foil Gradient Background */
.reward-badge.luxury .gold-foil {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #f9d77e 0%, 
            #fbbf24 15%, 
            #f59e0b 35%, 
            #d97706 55%, 
            #fbbf24 75%, 
            #fcd34d 100%);
    background-size: 300% 300%;
    animation: foilShine 4s ease infinite;
    z-index: -2;
}

@keyframes foilShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ✨ Metallic Texture Overlay */
.reward-badge.luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.08) 2px,
            rgba(255, 255, 255, 0.08) 4px
        ),
        radial-gradient(ellipse at top, rgba(255,255,255,0.3) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* 🎊 Confetti Animation */
.reward-badge.luxury .confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 50px;
}

.reward-badge.luxury .confetti-piece {
    position: absolute;
    width: 6px;
    height: 10px;
    background: #fff;
    opacity: 0.9;
    animation: confettiFall 3s infinite linear;
    border-radius: 1px;
}

.reward-badge.luxury .confetti-piece:nth-child(1) { left: 10%; animation-delay: 0s; background: #fbbf24; transform: rotate(15deg); }
.reward-badge.luxury .confetti-piece:nth-child(2) { left: 30%; animation-delay: 0.5s; background: #6366f1; width: 4px; height: 8px; }
.reward-badge.luxury .confetti-piece:nth-child(3) { left: 55%; animation-delay: 1s; background: #ec4899; transform: rotate(-10deg); }
.reward-badge.luxury .confetti-piece:nth-child(4) { left: 75%; animation-delay: 1.5s; background: #10b981; width: 5px; height: 12px; }
.reward-badge.luxury .confetti-piece:nth-child(5) { left: 90%; animation-delay: 2s; background: #fbbf24; transform: rotate(25deg); }

@keyframes confettiFall {
    0% { 
        top: -20px; 
        opacity: 1; 
        transform: translateY(0) rotate(0deg); 
    }
    100% { 
        top: 120%; 
        opacity: 0; 
        transform: translateY(100px) rotate(720deg); 
    }
}

/* ✨ Text Styling - Dark on Gold */
.reward-badge.luxury .badge-text {
    color: #1a1a2e;
}

.reward-badge.luxury .badge-text strong {
    color: #78350f;
    font-size: 18px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
}

/* ✨ Icon with Gold Glow */
.reward-badge.luxury .badge-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    animation: trophyBounce 2s ease infinite;
}

@keyframes trophyBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

/* ✨ Hover: Lift + Confetti Burst */
.reward-badge.luxury:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.reward-badge.luxury:hover .confetti-piece {
    animation-duration: 1.5s;
}

@media (max-width: 600px) {
    .reward-badge .luxury {
        padding: 10px 20px !important;
        font-size: 12px !important;
        gap: 6px !important;
        border-radius: 40px !important;
    }
    
    .badge-icon { font-size: 16px !important; }
    .badge-text strong { font-size: 15px !important; }
    
    /* Reduce heavy animations on mobile for performance */
    .particle, .confetti-piece, .sparkles span {
        animation-duration: 2s !important;
    }
}

 /* Main Content */
 .main-content {
     display: grid;
     grid-template-columns: 1fr;
     gap: 24px;
 }

 @media (min-width: 1024px) {
     .main-content {
         grid-template-columns: 2fr 1fr;
     }
 }

 /* Hero Section */
 .hero-card {
     background: white;
     border-radius: var(--border-radius);
     padding: 40px;
     box-shadow: var(--shadow);
 }

 .hero-title {
     font-size: 42px;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 16px;
     background: linear-gradient(135deg, var(--primary), #7c3aed);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-align: center;
     align-items: center;
     justify-content: center;
 }

 .hero-subtitle {
     font-size: 20px;
     color: var(--gray);
     margin-bottom: 32px;
     text-align: center;
     align-items: center;
     justify-content: center;
 }

 .progress-container {
     margin: 32px 0;
 }

 .progress-label {
     display: flex;
     justify-content: space-between;
     margin-bottom: 8px;
     font-weight: 600;
 }

 .progress-bar {
     height: 10px;
     background: var(--gray-light);
     border-radius: 5px;
     overflow: hidden;
 }

 .progress-fill {
     height: 100%;
     background: linear-gradient(90deg, var(--secondary), var(--accent));
     width: 0%;
     transition: width 1s ease;
 }

 /* Form */
 .form-card {
     background: white;
     border-radius: var(--border-radius);
     padding: 32px;
     box-shadow: var(--shadow);
 }

 .form-title {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 24px;
     color: var(--dark);
 }

 .country-select {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     padding-right: 42px;
     background-color: rgba(255, 255, 255, 0.9);

     background-image:
         linear-gradient(45deg, transparent 50%, #6b7280 50%),
         linear-gradient(135deg, #6b7280 50%, transparent 50%);
     background-position:
         calc(100% - 18px) center,
         calc(100% - 12px) center;
     background-size: 6px 6px;
     background-repeat: no-repeat;
     font-family: system-ui, -apple-system, BlinkMacSystemFont,
         "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji",
         sans-serif;
 }

 .country-select,
 .country-select option {
     font-family: "Segoe UI Emoji",
         "Apple Color Emoji",
         "Noto Color Emoji",
         system-ui,
         sans-serif;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: var(--dark);
 }

 .form-input {
     width: 100%;
     padding: 14px 16px;
     border: 2px solid var(--gray-light);
     border-radius: var(--border-radius);
     font-size: 16px;
     transition: var(--transition);
 }

 .form-input:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 16px 32px;
     font-size: 18px;
     font-weight: 600;
     border: none;
     border-radius: var(--border-radius);
     cursor: pointer;
     transition: var(--transition);
     text-decoration: none;
     width: 100%;
     margin-top: 8px;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
 }

 .btn-secondary {
     background: var(--light);
     color: var(--dark);
     border: 2px solid var(--gray-light);
 }

 .btn-secondary:hover {
     background: var(--gray-light);
 }

 .success-message {
     background: #ecfdf5;
     color: #065f46;
     border: 1px solid #10b981;
     padding: 14px 16px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 15px;
     font-weight: 500;
     text-align: center;
 }


 /* Stats */
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     margin-top: 32px;
 }

 .stat-card {
     background: white;
     padding: 24px;
     border-radius: var(--border-radius);
     text-align: center;
     box-shadow: var(--shadow);
 }

 .stat-value {
     font-size: 36px;
     font-weight: 800;
     color: var(--primary);
     margin-bottom: 8px;
 }

 .stat-label {
     color: var(--gray);
     font-size: 14px;
 }

 /* How It Works */
 .steps-container {
     margin-top: 40px;
 }

 .step {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     margin-bottom: 32px;
     padding: 24px;
     background: white;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
 }

 .step-number {
     background: var(--primary);
     color: white;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     flex-shrink: 0;
 }

 /* Modal */
 body.modal-open .container {
     filter: blur(6px);
     transition: 0.3s ease;
 }

 .modal {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.55);
     backdrop-filter: blur(8px);
     /* display: flex comments krne pr refresh krne pr baar baar card nhi aayega */
     /* display: flex; */
     justify-content: center;
     align-items: center;
     z-index: 1000;
 }


 .modal-content {
     background: linear-gradient(135deg, #ffffff, #f8fafc);
     padding: 40px;
     border-radius: 20px;
     max-width: 520px;
     width: 90%;
     position: relative;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
     animation: modalFadeIn 0.35s ease;
 }


 .modal-close {
     position: absolute;
     top: 18px;
     right: 18px;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     font-size: 22px;
     background: var(--gray-light);
     border: none;
     cursor: pointer;
     color: var(--dark);
     transition: 0.2s;
 }

 .modal-close:hover {
     background: var(--primary);
     color: #fff;
 }

 @keyframes modalFadeIn {
     from {
         opacity: 0;
         transform: scale(0.92) translateY(20px);
     }

     to {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }



 /* Footer */
 .footer {
     margin-top: 60px;
     padding: 40px 0;
     color: white;
     text-align: center;
 }

 .footer-links {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 24px;
     margin-bottom: 24px;
 }

  .footer-link {
     color: #FACC15;
     text-decoration: none;
     opacity: 0.8;
     transition: var(--transition);
 }

 .footer-link:hover {
     opacity: 1;
     text-decoration: underline;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 32px;
     }

     .header {
         flex-direction: column;
         gap: 16px;
         text-align: center;
     }

     .hero-card,
     .form-card {
         padding: 24px;
     }
 }

 /* Survey Section */
 .survey-step {
     color: var(--primary);
     font-weight: 600;
     margin-bottom: 12px;
     text-align: center;
     justify-content: center;
     align-items: center;
 }

 .survey-question {
     font-size: 26px;
     font-weight: 700;
     margin-bottom: 30px;
     text-align: center;
     justify-content: center;
     align-items: center;
 }

 .survey-options {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .survey-btn {
     padding: 16px;
     font-size: 18px;
     font-weight: 600;
     border-radius: 50px;
     border: none;
     cursor: pointer;
     background: var(--primary);
     color: #fff;
     transition: all 0.3s ease;
 }

 .survey-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
 }

 /* =========================
   REWARD INFO SECTION
========================= */

 .reward-info-section {
     margin: 40px auto;
     padding: 0;
 }

 /* MAIN CARD (SINGLE CONTAINER) */
 .reward-info-card {
     background: linear-gradient(135deg, #ecfdf5, #d1fae5);
     width: 100%;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
     border-top: 6px solid var(--secondary);
     overflow: hidden;
     /* IMPORTANT: merge effect */
 }

 /* TOP (LIGHT PART) */
 .reward-info-title {
     font-size: 28px;
     font-weight: 800;
     color: var(--dark);
     margin: 0 0 16px;
     padding: 50px 50px 0;
     text-align: center;
 }

 .reward-info-text {
     font-size: 16px;
     color: var(--gray);
     max-width: 700px;
     margin: 0 auto 30px;
     line-height: 1.7;
     padding: 0 50px;
     text-align: center;
 }

 .reward-features {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 30px;
     flex-wrap: wrap;
     padding: 0 50px;
 }

 .reward-feature {
     display: flex;
     align-items: center;
     gap: 10px;
     background: #ffffff;
     padding: 12px 20px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 14px;
     box-shadow: var(--shadow);
 }

 .reward-feature span {
     font-size: 18px;
 }

 .reward-btn {
     display: block;
     max-width: 260px;
     margin: 0 auto 40px;
     text-align: center;
     justify-content: center;
     align-items: center;
 }

 /* =========================
   EXTRA REWARDS (BOTTOM DARK PART)
========================= */

 .extra-rewards-section {
     background: radial-gradient(circle at top, #222, #000);
     padding: 60px;
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 50px;
     color: #fff;
 }

 /* LEFT CONTENT */
 .extra-left h2 {
     font-size: 36px;
     font-weight: 800;
     margin-bottom: 20px;
 }

 .extra-left p {
     color: #d1d5db;
     line-height: 1.7;
     margin-bottom: 16px;
 }

 .extra-btn {
     display: inline-block;
     margin-top: 25px;
     padding: 14px 32px;
     border-radius: 50px;
     border: 2px solid #facc15;
     color: #facc15;
     font-weight: 600;
     text-decoration: none;
     transition: 0.3s;
 }

 .extra-btn:hover {
     background: #facc15;
     color: #000;
 }

 /* RIGHT TABLE */
 .reward-table {
     background: #1a1a1a;
     border-radius: 20px;
     padding: 30px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     text-align: center;
 }

 .table-col {
     display: flex;
     flex-direction: column;
     gap: 14px;
     font-size: 16px;
 }

 .table-head {
     font-size: 13px;
     letter-spacing: 1px;
     color: #9ca3af;
     margin-bottom: 10px;
 }

 .table-col span {
     font-weight: 500;
 }

 .table-col.highlight {
     border: 2px solid #facc15;
     border-radius: 16px;
     padding: 20px 10px;
 }

 .table-col.highlight span {
     font-weight: 700;
     color: #facc15;
 }

 /* =========================
   RESPONSIVE
========================= */
 @media (max-width: 900px) {
     .extra-rewards-section {
         grid-template-columns: 1fr;
         padding: 40px 25px;
     }

     .reward-info-title,
     .reward-info-text,
     .reward-features {
         padding-left: 25px;
         padding-right: 25px;
     }
 }
 