/* =========================================================
   AFFLEADHUB — OFFERS HERO
========================================================= */

:root {
    --offers-black: #030303;
    --offers-white: #f5f5f5;
    --offers-muted: #858585;
    --offers-lime: #c6ff00;
    --offers-border: rgba(255, 255, 255, 0.12);
    --offers-glass: rgba(255, 255, 255, 0.035);
}


/* =========================================================
   PAGE
========================================================= */

#offers-page {
    width: 100%;
    min-height: 100vh;
    background: var(--offers-black);
    color: var(--offers-white);
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.offers-hero {
    position: relative;
    min-height: 100vh;
    padding: 60px 4vw 40px;
    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(198, 255, 0, 0.08),
            transparent 28%
        ),
        #030303;
    overflow: hidden;
}


/* subtle background grid */

.offers-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 25%,
        black 75%,
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   HERO INNER
========================================================= */

.offers-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 1450px;
    min-height: 680px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 40px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.offers-hero-content {
    position: relative;
    z-index: 5;
    max-width: 620px;
}


.offers-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;

    color: var(--offers-lime);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.offers-eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--offers-lime);

    box-shadow:
        0 0 10px rgba(198,255,0,0.8);
}


.offers-eyebrow i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--offers-lime);

    box-shadow:
        0 0 12px var(--offers-lime);
}


/* =========================================================
   HERO TITLE
========================================================= */

.offers-hero-content h1 {
    margin: 0;

    font-size: clamp(64px, 6.2vw, 105px);
    line-height: 0.91;

    font-weight: 600;
    letter-spacing: -0.055em;

    color: var(--offers-white);
}


.offers-hero-content h1 span {
    color: var(--offers-lime);

    text-shadow:
        0 0 25px rgba(198,255,0,0.12);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.offers-hero-content p {
    max-width: 520px;

    margin: 38px 0 34px;

    color: #aaa;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.offers-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}


.offers-primary-btn,
.offers-secondary-btn {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.offers-primary-btn {
    gap: 30px;

    background: var(--offers-lime);
    color: #050505;

    box-shadow:
        0 0 30px rgba(198,255,0,0.12);
}


.offers-primary-btn strong {
    font-size: 22px;
    font-weight: 400;
}


.offers-secondary-btn {
    border: 1px solid rgba(198,255,0,0.65);

    background: rgba(198,255,0,0.025);

    color: var(--offers-lime);
}


.offers-primary-btn:hover,
.offers-secondary-btn:hover {
    transform: translateY(-3px);
}


.offers-primary-btn:hover {
    box-shadow:
        0 0 35px rgba(198,255,0,0.28);
}


.offers-secondary-btn:hover {
    background: rgba(198,255,0,0.08);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.offers-hero-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   ORBIT SYSTEM
========================================================= */

.offers-orbit-system {
    position: relative;

    width: min(650px, 48vw);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   MAIN ORB
========================================================= */

.offers-orb {
    position: relative;

    width: 54%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 45% 38%,
            rgba(255,255,255,0.13),
            rgba(20,20,20,0.5) 42%,
            rgba(0,0,0,0.95) 75%
        );

    border: 1px solid rgba(198,255,0,0.55);

    box-shadow:
        inset 0 0 40px rgba(198,255,0,0.05),
        0 0 40px rgba(198,255,0,0.08),
        0 0 100px rgba(198,255,0,0.06);

    animation: orbFloat 7s ease-in-out infinite;
}


@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================================
   ORB GRID
========================================================= */

.orb-grid {
    position: absolute;
    inset: 7%;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 17px,
            rgba(198,255,0,0.06) 18px,
            transparent 19px
        );

    opacity: 0.7;
}


.offers-orb::before,
.offers-orb::after {
    content: "";

    position: absolute;

    inset: 10%;

    border-radius: 50%;

    border: 1px solid rgba(198,255,0,0.13);
}


.offers-orb::after {
    inset: 22%;
    border-color: rgba(198,255,0,0.2);
}


/* =========================================================
   ORB CORE
========================================================= */

.orb-core {
    position: absolute;

    width: 50%;
    aspect-ratio: 1;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #151515,
            #030303 70%
        );

    border: 1px solid rgba(198,255,0,0.7);

    box-shadow:
        0 0 25px rgba(198,255,0,0.12),
        inset 0 0 25px rgba(198,255,0,0.05);
}


.orb-core img {
    width: 70%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 10px rgba(198,255,0,0.45)
        );
}


/* =========================================================
   ORBIT RINGS
========================================================= */

.orbit-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(198,255,0,0.14);

    pointer-events: none;
}


