/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🎯 HERO SECTION - CTA & Effects
   ========================= */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Countdown Timer */
.countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
}

/* Limited-Time Offer Badge */
.limited-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🎯 HERO SECTION - CTA & Effects
   ========================= */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Countdown Timer */
.countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
}

/* Limited-Time Offer Badge */
.limited-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* =========================
   🚀 CLAIM NOW SECTION - Live Counter & Social Links
   ========================= */

.social-links {
    text-align: center;
    padding: 50px 20px;
}

/* Live User Counter */
.live-counter {
    font-size: 18px;
    font-weight: bold;
    color: lightgreen;
    background: rgba(0, 255, 0, 0.1);
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Social Media Buttons */
.social-links a {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🎯 HERO SECTION - CTA & Effects
   ========================= */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Countdown Timer */
.countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
}

/* Limited-Time Offer Badge */
.limited-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* =========================
   🛠️ HOW TO CLAIM SECTION - Expandable Steps
   ========================= */

.how-to {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.claim-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.claim-step:hover {
    background: rgba(255, 255, 255, 0.2);
}

.step-btn {
    background: none;
    border: none;
    color: gold;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 10px;
}

.step-content {
    display: none;
    padding: 10px;
    color: #ddd;
}

.step-btn::after {
    content: ' ➕';
    float: right;
}

/* Later, JavaScript will handle expanding and collapsing steps */

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🎯 HERO SECTION - CTA & Effects
   ========================= */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Countdown Timer */
.countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
}

/* Limited-Time Offer Badge */
.limited-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* =========================
   📩 EMAIL SIGNUP SECTION - Clean Form & Effects
   ========================= */

.email-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-signup input {
    width: 80%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid gold;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

.email-signup button {
    background: gold;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.email-signup button:hover {
    background: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Confirmation Message */
#confirmation-message {
    color: lightgreen;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: none;
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🎯 HERO SECTION - CTA & Effects
   ========================= */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Countdown Timer */
.countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
}

/* Limited-Time Offer Badge */
.limited-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* =========================
   ❓ FAQ SECTION - Collapsible Questions
   ========================= */

.faq {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-question {
    background: none;
    border: none;
    color: gold;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 10px;
}

.faq-answer {
    display: none;
    padding: 10px;
    color: #ddd;
}

.faq-question::after {
    content: ' ➕';
    float: right;
}

/* JavaScript will handle expanding and collapsing FAQ answers */

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🎯 HERO SECTION - CTA & Effects
   ========================= */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    background: gold;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Countdown Timer */
.countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
}

/* Limited-Time Offer Badge */
.limited-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* =========================
   📌 FOOTER - Clean & Professional
   ========================= */

footer {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: gold;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-shadow: 0 0 10px gold;
}

html { 
    scroll-behavior: smooth; 
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: gold;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: none;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        text-align: center;
    }

    .navbar ul li {
        padding: 10px 0;
    }

    .hero {
        padding: 80px 15px;
    }

    .cta-button {
        font-size: 18px;
        padding: 12px 20px;
    }

    section {
        padding: 50px 15px;
    }
}

/* =========================
   🎥 HOW IT WORKS VIDEO - Styling
   ========================= */
   
   .how-it-works {
    text-align: center;
    padding: 50px 20px;
}

.how-it-works h2 {
    font-size: 26px;
    font-weight: bold;
    color: gold;
    text-shadow: 0 0 10px gold;
}

.how-it-works p {
    font-size: 18px;
    font-weight: normal;
    color: white;
    max-width: 700px;
    margin: 10px auto;
}

/* Video Styling */
.video-container {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

video {
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
}

/* Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* JavaScript will toggle this */
    transition: 0.3s;
}

.play-button:hover {
    background: rgba(255, 215, 0, 0.8);
}

.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

video {
    width: 100%;
    height: auto;
    max-width: 700px;
}

.limited-offer {
    position: relative; /* Keeps it part of the normal document flow */
    margin-top: 60px; /* Adjust based on navbar height */
    background: #ff5733;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
}

.how-it-works-img {
    width: 80px; /* Adjust size */
    display: block;
    margin: 10px auto 20px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.how-it-works-img {
    width: 120px; /* Bigger size */
    height: auto;
    display: block;
    margin: 15px auto 25px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)); /* Glowing effect */
    animation: popIn 0.6s ease-in-out;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   📢 ABOUT US SECTION - Enhanced Styling
   ========================= */

.about-us {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-in-out;
}

.about-us h2 {
    font-size: 28px;
    color: gold;
    text-shadow: 0 0 10px gold;
    animation: glow 1.5s infinite alternate;
}

.about-us p {
    font-size: 18px;
    color: #f8f8f8;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1s ease-in-out;
}

/* Read More Button Styling */
.read-more-btn {
    background: gold;
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: inline-block;
    margin-top: 15px;
}

.read-more-btn:hover {
    background: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow {
    from { text-shadow: 0 0 10px gold; }
    to { text-shadow: 0 0 20px gold; }
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   📢 ABOUT US SECTION - Enhanced Styling
   ========================= */

.about-us, .contact {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-in-out;
}

.about-us h2, .contact h2 {
    font-size: 28px;
    color: gold;
    text-shadow: 0 0 10px gold;
    animation: glow 1.5s infinite alternate;
}

.about-us p, .contact p {
    font-size: 18px;
    color: #f8f8f8;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1s ease-in-out;
}

/* Read More Button Styling */
.read-more-btn {
    background: gold;
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: inline-block;
    margin-top: 15px;
}

.read-more-btn:hover {
    background: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow {
    from { text-shadow: 0 0 10px gold; }
    to { text-shadow: 0 0 20px gold; }
}

/* SOCIAL MEDIA BUTTONS */
.social-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: 0.3s ease-in-out;
}

.social-btn i {
    margin-right: 8px;
    font-size: 22px;
}

.facebook {
    background: #1877F2;
    color: white;
}

.facebook:hover {
    background: #0d5fd3;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.7);
}

.instagram {
    background: #E1306C;
    color: white;
}

.instagram:hover {
    background: #bd1f57;
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.7);
}

/* Live Counter Styling */
.live-counter {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.offer-amount {
    color: gold;
    font-weight: bold;
    font-size: 24px;
    text-shadow: 0 0 10px gold;
}

/* Claim Steps Section */
.claim-step {
    margin-bottom: 15px;
    text-align: center;
}

/* Step Buttons */
.step-btn {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: black;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    width: 100%;
    text-align: center;
}

.step-btn:hover {
    background: linear-gradient(90deg, #ff9900, #ff6600);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.7);
}

/* Step Content (Initially Hidden) */
.step-content {
    font-size: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.hidden {
    display: block; /* Keep block for animation */
    max-height: 0;
}

.spin-btn {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: black;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin: auto;
}

.spin-btn:hover {
    background: linear-gradient(90deg, #ff9900, #ff6600);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.7);
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   ⭐ TESTIMONIALS SECTION - Modern Style
   ========================= */

.testimonials {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-in-out;
    max-width: 800px;
    margin: auto;
}

.testimonials h2 {
    font-size: 28px;
    color: gold;
    text-shadow: 0 0 10px gold;
    animation: glow 1.5s infinite alternate;
}

.testimonial {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: bold;
    color: #ffcc00;
    margin-top: 10px;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from { text-shadow: 0 0 10px gold; }
    to { text-shadow: 0 0 20px gold; }
}

/* Testimonial Container */
.testimonial-container {
    position: relative;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* Navigation Buttons */
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: gold;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* Positioning: Left & Right */
.testimonial-prev {
    left: -50px;
}

.testimonial-next {
    right: -50px;
}

/* Hover Effects */
.testimonial-prev:hover, .testimonial-next:hover {
    background: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* Ensure buttons don’t cover text on small screens */
@media (max-width: 768px) {
    .testimonial-prev, .testimonial-next {
        left: 10px;
        right: 10px;
        top: 90%;
        transform: translateY(0);
    }
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* =========================
   🔥 GLOBAL STYLES - Modern Look
   ========================= */

/* Smooth, modern font setup */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

/* Gold Border Effect for Key Sections */
.gold-border {
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    padding: 20px;
}

/* Smooth Heading Styling */
h1, h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links Styling */
a {
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px gold;
}

/* =========================
   🌐 NAVIGATION MENU - Modern Look
   ========================= */

.navbar {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    max-width: 800px;
    margin: auto;
    animation: fadeInUp 1s ease-in-out;
}

/* Testimonial Bubble Effect */
.testimonial {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    margin: 15px auto;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    max-width: 600px;
    position: relative;
    text-align: left;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

/* Speech Bubble Arrow */
.testimonial::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid rgba(0, 0, 0, 0.8);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

/* Testimonial Author */
.testimonial-author {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #ffcc00;
    text-align: right;
    font-size: 14px;
}

/* Fade-in Effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LIVE Recent Payouts Section */
.recent-payouts {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    margin: auto;
    max-width: 800px;
    overflow: hidden;
}

/* Scrolling Effect */
.payout-marquee {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    overflow: hidden;
    animation: scrollLeft 15s linear infinite;
    font-size: 16px;
    font-weight: bold;
    color: gold;
}

/* Scrolling Animation */
@keyframes scrollLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Make Everything Fit on Small Screens */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    /* Fix Navigation Menu on Small Screens */
    .navbar ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Make Buttons Bigger for Touch Screens */
    .cta-button, .step-btn, .spin-btn {
        font-size: 18px;
        padding: 15px;
    }

    /* Fix Scrolling Payouts for Mobile */
    .payout-marquee {
        font-size: 14px;
        gap: 15px;
        animation-duration: 30s; /* Slow down scrolling for readability */
    }

    /* Testimonial Chat Bubbles Smaller on Mobile */
    .testimonial {
        font-size: 14px;
        padding: 10px;
    }

    /* Fix Hero Section Text & Buttons */
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* General Fixes */
.how-it-works {
    padding-top: 80px; /* Ensure section is not hidden under navbar */
}

/* Fix Navigation Scroll Issue */
nav a[href="#how-it-works"] {
    scroll-behavior: smooth;
}

/* Adjust Button Styling */
.step-btn, .claim-btn, .next-btn {
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    display: block;
    margin: 10px auto;
}

/* Improve Readability */
.how-it-works h2, .gold-border h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Fix Overlapping Issue */
.claim-rewards {
    position: relative;
    z-index: 10;
}

/* Center & Resize Next Button */
.next-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    margin: 20px auto;
    background: linear-gradient(to right, #FFD700, #FFA500);
    font-weight: bold;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .gold-border h2 {
        font-size: 18px;
    }
    .next-btn {
        width: 90%;
    }
}

/* Fix for Previous and Next buttons */
.previous-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    z-index: 10;
}

.previous-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Ensure proper spacing on smaller screens */
@media (max-width: 768px) {
    .previous-btn, .next-btn {
        font-size: 16px;
        padding: 8px 12px;
    }
}

/* Ensure the navigation buttons don't overlap text */
.prev-next-container {
    position: relative; /* Keeps buttons inside their section */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.navigation-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* Ensures they don't interfere with content */
}

body {
    padding-top: 60px; /* Adjust based on menu height */
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Darker background for contrast */
    padding: 10px 0;
    text-align: center;
    z-index: 9999; /* Ensure it's above everything */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px; /* Add spacing between items */
}

nav ul li {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li:hover {
    background-color: rgba(255, 165, 0, 0.8); /* Highlight on hover */
    border-radius: 8px;
}

.limited-time-offer {
    background: linear-gradient(45deg, #ff5733, #ffcc29); /* Gradient background */
    color: #fff; /* White text */
    font-family: 'Poppins', sans-serif; /* Stylish font */
    font-size: 20px; /* Larger text */
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 87, 51, 0.7); /* Glow effect */
    
    /* Animation */
    animation: pulseGlow 1.5s infinite alternate;
}

/* Glow Pulse Animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255, 87, 51, 0.7); }
    100% { box-shadow: 0 0 20px rgba(255, 87, 51, 1); }
}

.limited-offer {
    background: linear-gradient(45deg, #ff5733, #ffcc29); /* Gradient from red to gold */
    color: #fff; /* White text */
    font-family: 'Poppins', sans-serif; /* Modern, stylish font */
    font-size: 20px; /* Make it large */
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 87, 51, 0.7); /* Glow effect */
    
    /* Animation */
    animation: pulseGlow 1.5s infinite alternate;
}

/* Fix Display Issues */
.limited-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Glow Pulse Animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255, 87, 51, 0.7); }
    100% { box-shadow: 0 0 20px rgba(255, 87, 51, 1); }
}

/* Fix the menu position */
.menu {
    position: fixed;  /* Keeps it at the top */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;  /* Adjust height as needed */
    background: rgba(0, 0, 0, 0.9); /* Dark background */
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 60px;  /* Center text vertically */
    z-index: 1000;  /* Make sure it stays above everything */
}

/* Push content below the menu */
body {
    padding-top: 70px; /* Adjust this based on your menu height */
}

html, body {
    overflow-x: hidden; /* Stops side scrolling */
    max-width: 100vw;
}

/* Default Menu Styling */
.navbar ul li {
    font-size: 18px; /* Normal size for desktop */
}

/* Smaller Font for Mobile */
@media (max-width: 768px) {
    .navbar ul li {
        font-size: 14px; /* Reduce font size on smaller screens */
    }
}
