:root {
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --gold: #ffd700;
    --gold-gradient: linear-gradient(45deg, #f1c40f, #f39c12, #fff4bd, #f1c40f);
    --glass: rgba(255, 255, 255, 0.1);
    --neon-blue: #00f3ff;
    --neon-green: #00ff88;
    --text-white: #ffffff;
    --danger-light: #ff6b6b;

    /* Tier Colors */
    --iron: #a0aec0;
    --silver: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ANIMATIONS */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image: radial-gradient(#ffffff 1px, transparent 1px), radial-gradient(#ffd700 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

/* TICKER */
.ticker-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    background: #000;
    z-index: 2000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gold);
    overflow: hidden;
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: var(--gold);
    padding: 0 2rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.ticker-item i {
    color: var(--neon-blue);
    margin-right: 5px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* HEADER */
header {
    position: fixed;
    top: 40px;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-item {
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-item:hover {
    color: var(--gold);
}

.btn-download {
    background: var(--gold-gradient);
    color: #000;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
    transition: 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.6);
}

/* HERO */
.hero {
    position: relative;
    padding: 180px 5% 100px;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    display: block;
    font-size: 5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 40px;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--gold);
    opacity: 0.3;
}

.icon-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    color: var(--neon-blue);
    opacity: 0.3;
}

.icon-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
    font-size: 4rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* SECTIONS COMMON */
.section {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.section-header p {
    color: #94a3b8;
}

/* CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    text-align: center;
}

.card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.card p {
    color: #cbd5e1;
}

/* COUPON TIERS */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--text-white);
}

.prize-list {
    margin-top: 20px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    list-style: none;
}

.prize-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.prize-list i {
    color: #10b981;
}

/* Tier Specifics */
.tier-iron {
    border-top: 4px solid var(--iron);
}

.tier-iron:hover {
    box-shadow: 0 0 30px rgba(160, 174, 192, 0.3);
    border-color: var(--iron);
}

.tier-iron .icon-box i {
    color: var(--iron);
}

.tier-silver {
    border-top: 4px solid var(--silver);
}

.tier-silver:hover {
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
    border-color: var(--silver);
}

.tier-silver .icon-box i {
    color: var(--silver);
}

.tier-gold {
    border-top: 4px solid var(--gold);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0));
}

.tier-gold:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
}

.tier-gold .icon-box i {
    color: var(--gold);
}

/* Upcoming Banner */
.upcoming-banner {
    max-width: 1200px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.upcoming-badge {
    background: linear-gradient(45deg, #00f260, #0575e6);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* STEPS */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--neon-blue);
    transition: 0.3s;
}

.step:hover {
    background: rgba(0, 0, 0, 0.5);
    border-left-color: var(--gold);
}

.step-num {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-right: 20px;
    width: 50px;
}

.step h4 {
    color: white;
    margin-bottom: 5px;
}

/* MERCHANT ZONE */
.merchant-zone {
    background: linear-gradient(to top, #022c22, #0f0c29);
    border-top: 1px solid var(--neon-green);
    padding: 100px 5%;
}

.merchant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.merchant-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
}

.merchant-card:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.merchant-card h3 {
    color: var(--neon-green);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.merchant-card p {
    color: #a7f3d0;
    font-size: 0.95rem;
}

.merchant-card i {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    display: block;
}

/* GUARANTEE */
.guarantee {
    background: linear-gradient(90deg, #b91d73, #f953c6);
    padding: 60px 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 0 50px rgba(249, 83, 198, 0.3);
}

/* UPDATED FOOTER */
footer {
    background: #000;
    color: #64748b;
    padding: 60px 5% 30px;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    /* Hide extra links on small mobile, keep download */
}

/* FOOTER EXTENSIONS */
.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-col .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    /* Override generic link margin */
}

.footer-col .social-btn i {
    width: auto;
    /* Override generic icon width */
    color: inherit;
}

.footer-col .social-btn:hover {
    background: var(--gold-gradient);
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a i {
    font-size: 1.1rem;
    width: 25px;
    transition: 0.3s;
    color: #64748b;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.footer-col a:hover i {
    color: var(--gold);
}

/* SIDEBAR & BURGER */
.burger-menu {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
    font-size: 1.5rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--danger-light);
    transform: rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    padding: 10px;
    border-radius: 10px;
}

.sidebar-link i {
    width: 25px;
    color: var(--gold);
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    /* Adjust header layout for mobile to accommodate burger */
    header {
        padding: 1rem 5%;
    }

    /* Logo area adjustment if needed */
    .logo-area .logo {
        font-size: 1.5rem;
    }

    .copyright {
        padding-bottom: 80px;
        /* Space for bottom bar */
    }
}

/* MOBILE BOTTOM CTA */
.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    display: none;
    /* Hidden on desktop */
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text span {
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.cta-text small {
    color: var(--gold);
    font-size: 0.8rem;
}

.btn-download-mobile {
    background: var(--gold-gradient);
    color: black;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.4);
}

@media (max-width: 768px) {
    .mobile-bottom-cta {
        display: flex;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}