:root {
    --bg-dark: #070b14;
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.4);
    --secondary: #ff007f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Blobs */
.blob-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: -1;
    filter: blur(80px);
    animation: float 10s infinite alternate ease-in-out;
}

.blob-2 {
    background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, transparent 60%);
    top: 40%;
    right: -200px;
    left: auto;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 127, 0.4);
}

.btn-glow {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    font-size: 1.1rem;
    padding: 16px 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseGlow 2s infinite;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(229, 46, 113, 0.5);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 46, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(229, 46, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 46, 113, 0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 15px 0;
    border-radius: 100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: #1a1e29;
    min-height: 300px;
}

.floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    animation: floatUpDown 3s infinite ease-in-out alternate;
}

.fb-1 {
    top: -20px;
    right: -20px;
    color: var(--gold);
}

.fb-2 {
    bottom: 40px;
    left: -30px;
    color: #00ffcc;
    animation-delay: -1.5s;
}

@keyframes floatUpDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.5);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Feature Icon Wrap — the colorful circle */
.feature-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Showcase Section */
.showcase-wrapper {
    display: flex;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(138, 43, 226, 0.05));
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    text-align: left;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check {
    color: #00ffaa;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(0, 255, 170, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.showcase-images {
    flex: 1;
    position: relative;
    height: 400px;
}

.float-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--glass-border);
    transition: transform 0.3s;
    background-color: #1a1e29;
}

.img-1 {
    width: 60%;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-2 {
    width: 55%;
    bottom: -20px;
    right: 0;
    z-index: 1;
}

/* ============ BONUSES SECTION ============ */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    position: relative;
    background: linear-gradient(145deg, rgba(138, 43, 226, 0.08), rgba(255, 0, 127, 0.05));
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.bonus-ribbon {
    position: absolute;
    top: 16px;
    right: -28px;
    background: linear-gradient(90deg, #00e676, #00c853);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 5px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 200, 83, 0.4);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    animation: gentleBounce 2s infinite ease-in-out;
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.bonus-value {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bonus-value span {
    color: var(--gold);
    font-weight: 700;
    text-decoration: line-through;
}

/* Pricing Section */
.pricing-section {
    display: flex;
    justify-content: center;
}

.pricing-card {
    text-align: center;
    padding: 4rem;
    max-width: 550px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.discount-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(90deg, #ff007f, #e52e71);
    color: white;
    padding: 8px 40px;
    font-weight: bold;
    font-size: 0.9rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.4);
}

.price {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.w-100 {
    width: 100%;
}

.secure-checkout {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations - Scroll reveal */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .showcase-wrapper {
        flex-direction: column !important;
        padding: 2rem;
    }

    .showcase-images {
        width: 100%;
        margin-top: 2rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .pricing-card {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ URGENCY TOP BAR ============ */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    color: white;
    text-align: center;
    padding: 10px 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(229, 46, 113, 0.4);
}

.urgency-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 800;
}

.countdown-text {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 10px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Push navbar down to account for urgency bar */
.navbar {
    top: 55px;
}

/* ============ COUNTDOWN BOX (Pricing Card) ============ */
.countdown-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0 1.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, rgba(255, 0, 127, 0.15), rgba(138, 43, 226, 0.15));
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    min-width: 70px;
    text-align: center;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.cd-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 6px;
    letter-spacing: 1px;
}

.cd-sep {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ============ STICKY BOTTOM CTA ============ */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 2rem;
    transition: bottom 0.4s ease;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

.sticky-cta.show {
    bottom: 0;
}

.sticky-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sticky-price {
    font-size: 1rem;
    color: var(--text-main);
}

.sticky-timer {
    font-family: 'Courier New', monospace;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive adjustments for urgency elements */
@media (max-width: 900px) {
    .hero {
        padding-top: 180px;
    }

    .urgency-bar {
        font-size: 0.8rem;
        padding: 8px 0.5rem;
    }
}

@media (max-width: 600px) {
    .urgency-bar {
        font-size: 0.75rem;
    }

    .cd-num {
        font-size: 1.8rem;
        min-width: 55px;
        padding: 6px 10px;
    }

    .cd-sep {
        font-size: 1.8rem;
    }

    .sticky-left {
        gap: 0.8rem;
    }

    .sticky-cta-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
}