:root {
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-heading: 'Lora', serif;

    --color-title: #0C4464;
    --color-text: #353c46;
    --color-white: #ffffff;
    --background: #F8FAFC;

    --font-size-36: 36px;
    --font-size-20: 20px;
    --font-size-18: 18px;
    --font-size-16: 16px;
    --margin-bottom: 20px;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --background-lin: linear-gradient(135deg, #03108D 0%, #1CB5E0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.2;
    background: var(--background);
    color: var(--color-text);
}

.wrap-affiliate {
    width: 100%;
    overflow-x: hidden;
}

/* ======================================== Hero Section ======================================== */
.aff-hero {
    background: linear-gradient(60deg, #03108D 0%, #1CB5E0 100%);
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.aff-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 10px 20px, white, transparent),
        radial-gradient(1.5px 1.5px at 40px 60px, rgba(255, 255, 255, .8), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, .6), transparent),
        radial-gradient(3px 3px at 130px 80px, rgba(255, 255, 255, .9), transparent);

    background-size: 150px 150px;
    background-repeat: repeat;
    opacity: .7;
}

.hero-container {
    max-width: 1240px;
    min-height: 600px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

/* Left Side */
.aff-hero__left {
    max-width: 680px;
}

.aff-badge {
    display: inline-block;
    font-size: var(--font-size-18);
    font-family: initial;
    color: var(--color-white);
    background: linear-gradient(60deg, #FF8E53 0%, #FF6B6B 100%);
    padding: 4px 25px 4px 10px;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
    margin-bottom: 25px;
}

.aff-hero__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-white);
    font-family: var(--font-heading);
    background: linear-gradient(120deg, #FAFAFA 0%, #FAFAFA 30%, #38BDF8 45%, #D0A3F8 60%, #FAFAFA 75%, #FFFFFF 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGlow 10s ease-in-out infinite;
}

@keyframes shimmerGlow {

    0%,
    100% {
        background-position: -200% 0;
        filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
    }

    50% {
        background-position: 0% 0;
        filter: drop-shadow(0 0 8px rgba(255, 141, 192, 0.4));
    }
}

/* Video Section */
.aff-video {
    margin-top: 30px;
    width: 85%;
}

.aff-showcase {
    width: 90%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.aff-video__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.aff-thumbnail,
.aff-element {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aff-thumbnail {
    z-index: 1;
    transition: opacity 0.3s ease;
}

.aff-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Video Controls */
.playback-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.aff-video__wrapper:hover .playback-controls,
.playback-controls.active {
    opacity: 1;
}

.ctrl-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-white);
    transition: transform 0.2s ease;
}

.ctrl-btn:hover {
    transform: scale(1.1);
}

.ctrl-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.ctrl-icon.hidden {
    display: none;
}

.timeline-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

.timeline-bar:hover {
    height: 8px;
}

.timeline-progress {
    height: 100%;
    background: #FF6B6B;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.timeline-bar:hover .timeline-progress::after {
    opacity: 1;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 0;
    height: 4px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.audio-controls:hover .volume-slider {
    width: 80px;
    opacity: 1;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.aff-video__description {
    margin-top: 18px;
    font-size: var(--font-size-16);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 14px;
    border-radius: 8px;
    line-height: 1.5;
}

/* Right Side*/
.aff-hero__right {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.aff-stats {
    position: relative;
}

.aff-stats__card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    padding: 20px;
    text-align: center;
    align-content: center;
    position: absolute;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.aff-stats__value {
    font-size: 32;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.aff-stats__label {
    font-size: var(--font-size-18);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.4;
}

/* Individual card styles */
.aff-stats__card--offers {
    width: 200px;
    height: 200px;
    top: 0;
    right: 35%;
    animation: floatUp 4s ease-in-out infinite;
}

.aff-stats__card--revenue {
    width: 170px;
    height: 170px;
    left: 0;
    top: 240px;
    animation: floatUp 4s ease-in-out infinite 1.3s;
}

.aff-stats__card--market {
    width: 180px;
    height: 180px;
    right: 0;
    top: 180px;
    animation: floatUp 4s ease-in-out infinite 2.6s;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.aff-hero__subtitle {
    font-size: var(--font-size-18);
    color: var(--color-white);
    line-height: 1.6;
    position: absolute;
    z-index: 2;
    bottom: -110px;
}

/* Shooting Stars - Right Side Only */
.shooting-stars {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    animation: shootingStar 3s linear infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
    transform: translateX(2px) translateY(1px) rotate(-45deg);
    border-radius: 50%;
}

@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateX(-500px) translateY(500px);
        opacity: 0;
    }
}

.shooting-star:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.shooting-star:nth-child(2) {
    top: 5%;
    right: 30%;
    animation-delay: 1.2s;
    animation-duration: 3s;
}

.shooting-star:nth-child(3) {
    top: 15%;
    right: 50%;
    animation-delay: 2.5s;
    animation-duration: 2.8s;
}

.shooting-star:nth-child(4) {
    top: 8%;
    right: 20%;
    animation-delay: 4s;
    animation-duration: 3.2s;
}

.shooting-star:nth-child(5) {
    top: 20%;
    right: 40%;
    animation-delay: 5.5s;
    animation-duration: 2.7s;
}

.shooting-star:nth-child(6) {
    top: 12%;
    right: 15%;
    animation-delay: 3.5s;
    animation-duration: 3.5s;
}

/* ======================================== Affiliate Interface ======================================== */

.affiliate-interface {
    padding: 30px 0;
}

.interface-container {
    max-width: 1240px;
    margin: 0 auto;
}

.interface-header {
    text-align: center;
    margin-bottom: var(--margin-bottom);
}

.badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--color-white);
    background: var(--background-lin);
}

.interface-title {
    font-size: var(--font-size-36);
    font-weight: 700;
    color: var(--color-title);
    line-height: 1.2;
    margin: 20px 0;
    font-family: var(--font-heading);
}

.interface-subtitle {
    font-size: var(--font-size-18);
    color: var(--color-text);
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: var(--margin-bottom);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 10px 20px;
    color: var(--color-text);
    background: var(--color-white);
    font-size: var(--font-size-16);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);

}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.tab-btn.active {
    background: var(--background-lin);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.tab-btn.active .tab-icon {
    filter: brightness(0) invert(1);
}

.tab-icon {
    filter: brightness(0%) saturate(100%) invert(20%) sepia(43%) saturate(670%) hue-rotate(180deg) brightness(91.9%) contrast(90%);
    width: 22px;
    height: 22px;
    transition: filter 0.3s;
    object-fit: contain;
}

.tab-btn>span {
    color: var(--color-title);
}

.tab-btn.active span {
    color: var(--color-white);
}

.tab-content-wrapper {
    min-height: 450px;
}

.tab-content {
    display: none;
    opacity: 0;
}

.tab-content.active {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: fadeIn 0.6s ease forwards;
}

.content-left {
    flex: 1;
    animation: slideInLeft 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-right {
    flex: 1;
    animation: slideInRight 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--margin-bottom);
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.feature-icon-wrapper img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.feature-title {
    font-size: 32px;
    color: var(--color-title);
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.feature-description {
    font-size: var(--font-size-18);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--margin-bottom);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: var(--font-size-16);
    color: var(--color-text);
    line-height: 1.7;
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.feature-item-icon {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: var(--font-size-16);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

/* Auto-stagger delay */
.feature-item:nth-child(n) {
    animation-delay: calc(0.4s + (var(--item-index, 0) * 0.05s));
}

.feature-item:nth-child(1) {
    --item-index: 0;
}

.feature-item:nth-child(2) {
    --item-index: 1;
}

.feature-item:nth-child(3) {
    --item-index: 2;
}

.feature-item:nth-child(4) {
    --item-index: 3;
}

.feature-item:nth-child(5) {
    --item-index: 4;
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: var(--font-size-16);
    font-weight: 600;
    cursor: pointer;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.dashboard-preview {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s cubic-bezier(.68, .14, .29, .83) infinite;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-color-theme="0"] .feature-icon-wrapper,
[data-color-theme="0"] .feature-item-icon {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

[data-color-theme="0"] .btn {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
}

[data-color-theme="1"] .feature-icon-wrapper,
[data-color-theme="1"] .feature-item-icon {
    background: linear-gradient(135deg, #A855F7, #DB2777);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

[data-color-theme="1"] .btn {
    background: linear-gradient(135deg, #A855F7, #DB2777);
}

[data-color-theme="2"] .feature-icon-wrapper,
[data-color-theme="2"] .feature-item-icon {
    background: linear-gradient(135deg, #10B981, #0D9488);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

[data-color-theme="2"] .btn {
    background: linear-gradient(135deg, #10B981, #0D9488);
}

[data-color-theme="3"] .feature-icon-wrapper,
[data-color-theme="3"] .feature-item-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* ======================================== Slide ======================================== */

.affiliate-slide {
    width: 100%;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1D4ED8, #4F46E5, #7C3AED, #9333EA, #C026D3, #DB2777);
    background-size: 300% 300%;
    animation: gradientFlow 10s linear infinite;
}

.affiliate-slide::after {
    content: '';
    position: absolute;
    background: #ffffff25;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    right: 200px;
    bottom: -30px;
}

.affiliate-slide::before {
    content: '';
    position: absolute;
    background: #ffffff25;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    right: -50px;
    top: -32px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.slide-container {
    max-width: 1240px;
    margin: auto;
}

.slides-wrapper {
    position: relative;
    height: 300px;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide-left {
    flex: 1;
    color: white;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: var(--font-heading)
}

.slide-description {
    font-size: var(--font-size-16);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

.slide-stats {
    display: flex;
    gap: 100px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.slide-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.slide-image {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: var(--background-lin);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    width: 32px;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(3, 16, 141, 0.3);
}

.dot:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* ======================================== Slide ======================================== */
.affiliate-partner {
    width: 100%;
    padding: 30px 0;
}

.partner-container {
    max-width: 1240px;
    margin: 0 auto;
}

.partner-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--color-white);
    background: var(--background-lin);
}

.partner-heading {
    font-size: var(--font-size-36);
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--color-title);
    font-family: var(--font-heading);
}

.partner-heading .highlight {
    background: var(--background-lin);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.underline {
    width: 250px;
    height: 5px;
    border-radius: 5px;
    background: var(--background-lin);
    margin-bottom: 25px;
}

.partners-wap {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    align-items: flex-start;
}

.partners-list {
    width: 53%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0 10px;
}


.partner-card {
    width: 200px;
    height: 140px;
    padding: 20px;
    border-radius: 12px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* LOGO BOX */
.partner-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 85%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-name {
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--color-title);
    text-align: center;
}

.info-section {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-card {
    background: var(--color-white);
    border-radius: 12px;
    color: var(--color-text);
    padding: 14px;
}

.info-card h3 {
    font-size: var(--font-size-16);
    font-weight: 600;
    margin-bottom: 12px;
    background: var(--background-lin);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--color-white);
}

.info-card p {
    font-size: var(--font-size-16);
    line-height: 1.6;
    opacity: 0.95;
}

/* ======================================== Payment ======================================== */

.affiliate-payment {
    width: 100%;
    padding: 20px 0;
    background: #F8FAFC;
}

.payment-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #03108D 0%, #1CB5E0 100%);
    margin-bottom: 20px;
}

.payment-title {
    font-size: 36px;
    font-weight: 700;
    color: #0C4464;
    margin-bottom: 12px;
    font-family: 'Lora', serif;
}

.payment-subtitle {
    font-size: 18px;
    color: #353c46;
}

/* ---------- 3D Carousel ---------- */
.payment-carouselss {
    perspective: 1240px;
    overflow: visible;
}

.payment-carousel {
    position: relative;
    width: 100%;
    height: 0;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    overflow: visible;
}


/* ---------- Card ---------- */
.payment-column {
    position: absolute;
    width: 520px;
    background: var(--color-white);
    border-radius: 20px;
    padding: 26px 16px;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.payment-column.left {
    transform: translateX(-570px) translateZ(-350px) rotateY(40deg) scale(0.82);
    opacity: 0.4;
    z-index: 1;
}

.payment-column.center {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.payment-column.right {
    transform: translateX(570px) translateZ(-350px) rotateY(-40deg) scale(0.82);
    opacity: 0.4;
    z-index: 1;
}

/* Hover side cards */
.payment-column.left:hover:not(.center) {
    opacity: 0.65;
    transform: translateX(-570px) translateZ(-300px) rotateY(40deg) scale(0.88);
}

.payment-column.right:hover:not(.center) {
    opacity: 0.65;
    transform: translateX(570px) translateZ(-300px) rotateY(-40deg) scale(0.88);
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.column-description {
    font-size: var(--font-size-16);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Payment Terms */
.terms-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-item {
    background: #F8FAFC;
    border-left: 4px solid #3B82F6;
    border-radius: 8px;
    padding: 16px;
    transition: var(--transition);
}

.terms-item:hover {
    background: #EFF6FF;
    transform: translateX(5px);
}

.terms-item-title {
    font-size: var(--font-size-16);
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 8px;
}

.terms-item-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.method-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.method-card:hover {
    background: var(--color-white);
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.12);
}

.method-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--color-white);
}

.method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.method-name {
    font-size: var(--font-size-16);
    font-weight: 600;
    color: var(--color-title);
}

.withdraw-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.withdraw-image .aff-showcase {
    margin: auto;
    background: rgba(0, 0, 0, 0.05);
    padding: 0;
}

.withdraw-image .aff-video__wrapper {
    max-height: 250px;
}

/* ======================================== Signup now ======================================== */

.affiliate-nowup {
    margin-top: 500px;
    padding: 60px 0;
    background: linear-gradient(126deg, #03108D 0%, #1CB5E0 100%);
}


.nowup-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nowup-title {
    font-size: var(--font-size-36);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0 0 35px 0;
    font-family: var(--font-heading);
}

.nowup-description {
    font-size: 20px;
    color: var(--color-white);
}

.nowup-button {
    border: none;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
    background-color: var(--color-white);
    box-shadow: 0 4px 10px 0 #5a6a7738;
    cursor: pointer;
    transition: var(--transition);
}

.nowup-button a {
    padding: 15px 35px;
    display: block;
    text-decoration: none;
    background: linear-gradient(90deg, #9333EA, #DB2777);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nowup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 208, 222, 0.3);
}

@media (min-width: 1620px) {

    .hero-container {
        max-width: 1400px;
        min-height: 650px;
        padding: 45px 0;
    }

    .aff-badge {
        font-size: var(--font-size-20);
    }

    .aff-hero__title {
        font-size: 48px;
        line-height: 1.6;
    }

    .aff-hero__left {
        max-width: 820px;
    }

    .aff-showcase {
        width: 80%;
    }

    .aff-video__description,
    .aff-stats__label {
        font-size: var(--font-size-18);
    }

    .aff-hero__subtitle {
        font-size: var(--font-size-20);
    }

    .aff-stats__card--offers {
        top: -44px;
    }

    .aff-stats__card--revenue {
        left: -35px;
        top: 185px;
    }

    /* Section 2 */
    .affiliate-interface,
    .affiliate-partner {
        padding: 40px 0;
    }

    .interface-container,
    .slide-container,
    .partner-container,
    .payment-container,
    .nowup-container {
        max-width: 1400px;
    }

    .badge,
    .stat-label,
    .partner-badge {
        font-size: var(--font-size-16);
    }

    .interface-subtitle {
        font-size: var(--font-size-20);
    }

    .tab-btn,
    .feature-item,
    .btn,
    .slide-description,
    .info-card h3,
    .info-card p,
    .terms-item-title {
        font-size: var(--font-size-18);
    }

    .tab-icon {
        width: 24px;
        height: 24px;
    }

    /* Section 3 */
    .affiliate-slide {
        padding-bottom: 40px;
    }

    .slide-badge,
    .payment-badge {
        font-size: var(--font-size-16);
    }

    .slide-title {
        font-size: var(--font-size-36);
    }

    .slide-image {
        max-width: 500px;
        max-height: 300px;
    }

    .slide-image img {
        object-fit: contain;
    }

    /* Section 4 */

    .partner-card {
        width: 230px;
        height: 150px;
    }

    .partners-wap {
        gap: 60px;
    }

    .partners-list {
        width: 60%;
    }

    /* section 5 */
    .payment-carouselss {
        perspective: 1400px;
    }

    .payment-header {
        margin-bottom: 30px;
    }

    .payment-column {
        width: 555px;
        padding: 26px 20px;
    }

    .column-title {
        font-size: 32px;
    }

    .payment-subtitle,
    .column-description,
    .method-name {
        font-size: var(--font-size-20);
    }

    .terms-item-text {
        font-size: 17px;
    }

    .terms-list {
        gap: 20px;
    }

    .method-card {
        padding: 10px;
    }

    .method-icon {
        width: 100px;
        height: 100px;
    }

    .method-icon img {
        width: 90%;
        height: 90%;
    }

    .withdraw-image .aff-showcase {
        width: 100% !important;
    }

    .withdraw-image .aff-video__wrapper {
        max-height: none;
    }

    /* Section 6 */
    .affiliate-nowup {
        margin-top: 600px;
    }

    .payment-column.left {
        transform: translateX(-630px) translateZ(-350px) rotateY(35deg) scale(0.82);
    }

    .payment-column.right {
        transform: translateX(630px) translateZ(-350px) rotateY(-35deg) scale(0.82)
    }
}