.orbit-ring-1 {
    width: 64%;
    height: 64%;

    animation: rotateRing 18s linear infinite;
}


.orbit-ring-2 {
    width: 76%;
    height: 48%;

    transform: rotate(35deg);

    animation: rotateRingReverse 22s linear infinite;
}


.orbit-ring-3 {
    width: 88%;
    height: 58%;

    transform: rotate(-35deg);

    animation: rotateRing 28s linear infinite;
}


@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes rotateRingReverse {

    from {
        transform: rotate(35deg);
    }

    to {
        transform: rotate(-325deg);
    }

}


/* =========================================================
   ORBIT PATHS
========================================================= */

.orbit-path {
    position: absolute;

    width: 90%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(198,255,0,0.65),
            transparent
        );

    opacity: 0.6;

    transform-origin: center;
}


.orbit-path-1 {
    transform: rotate(28deg);
}


.orbit-path-2 {
    transform: rotate(-18deg);
}


.orbit-path-3 {
    transform: rotate(53deg);
}


/* =========================================================
   POINTS
========================================================= */

.orbit-point {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--offers-lime);

    box-shadow:
        0 0 8px var(--offers-lime),
        0 0 20px rgba(198,255,0,0.5);

    animation: pointPulse 2.5s ease-in-out infinite;
}


@keyframes pointPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

}


.point-1 {
    top: 22%;
    left: 21%;
}


.point-2 {
    top: 26%;
    right: 17%;
    animation-delay: .4s;
}


.point-3 {
    bottom: 24%;
    left: 16%;
    animation-delay: .8s;
}


.point-4 {
    bottom: 16%;
    right: 25%;
    animation-delay: 1.2s;
}


.point-5 {
    top: 48%;
    right: 5%;
    animation-delay: 1.6s;
}


/* =========================================================
   PERFORMANCE BADGES
========================================================= */

.performance-badge {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 17px;

    border: 1px solid rgba(198,255,0,0.25);

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(30,30,30,0.85),
            rgba(5,5,5,0.75)
        );

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);

    animation: badgeFloat 5s ease-in-out infinite;

    z-index: 5;
}


.performance-badge strong {
    display: block;

    color: white;

    font-size: 15px;
    line-height: 1.2;
}


.performance-badge span {
    display: block;

    margin-top: 3px;

    color: #8f8f8f;

    font-size: 10px;
    line-height: 1.3;
}


.badge-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: var(--offers-lime);

    background: rgba(198,255,0,0.07);

    font-size: 18px;
}


.badge-growth {
    top: 13%;
    left: 4%;
}


.badge-global {
    top: 26%;
    right: -1%;

    animation-delay: 1s;
}


.badge-performance {
    bottom: 12%;
    left: 18%;

    animation-delay: 2s;
}


@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   VALUE STRIP
========================================================= */

.offers-value-strip {
    position: relative;
    z-index: 5;

    max-width: 1400px;

    margin: -5px auto 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    padding: 24px 30px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 20px;

    background:
        linear-gradient(
            110deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.25);
}


.value-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 0 15px;
}


.value-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: var(--offers-lime);

    border: 1px solid rgba(198,255,0,0.2);

    background: rgba(198,255,0,0.04);

    font-size: 17px;
}


.value-item strong {
    display: block;

    color: #f1f1f1;

    font-size: 13px;
}


.value-item span {
    display: block;

    margin-top: 4px;

    color: #737373;

    font-size: 10px;
}


