﻿    :root {
        --lc-bg-deep: #060607;
        --lc-bg-mid: #121218;
        --lc-accent: #ffc107;
        --lc-purple: #6f42c1;
        --lc-purple-deep: #5a32a3;
        --lc-card-border: rgba(255, 255, 255, 0.08);
        --lc-text-muted: #a8a8b3;
    }
    body {
        font-family: "DM Sans", system-ui, -apple-system, sans-serif;
        background: var(--lc-bg-deep);
        background-image:
            radial-gradient(ellipse 120% 80% at 50% -20%, rgba(111, 66, 193, 0.22), transparent 55%),
            radial-gradient(ellipse 80% 50% at 100% 40%, rgba(255, 193, 7, 0.06), transparent 45%),
            linear-gradient(180deg, var(--lc-bg-deep) 0%, var(--lc-bg-mid) 45%, #0a0a0f 100%);
        color: #fff;
        scroll-padding-top: 5rem;
    }
    .lc-navbar {
        background: rgba(10, 10, 14, 0.82) !important;
        backdrop-filter: blur(14px) saturate(140%);
        -webkit-backdrop-filter: blur(14px) saturate(140%);
        border-bottom: 1px solid var(--lc-card-border);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    }
    .lc-navbar .navbar-brand {
        letter-spacing: -0.02em;
        font-weight: 700;
        font-size: 1.15rem;
    }
    .lc-navbar .nav-link {
        color: rgba(255, 255, 255, 0.82) !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        border-radius: 999px;
        transition: background 0.2s, color 0.2s;
    }
    .lc-navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #fff !important;
    }
    .hero {
        position: relative;
        padding: clamp(5.5rem, 12vw, 7rem) 20px 3.5rem;
        text-align: center;
        overflow: hidden;
        background:
            linear-gradient(165deg, rgba(8, 8, 12, 0.92) 0%, rgba(18, 18, 26, 0.88) 45%, rgba(10, 10, 14, 0.94) 100%),
            url('https://i.imgur.com/UI9hiPT.jpeg') no-repeat center center / cover;
    }
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(111, 66, 193, 0.35), transparent 65%);
        pointer-events: none;
    }
    .hero .container {
        position: relative;
        z-index: 1;
        max-width: 920px;
    }
    .hero h1 {
        font-size: clamp(2.25rem, 6vw, 3.5rem);
        font-weight: 800;
        line-height: 1.12;
        margin-bottom: 1.25rem;
        letter-spacing: -0.03em;
        background: linear-gradient(135deg, #fff 0%, #fff 35%, var(--lc-accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero .lc-hero-lead {
        font-size: clamp(1.05rem, 2.5vw, 1.35rem);
        color: var(--lc-text-muted);
        margin-bottom: 2rem;
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.55;
    }
    .lc-hero-actions .btn {
        min-width: 10rem;
        border-radius: 12px;
        font-weight: 600;
        padding: 0.65rem 1.35rem;
    }
    .btn-glow {
        box-shadow: 0 4px 24px rgba(111, 66, 193, 0.45);
        transition: transform 0.25s, box-shadow 0.25s;
        border: none;
        background: linear-gradient(135deg, var(--lc-purple) 0%, var(--lc-purple-deep) 100%) !important;
    }
    .btn-glow:hover {
        box-shadow: 0 8px 32px rgba(111, 66, 193, 0.55);
        transform: translateY(-2px);
        color: #fff !important;
    }
    .hero .btn-outline-success {
        border-radius: 12px;
        font-weight: 600;
        border-width: 2px;
        border-color: rgba(25, 135, 84, 0.65);
        color: #75f0a8 !important;
        transition: transform 0.25s, background 0.25s, border-color 0.25s;
    }
    .hero .btn-outline-success:hover {
        background: rgba(25, 135, 84, 0.15) !important;
        border-color: #198754;
        transform: translateY(-2px);
        color: #fff !important;
    }
    .lc-accent-text {
        color: var(--lc-accent);
        -webkit-text-fill-color: var(--lc-accent);
    }
    .section {
        padding: clamp(4rem, 10vw, 5.5rem) 20px;
    }
    .how-it-works-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(111, 66, 193, 0.22);
        border-color: rgba(111, 66, 193, 0.45) !important;
    }

    /* How it works: one column on mobile, three on md+ (see index.php row-cols) */
    .lc-how-steps-row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
    @media (min-width: 768px) {
        .lc-how-steps-row {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 1.5rem;
        }
    }

    /* Promo cards: match "Here's why" sizing (How it works + Live stats on mobile) */
    .lc-promo-card {
        text-align: center;
    }
    .lc-promo-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
    }
    .lc-promo-card-icon img {
        width: 32px;
        height: 32px;
    }
    .lc-promo-card .lc-how-step-title,
    .lc-promo-card .lc-stat-label,
    .lc-promo-card > h5 {
        font-size: 1.25rem;
    }
    .lc-promo-card .lc-how-step-text,
    .lc-promo-card > p.text-muted {
        font-size: 1rem;
        line-height: 1.5;
    }
    @media (min-width: 768px) {
        #livestats .lc-stat-icon-wrap.lc-promo-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            margin-bottom: 1.5rem;
        }
        #livestats .lc-stat-icon-wrap.lc-promo-card-icon img {
            width: 40px;
            height: 40px;
        }
    }

    .section-title {
        font-size: clamp(1.85rem, 4.5vw, 2.65rem);
        font-weight: 800;
        margin-bottom: 2.75rem;
        text-align: center;
        letter-spacing: -0.025em;
    }
    .leaderboard img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .leaderboard td img {
    vertical-align: middle;
    }
    .leaderboard td .user-info {
        display: flex;
        align-items: center;
        gap: 12px; 
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .leaderboard td .username {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }
    .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 2rem;
        max-width: 960px;
        margin: 0 auto;
    }

    .testimonial-item {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #eee;
        font-style: italic;
        user-select: none;
        transition: all 0.3s ease;
    }

    .testimonial-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(111, 66, 193, 0.4);
        border-color: rgba(111, 66, 193, 0.5);
    }

    blockquote {
        margin: 0 0 1rem;
        font-size: 1.15rem;
        line-height: 1.4;
    }

    small {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffc107;
    }
    .hero-offers-wrapper {
        margin-top: 2.75rem;
        position: relative;
        z-index: 1;
    }
    .hero-offers-wrapper .lc-offers-heading {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.78);
        margin-top: 0;
        margin-bottom: 1.75rem;
    }
    /* Three featured cards in one row at all breakpoints. */
    .hero-offers-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        max-width: 720px;
        margin: 0 auto;
    }
    .lc-video-shell {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--lc-card-border);
        background: #000;
    }
    .lc-hero-offer-card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(111, 66, 193, 0.25);
    }
    .lc-hero-offer-card:active {
        transform: scale(0.985);
        transition-duration: 0.08s;
    }
    .revlum-offer-card {
        background: linear-gradient(145deg, rgba(34, 34, 44, 0.98) 0%, rgba(22, 22, 32, 1) 100%);
        border-radius: 18px;
        overflow: hidden;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    @media (hover: hover) and (pointer: fine) {
        .revlum-offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 40px rgba(111, 66, 193, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
            border-color: rgba(111, 66, 193, 0.55);
        }
    }
    .lc-hero-offer-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }
    .lc-hero-offer-card .lc-hero-feat-placeholder {
        height: 120px;
    }
    .lc-hero-feat-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100px;
        font-size: clamp(2.25rem, 7vw, 3rem);
        line-height: 1;
        background: linear-gradient(180deg, rgba(0, 182, 122, 0.12) 0%, rgba(18, 18, 26, 0.95) 100%);
    }
    .revlum-offer-card .card-body {
        padding: 0.65rem 0.85rem 0.75rem;
    }
    .lc-hero-offer-card .lc-hero-offer-title {
        font-size: 0.88rem;
        font-weight: 700;
        margin: 0;
        color: #ffe08a;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .lc-hero-offer-points {
        margin-top: 0.5rem;
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(232, 234, 240, 0.88);
        line-height: 1.2;
        letter-spacing: 0.02em;
    }
    .lc-hero-offer-points-label {
        margin-right: 0.25rem;
        color: rgba(232, 234, 240, 0.75);
    }
    .lc-hero-offer-points-num {
        font-size: clamp(0.95rem, 2.8vw, 1.15rem);
        font-weight: 800;
        color: #5ee9b5;
        text-shadow: 0 0 20px rgba(94, 233, 181, 0.35);
        margin: 0 0.2rem;
    }
    .lc-hero-offer-points-unit {
        font-weight: 700;
        color: rgba(94, 233, 181, 0.95);
        text-transform: lowercase;
    }
    .lc-hero-offer-usd {
        margin-top: 0.3rem;
        font-size: 0.62rem;
        line-height: 1.2;
        font-weight: 600;
        color: rgba(196, 206, 220, 0.92);
        letter-spacing: 0.02em;
    }
    .lc-hero-offer-credit {
        margin-top: 0.35rem;
        font-size: 0.72rem;
        line-height: 1.3;
        color: rgba(210, 214, 222, 0.88);
    }
    .partner-card {
      background: linear-gradient(145deg, rgba(26, 26, 34, 0.9) 0%, rgba(16, 16, 22, 0.95) 100%);
      border: 1px solid var(--lc-card-border);
      border-radius: 18px;
      padding: 30px 20px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      min-height: 120px;
    }
    .partner-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(111, 66, 193, 0.3);
      border-color: rgba(111, 66, 193, 0.5);
      background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    }
    .partner-card img {
      max-width: 100%;
      height: auto;
      max-height: 60px;
      filter: brightness(0.9);
      transition: all 0.3s ease;
    }
    .partner-card:hover img {
      filter: brightness(1.1);
      transform: scale(1.05);
    }

    @media (min-width: 768px) {
        .leaderboard td .username {
            max-width: 300px;
        }
          .testimonials-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 768px) {
        .testimonials-grid {
            grid-template-columns: 1fr; 
            max-width: 90vw;
            margin: 0 auto;
        }
        .testimonial-item {
            width: 100%;
            max-width: none;
            padding: 1.8rem 2rem;
        }
        .lc-navbar .navbar-nav .btn {
            width: 100%;
            margin-top: 0.35rem;
        }
    }

    /* Hero featured: small screens — keep 3 columns, tighter rhythm. */
    @media (max-width: 767.98px) {
        .hero-offers-grid {
            gap: 8px;
            max-width: 100%;
            padding-left: 0.25rem;
            padding-right: 0.25rem;
        }
        .hero-offers-wrapper .lc-offers-heading {
            margin-bottom: 2.25rem;
        }
        .lc-hero-offer-card img,
        .lc-hero-offer-card .lc-hero-feat-placeholder {
            height: 92px;
        }
        .revlum-offer-card .card-body {
            padding: 0.45rem 0.4rem 0.55rem;
        }
        .lc-hero-offer-card .lc-hero-offer-title {
            font-size: 0.72rem;
            -webkit-line-clamp: 2;
        }
        .lc-hero-offer-points {
            margin-top: 0.35rem;
            font-size: 0.58rem;
        }
        .lc-hero-offer-points-num {
            font-size: clamp(0.68rem, 2.6vw, 0.88rem);
            font-weight: 900;
            color: #6fffd4;
            text-shadow:
                0 0 18px rgba(111, 255, 212, 0.4),
                0 0 32px rgba(94, 233, 181, 0.22);
            margin: 0 0.1rem;
        }
        .lc-hero-offer-points-unit {
            color: #8cfce0;
        }
        .lc-hero-offer-usd {
            margin-top: 0.18rem;
            font-size: 0.52rem;
        }
    }

    /* Trustpilot testimonials (index #reviews) */
    .lc-reviews-section {
        background: linear-gradient(180deg, rgba(10, 10, 14, 0.35) 0%, rgba(18, 18, 26, 0.5) 50%, transparent 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .lc-tp-watermark {
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        border: 1px solid rgba(0, 182, 122, 0.35);
        background: rgba(0, 182, 122, 0.08);
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(232, 234, 237, 0.92);
        transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }
    .lc-tp-watermark:hover {
        border-color: rgba(0, 182, 122, 0.55);
        background: rgba(0, 182, 122, 0.14);
        transform: translateY(-1px);
        color: #fff;
    }
    .lc-tp-watermark-text {
        color: rgba(232, 234, 237, 0.95);
    }
    .lc-review-card {
        background: linear-gradient(165deg, rgba(22, 22, 30, 0.92) 0%, rgba(14, 14, 20, 0.96) 100%);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }
    .lc-review-card:hover {
        border-color: rgba(111, 66, 193, 0.45) !important;
        box-shadow: 0 16px 48px rgba(111, 66, 193, 0.18);
        transform: translateY(-2px);
    }
    .lc-review-stars {
        color: #00b67a;
        font-size: 1rem;
        letter-spacing: 0.12em;
        line-height: 1;
    }
    .lc-review-body {
        color: rgba(248, 250, 252, 0.92);
        font-size: 0.98rem;
        line-height: 1.55;
    }
    .lc-review-date {
        font-size: 0.75rem;
    }
    .lc-review-author {
        font-size: 0.8rem;
    }

    /* Mobile: reviews 2 per row */
    @media (max-width: 767.98px) {
        .lc-reviews-grid {
            --bs-gutter-x: 0.5rem;
            --bs-gutter-y: 0.65rem;
        }
        .lc-review-card {
            min-height: 100%;
            border-radius: 12px !important;
        }
        .lc-review-stars {
            font-size: 0.7rem;
            letter-spacing: 0.03em;
        }
        .lc-review-date {
            font-size: 0.65rem;
        }
        .lc-review-body {
            font-size: 0.78rem;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5;
            overflow: hidden;
        }
        .lc-review-author {
            font-size: 0.7rem;
            line-height: 1.25;
        }
        #how .lc-how-step-text,
        #livestats .lc-stat-label {
            display: block;
            -webkit-line-clamp: unset;
            overflow: visible;
        }
        #livestats .lc-stat-tile {
            padding: 1.5rem !important;
        }
        #livestats .lc-stat-value.display-4 {
            font-size: clamp(2rem, 8.5vw, 2.5rem) !important;
            line-height: 1.1;
        }
    }