.value-divider {
    width: 1px;
    height: 40px;

    background: rgba(255,255,255,0.09);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .offers-hero {
        padding-top: 130px;
    }

    .offers-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .offers-hero-content {
        max-width: 720px;
        text-align: center;
        margin: 0 auto;
    }

    .offers-eyebrow {
        justify-content: center;
    }

    .offers-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .offers-hero-actions {
        justify-content: center;
    }

    .offers-hero-visual {
        min-height: 580px;
    }

    .offers-orbit-system {
        width: min(600px, 75vw);
    }

    .offers-value-strip {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .value-divider {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .offers-hero {
        min-height: auto;

        padding:
            120px
            20px
            30px;
    }


    .offers-hero-content h1 {
        font-size: clamp(
            52px,
            15vw,
            76px
        );
    }


    .offers-hero-content p {
        font-size: 15px;

        margin-top: 28px;
    }


    .offers-hero-actions {
        flex-direction: column;

        width: 100%;
    }


    .offers-primary-btn,
    .offers-secondary-btn {
        width: 100%;
    }


    .offers-hero-visual {
        min-height: 430px;

        margin-top: 20px;
    }


    .offers-orbit-system {
        width: 105%;
    }


    .performance-badge {
        transform: scale(0.78);
    }


    .badge-growth {
        left: -3%;
    }


    .badge-global {
        right: -8%;
    }


    .badge-performance {
        left: 5%;
    }


    .offers-value-strip {
        grid-template-columns: 1fr;

        padding: 20px;
    }


    .value-item {
        padding: 10px 0;
    }

}

/* =========================================================
   ACTIVE OFFERS SECTION
========================================================= */

.active-offers-section {
    position: relative;

    width: 100%;

    padding: 150px 4vw 160px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(198, 255, 0, 0.035),
            transparent 35%
        ),
        #030303;

    overflow: hidden;
}


.active-offers-container {
    width: min(1400px, 100%);

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.active-offers-header {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.active-offers-eyebrow {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--offers-lime);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.active-offers-eyebrow span {
    width: 28px;
    height: 1px;

    background: var(--offers-lime);

    box-shadow:
        0 0 10px rgba(198,255,0,0.7);
}


.active-offers-header h2 {
    margin: 0;

    font-size: clamp(54px, 6vw, 90px);

    line-height: 0.95;

    letter-spacing: -0.055em;

    font-weight: 600;
}


.active-offers-header h2 span {
    color: var(--offers-lime);
}


.active-offers-header p {
    max-width: 560px;

    margin: 25px auto 0;

    color: #777;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   FILTER
========================================================= */

.offer-model-filter {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-bottom: 35px;
}


.offer-filter-btn {
    min-width: 82px;

    height: 42px;

    padding: 0 18px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 100px;

    background: rgba(255,255,255,0.025);

    color: #777;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.offer-filter-btn:hover {
    color: white;

    border-color: rgba(198,255,0,0.35);
}


.offer-filter-btn.active {
    color: #050505;

    background: var(--offers-lime);

    border-color: var(--offers-lime);

    box-shadow:
        0 0 20px rgba(198,255,0,0.12);
}


/* =========================================================
   CAMPAIGN LIST
========================================================= */

.campaign-list {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* =========================================================
   CAMPAIGN CARD
========================================================= */

.campaign-card {
    position: relative;

    width: 100%;

    min-height: 230px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        220px;

    gap: 35px;

    padding: 30px 32px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.22);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.campaign-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 2px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--offers-lime),
            transparent
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}


.campaign-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(198,255,0,0.24);

    background:
        linear-gradient(
            120deg,
            rgba(198,255,0,0.045),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,0.35),
        0 0 45px rgba(198,255,0,0.035);
}


.campaign-card:hover::before {
    opacity: 1;
}


/* =========================================================
   MAIN CAMPAIGN CONTENT
========================================================= */

.campaign-main {
    min-width: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.campaign-brand {
    display: flex;

    align-items: center;

    gap: 20px;
}


.campaign-logo {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    border: 1px solid rgba(255,255,255,0.1);

    background:
        rgba(255,255,255,0.045);

    overflow: hidden;
}


.campaign-logo img {
    width: 70%;
    height: 70%;

    object-fit: contain;
}


.campaign-brand-info {
    min-width: 0;
}


.campaign-model {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--offers-lime);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.campaign-brand-info h3 {
    margin: 0;

    color: #f4f4f4;

    font-size: 24px;

    font-weight: 600;

    letter-spacing: -0.025em;
}


.campaign-category {
    display: block;

    margin-top: 6px;

    color: #696969;

    font-size: 11px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.campaign-description {
    margin-top: 22px;

    max-width: 700px;
}


.campaign-description p {
    margin: 0;

    color: #858585;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   META
========================================================= */

.campaign-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}


.campaign-meta-item {
    min-width: 125px;

    padding-right: 24px;

    border-right:
        1px solid rgba(255,255,255,0.08);
}


.campaign-meta-item:last-child {
    border-right: none;
}


.campaign-meta-item span {
    display: block;

    margin-bottom: 6px;

    color: #555;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


.campaign-meta-item strong {
    display: block;

    color: #c5c5c5;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   RIGHT ACTION
========================================================= */

.campaign-action {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: space-between;

    padding: 3px 0;
}


.campaign-payout {
    text-align: right;
}


.campaign-payout span {
    display: block;

    margin-bottom: 5px;

    color: #555;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.campaign-payout strong {
    display: block;

    color: var(--offers-lime);

    font-size: 29px;

    font-weight: 600;

    letter-spacing: -0.04em;
}


.campaign-payout small {
    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 10px;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.campaign-explore-btn {
    min-width: 170px;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 17px 0 20px;

    border: 1px solid rgba(198,255,0,0.45);

    border-radius: 13px;

    background:
        rgba(198,255,0,0.035);

    color: var(--offers-lime);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.campaign-explore-btn strong {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--offers-lime);

    color: #050505;

    font-size: 15px;

    font-weight: 400;
}


.campaign-explore-btn:hover {
    background: var(--offers-lime);

    color: #050505;

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(198,255,0,0.12);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.campaign-empty-state {
    display: none;

    padding: 80px 20px;

    text-align: center;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    background: rgba(255,255,255,0.02);
}


.campaign-empty-state span {
    color: var(--offers-lime);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;
}


.campaign-empty-state p {
    margin-top: 12px;

    color: #666;

    font-size: 13px;
}


/* =========================================================
   FILTER ANIMATION
========================================================= */

.campaign-card.offer-hidden {
    display: none;
}


.campaign-card.offer-visible {
    animation: campaignReveal 0.35s ease both;
}


@keyframes campaignReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .active-offers-section {
        padding:
            110px
            24px
            120px;
    }


    .campaign-card {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .campaign-action {
        flex-direction: row;

        align-items: center;

        padding-top: 20px;

        border-top:
            1px solid rgba(255,255,255,0.08);
    }


    .campaign-payout {
        text-align: left;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .active-offers-section {
        padding:
            90px
            16px
            100px;
    }


    .active-offers-header {
        margin-bottom: 35px;
    }


    .active-offers-header h2 {
        font-size: 52px;
    }


    .active-offers-header p {
        font-size: 14px;
    }


    .offer-model-filter {
        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 5px;
    }


    .offer-filter-btn {
        flex-shrink: 0;
    }


    .campaign-card {
        padding: 22px;

        border-radius: 20px;
    }


    .campaign-brand {
        gap: 14px;
    }


    .campaign-logo {
        width: 58px;
        height: 58px;
    }


    .campaign-brand-info h3 {
        font-size: 19px;
    }


    .campaign-description {
        margin-top: 18px;
    }


    .campaign-meta {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 16px;
    }


    .campaign-meta-item {
        min-width: 0;

        padding: 0;

        border-right: none;
    }


    .campaign-action {
        align-items: stretch;

        flex-direction: column;

        gap: 20px;
    }


    .campaign-payout {
        text-align: left;
    }


    .campaign-explore-btn {
        width: 100%;
    }

}



/* =========================================================
   AFFLEADHUB — OFFERS UI V2
   SEARCH + PREMIUM CARD LAYOUT
========================================================= */


/* =========================================================
   SEARCH
========================================================= */

.offer-search {
    position: relative;

    width: 100%;
    max-width: 760px;

    margin: 0 auto 26px;

    display: flex;
    align-items: center;

    min-height: 58px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 16px;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 45px rgba(0,0,0,0.20);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.offer-search:focus-within {
    border-color:
        rgba(198,255,0,0.40);

    background:
        linear-gradient(
            120deg,
            rgba(198,255,0,0.045),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 0 35px rgba(198,255,0,0.07);
}


/* SEARCH ICON */

.offer-search-icon {
    width: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--offers-lime);

    font-size: 24px;

    pointer-events: none;
}


/* INPUT */

.offer-search input {
    flex: 1;

    width: 100%;

    height: 56px;

    padding: 0 12px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;

    letter-spacing: 0.01em;
}


.offer-search input::placeholder {
    color: #666;
}


.offer-search input:focus {
    outline: none;
}


/* CLEAR BUTTON */

#offer-search-clear {
    width: 42px;
    height: 42px;

    margin-right: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 12px;

    background: transparent;

    color: #777;

    font-size: 22px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


#offer-search-clear:hover {
    color: var(--offers-lime);

    background:
        rgba(198,255,0,0.07);
}


/* =========================================================
   FILTER AREA
========================================================= */

.offer-model-filter {
    margin-bottom: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}


/* =========================================================
   CAMPAIGN CARD — NEW STRUCTURE
========================================================= */

.campaign-card {

    min-height: 245px;

    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows:
        1fr
        auto;

    gap: 0;

    padding: 30px 32px;

}


/* MAIN CONTENT */

.campaign-main {

    min-width: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}


/* =========================================================
   BRAND
========================================================= */

.campaign-brand {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    min-width: 0;
}


.campaign-logo {

    flex-shrink: 0;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.035);

    overflow: hidden;
}


.campaign-logo-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--offers-lime);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   CAMPAIGN TITLE
========================================================= */

.campaign-brand-info {

    min-width: 0;
}


.campaign-model {

    display: inline-block;

    margin-bottom: 7px;

    color: var(--offers-lime);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.campaign-brand-info h3 {

    margin: 0;

    max-width: 760px;

    color: #f4f4f4;

    font-size: clamp(20px, 2vw, 27px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.025em;

    word-break: break-word;
}


.campaign-category {

    display: block;

    margin-top: 8px;

    color: #666;

    font-size: 11px;

    font-weight: 500;

    text-transform: capitalize;
}


/* =========================================================
   META
========================================================= */

.campaign-meta {

    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,0.07);
}


.campaign-meta-item {

    min-width: 135px;

    padding: 0 22px;

    border-right:
        1px solid rgba(255,255,255,0.07);
}


.campaign-meta-item:first-child {
    padding-left: 0;
}


.campaign-meta-item:last-child {

    border-right: 0;

}


.campaign-meta-item span {

    display: block;

    margin-bottom: 7px;

    color: #555;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.campaign-meta-item strong {

    display: block;

    max-width: 180px;

    overflow: hidden;

    color: #bdbdbd;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* =========================================================
   BOTTOM ACTION BAR
========================================================= */

.campaign-action {

    width: 100%;

    min-height: 64px;

    margin-top: 20px;

    padding-top: 18px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   PAYOUT
========================================================= */

.campaign-payout {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;
}


.campaign-payout span {

    margin-bottom: 3px;

    color: #555;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.campaign-payout strong {

    color: var(--offers-lime);

    font-size: 25px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.03em;
}


.campaign-payout small {

    margin-top: 5px;

    color: #555;

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.campaign-explore-btn {

    min-width: 180px;

    height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 0 10px 0 20px;

    border:
        1px solid rgba(198,255,0,0.35);

    border-radius: 14px;

    background:
        rgba(198,255,0,0.025);

    color: var(--offers-lime);

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.02em;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.campaign-explore-btn strong {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--offers-lime);

    color: #050505;

    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.campaign-explore-btn:hover {

    background:
        var(--offers-lime);

    color: #050505;

    border-color:
        var(--offers-lime);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 35px rgba(198,255,0,0.14);
}


.campaign-explore-btn:hover strong {

    transform:
        translate(2px, -2px);
}


/* =========================================================
   PAGINATION
========================================================= */

.offer-pagination {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 38px;

    min-height: 46px;
}


.offer-page-btn {

    min-width: 42px;
    height: 42px;

    padding: 0 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.025);

    color: #777;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.offer-page-btn:hover:not(:disabled) {

    color: var(--offers-lime);

    border-color:
        rgba(198,255,0,0.35);

    transform:
        translateY(-2px);
}


.offer-page-btn.active {

    color: #050505;

    background:
        var(--offers-lime);

    border-color:
        var(--offers-lime);

    box-shadow:
        0 0 22px rgba(198,255,0,0.12);
}


.offer-page-btn:disabled {

    opacity: 0.25;

    cursor: not-allowed;
}


/* =========================================================
   REMOVE DESCRIPTION FROM CARD
========================================================= */

.campaign-description {

    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .campaign-card {

        min-height: 0;

        padding: 26px;

    }


    .campaign-meta-item {

        min-width: 0;

        flex: 1;

    }


    .campaign-action {

        align-items: center;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .offer-search {

        margin-bottom: 20px;

        min-height: 54px;

        border-radius: 14px;

    }


    .offer-search input {

        height: 52px;

        font-size: 13px;

    }


    .offer-search-icon {

        width: 46px;

        font-size: 21px;

    }


    .offer-model-filter {

        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

    }


    .campaign-card {

        padding: 22px;

        border-radius: 20px;

    }


    .campaign-logo {

        width: 54px;
        height: 54px;

        border-radius: 15px;

    }


    .campaign-brand {

        gap: 13px;

    }


    .campaign-brand-info h3 {

        font-size: 18px;

    }


    .campaign-meta {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 18px;

    }


    .campaign-meta-item {

        padding: 0;

        border-right: 0;

    }


    .campaign-meta-item:first-child {

        padding-left: 0;

    }


    .campaign-action {

        flex-direction: column;

        align-items: stretch;

        gap: 16px;

    }


    .campaign-payout {

        align-items: flex-start;

    }


    .campaign-explore-btn {

        width: 100%;

    }


    .offer-pagination {

        gap: 5px;

        flex-wrap: wrap;

    }


    .offer-page-btn {

        min-width: 38px;

        height: 38px;

    }

}

/* =========================================================
   COMPACT OFFER CARD
   Main listing stays clean.
   Detailed layout will be used only inside the modal.
========================================================= */

.campaign-card {
    min-height: 230px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        220px;

    gap: 35px;

    padding: 30px 32px;
}


/* MAIN LEFT SIDE */

.campaign-main {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}


/* BRAND */

.campaign-brand {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}


.campaign-logo {
    width: 64px;
    height: 64px;

    flex-shrink: 0;
}


/* TITLE */

.campaign-brand-info {
    min-width: 0;
}


.campaign-brand-info h3 {
    margin: 0;

    max-width: 700px;

    font-size: 24px;
    line-height: 1.15;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.campaign-category {
    margin-top: 8px;
}


/* META */

.campaign-meta {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 25px;

    padding-top: 0;

    border-top: 0;
}


.campaign-meta-item {
    min-width: 135px;

    padding: 0 20px;

    border-right:
        1px solid rgba(255,255,255,0.08);
}


.campaign-meta-item:first-child {
    padding-left: 0;
}


.campaign-meta-item:last-child {
    border-right: 0;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.campaign-action {

    width: 100%;

    min-height: 100%;

    margin-top: 0;

    padding-top: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    border-top: 0;
}


/* PAYOUT */

.campaign-payout {
    text-align: right;

    align-items: flex-end;
}


.campaign-payout strong {
    font-size: 28px;
}


/* EXPLORE BUTTON */

.campaign-explore-btn {
    min-width: 180px;
    height: 52px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .campaign-card {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .campaign-action {

        min-height: auto;

        padding-top: 20px;

        border-top:
            1px solid rgba(255,255,255,0.08);

        flex-direction: row;

        align-items: center;

    }


    .campaign-payout {

        text-align: left;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .campaign-card {

        padding: 22px;

        border-radius: 20px;

    }


    .campaign-brand-info h3 {

        font-size: 19px;

        white-space: normal;

        overflow: visible;

        text-overflow: unset;

    }


    .campaign-meta {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 16px;

    }


    .campaign-meta-item {

        min-width: 0;

        padding: 0;

        border-right: 0;

    }


    .campaign-action {

        flex-direction: column;

        align-items: stretch;

        gap: 18px;

    }


    .campaign-payout {

        align-items: flex-start;

        text-align: left;

    }


    .campaign-explore-btn {

        width: 100%;

    }

}


/* =========================================================
   OFFER DETAIL MODAL — STEP 2
========================================================= */

.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* Modal will become visible when JS adds .is-open */

.offer-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   MODAL BOX
========================================================= */

.offer-modal-box {
    position: relative;

    width: min(760px, 100%);
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    padding: 34px;

    border: 1px solid rgba(198, 255, 0, 0.18);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(198, 255, 0, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(24, 24, 24, 0.98),
            rgba(8, 8, 8, 0.99)
        );

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(198, 255, 0, 0.05);

    transform: translateY(20px) scale(0.97);

    transition:
        transform 0.35s ease;
}


.offer-modal.is-open .offer-modal-box {
    transform: translateY(0) scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.offer-modal-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);

    color: #aaa;

    font-size: 24px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.offer-modal-close:hover {
    color: #050505;

    background: var(--offers-lime);

    border-color: var(--offers-lime);
}


/* =========================================================
   MODEL
========================================================= */

.offer-modal-model {
    margin-bottom: 10px;

    color: var(--offers-lime);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.offer-modal-box h2 {
    margin: 0;

    padding-right: 55px;

    color: #f5f5f5;

    font-size: clamp(24px, 4vw, 36px);

    line-height: 1.15;

    letter-spacing: -0.03em;
}


/* =========================================================
   QUICK INFORMATION
========================================================= */

.offer-modal-info {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 28px;
}


.offer-modal-info > div {
    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);
}


.offer-modal-info span {
    display: block;

    margin-bottom: 7px;

    color: #555;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


.offer-modal-info strong {
    display: block;

    color: #ddd;

    font-size: 13px;
    line-height: 1.35;

    word-break: break-word;
}


/* =========================================================
   KPI / DESCRIPTION SECTIONS
========================================================= */

.offer-modal-section {
    margin-top: 25px;
}


.offer-modal-section > span {
    display: block;

    margin-bottom: 10px;

    color: var(--offers-lime);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.offer-modal-section > div {
    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.025);

    color: #bdbdbd;

    font-size: 13px;
    line-height: 1.75;

    white-space: pre-line;

    overflow-wrap: anywhere;
}


/* KPI gets slightly stronger emphasis */

#offer-modal-kpi {
    color: #eeeeee;

    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .offer-modal {
        padding: 12px;
    }

    .offer-modal-box {
        max-height: calc(100vh - 24px);

        padding: 24px 20px;

        border-radius: 22px;
    }

    .offer-modal-info {
        grid-template-columns: 1fr 1fr;
    }

    .offer-modal-box h2 {
        font-size: 23px;
    }

}

/* =========================================================
   FINAL OFFERS CTA
========================================================= */

.offers-final-cta {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 120px auto 100px;
    padding: 110px 40px;
    overflow: hidden;

    border: 1px solid rgba(190, 255, 0, 0.25);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(190, 255, 0, 0.12),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 30px 100px rgba(0, 0, 0, 0.45);

    text-align: center;
}

.offers-final-cta-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    left: 50%;
    bottom: -300px;
    transform: translateX(-50%);

    background: rgba(190, 255, 0, 0.18);
    filter: blur(100px);
    border-radius: 50%;

    pointer-events: none;
}

.offers-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.offers-final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    color: #c8ff00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.offers-final-cta-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #c8ff00;
    box-shadow: 0 0 12px rgba(200, 255, 0, 0.8);
}

.offers-final-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.offers-final-cta h2 span {
    color: #c8ff00;
    text-shadow: 0 0 35px rgba(200, 255, 0, 0.22);
}

.offers-final-cta p {
    max-width: 620px;
    margin: 28px auto 38px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 16px;
    line-height: 1.7;
}

.offers-final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    min-width: 220px;
    padding: 7px 8px 7px 24px;

    border: 1px solid rgba(200, 255, 0, 0.35);
    border-radius: 999px;

    background: #c8ff00;
    color: #080808;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 0 35px rgba(200, 255, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offers-final-cta-btn strong {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #090909;
    color: #c8ff00;

    font-size: 18px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

.offers-final-cta-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 45px rgba(200, 255, 0, 0.22);
}

.offers-final-cta-btn:hover strong {
    transform: rotate(45deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .offers-final-cta {
        width: calc(100% - 28px);
        margin: 80px auto 70px;
        padding: 75px 22px;

        border-radius: 26px;
    }

    .offers-final-cta h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .offers-final-cta p {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .offers-final-cta-btn {
        width: 100%;
        max-width: 300px;
    }

}