/* ====================================================================
   ROBLOX VIRAL V3 PRO - ULTRA MODERN GAMING DARK UI
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #0a0d14;
    --bg-card: rgba(16, 22, 34, 0.85);
    --bg-card-hover: rgba(22, 30, 46, 0.95);
    --bg-input: #121824;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(0, 230, 118, 0.4);
    
    --primary: #00e676;
    --primary-glow: rgba(0, 230, 118, 0.35);
    --primary-dark: #00b06f;
    --gold: #ffb703;
    --purple: #8338ec;
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
    --text-dim: #5a6882;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-card: 0 12px 35px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px var(--primary-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 40%, rgba(131, 56, 236, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 183, 3, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Background Animated Grid */
.bg-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------------------
 * NAVBAR
 * -------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
}

.brand-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.nav-brand span {
    color: var(--primary);
    font-weight: 900;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.server-status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.status-text-mobile {
    display: none;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
    transition: all 0.2s ease;
}

.icon-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-highlight);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------
 * HERO BANNER
 * -------------------------------------------------------------------- */
.hero-banner {
    position: relative;
    max-width: 1100px;
    margin: 24px auto 16px;
    padding: 34px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(16, 22, 34, 0.7) 0%, rgba(10, 13, 20, 0.95) 100%), url('../images/bp.jpg') center/cover no-repeat;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.hero-glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 3, 0.12);
    border: 1px solid rgba(255, 183, 3, 0.35);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* Stats Ribbon */
.stats-ribbon {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.stat-val.glow {
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow);
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* --------------------------------------------------------------------
 * STEP INDICATOR
 * -------------------------------------------------------------------- */
.step-indicator-wrapper {
    max-width: 750px;
    margin: 0 auto 24px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
    background: rgba(16, 22, 34, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
}

.step-indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-indicator-item.completed {
    color: var(--primary);
}

.step-indicator-item.completed .step-number {
    background: var(--primary);
    color: #000;
}

.step-indicator-item.current {
    color: #fff;
}

.step-indicator-item.current .step-number {
    background: #fff;
    color: #000;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------
 * MAIN FUNNEL CONTAINER
 * -------------------------------------------------------------------- */
.funnel-container {
    max-width: 750px;
    margin: 0 auto 40px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

.funnel-step {
    display: none;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    box-shadow: var(--shadow-card);
    animation: fadeInStep 0.4s ease forwards;
}

.funnel-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 24px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 14px;
}

/* --------------------------------------------------------------------
 * PASUL 1: INPUT USERNAME & PLATFORMĂ
 * -------------------------------------------------------------------- */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: var(--text-dim);
}

.text-input {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px 14px 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: all 0.25s ease;
}

.text-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.text-input::placeholder {
    color: var(--text-dim);
    font-weight: 400;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.platform-btn {
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 6px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.platform-btn .platform-icon {
    font-size: 26px;
}

.platform-btn .platform-name {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.platform-btn.active {
    background: rgba(0, 230, 118, 0.08);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 14px var(--primary-glow);
}

.security-toggles {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.security-toggle {
    flex: 1;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-info {
    display: flex;
    flex-direction: column;
}

.toggle-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.toggle-sub {
    font-size: 11px;
    color: var(--text-dim);
}

.toggle-pill {
    background: rgba(0, 230, 118, 0.2);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
}

.btn-primary-action {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-glow);
    transition: all 0.25s ease;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

.btn-primary-action:active {
    transform: translateY(0);
}

/* --------------------------------------------------------------------
 * STEP 2: ICONIC FOLDING CUBE LOADER (ROBLOX V3 ORIGINAL ANIMATION)
 * -------------------------------------------------------------------- */
.roblox-loading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0 15px;
}

.folding {
    margin: 15px auto 25px;
    width: 86px;
    height: 86px;
    position: relative;
    transform: rotateZ(45deg);
}

.square {
    position: absolute;
    top: 36%;
    right: 35%;
    width: 26px;
    height: 26px;
    background-color: #101622;
    transform: rotateZ(87deg);
    z-index: 10;
    border-radius: 2px;
}

.folding .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
}

.folding .sk-cube:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    transform-origin: 100% 100%;
    border-radius: 3px;
}

.folding .sk-cube2 {
    transform: scale(1.1) rotateZ(90deg);
}

.folding .sk-cube3 {
    transform: scale(1.1) rotateZ(180deg);
}

.folding .sk-cube4 {
    transform: scale(1.1) rotateZ(270deg);
}

.folding .sk-cube2:before {
    animation-delay: 0.3s;
}

.folding .sk-cube3:before {
    animation-delay: 0.6s;
}

.folding .sk-cube4:before {
    animation-delay: 0.9s;
}

@keyframes sk-foldCubeAngle {
    0%,
    10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

.radar-status-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    margin-top: 10px;
}

.radar-status-text b {
    color: var(--primary);
}

/* Card Rezultat Cont */
.account-result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.avatar-preview-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1a2233;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    object-fit: cover;
}

.avatar-status-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: var(--primary);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    border: 2px solid var(--bg-card);
}

.account-name-verified {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.account-meta-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-pill {
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.meta-pill.green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--primary);
}

/* --------------------------------------------------------------------
 * PASUL 3: SELECTARE PACHETE ROBUX
 * -------------------------------------------------------------------- */
/* --------------------------------------------------------------------
 * STEP 3: LUXURY HORIZONTAL PACKAGE STRIPS
 * -------------------------------------------------------------------- */
.packages-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.package-strip {
    position: relative;
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.package-strip:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    background: rgba(22, 30, 46, 0.98);
    box-shadow: 0 8px 30px -5px rgba(0, 230, 118, 0.25);
}

.package-strip.popular-strip {
    border-color: rgba(255, 183, 3, 0.6);
    background: linear-gradient(90deg, rgba(255, 183, 3, 0.05) 0%, rgba(18, 24, 36, 0.9) 100%);
    box-shadow: 0 0 25px rgba(255, 183, 3, 0.15);
}

.package-strip.popular-strip:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px -5px rgba(255, 183, 3, 0.35);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold) 0%, #f77f00 100%);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 12px;
    border-bottom-left-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.package-strip-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.package-coin-halo {
    position: relative;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    flex-shrink: 0;
}

.popular-strip .package-coin-halo {
    background: rgba(255, 183, 3, 0.1);
    border-color: rgba(255, 183, 3, 0.3);
}

.package-strip-coin {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 230, 118, 0.4));
    transition: transform 0.25s ease;
}

.package-strip:hover .package-strip-coin {
    transform: scale(1.15) rotate(6deg);
}

.package-strip-info {
    display: flex;
    flex-direction: column;
}

.package-strip-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.package-strip-currency {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.popular-strip .package-strip-currency {
    color: var(--gold);
}

.package-strip-bonus-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 230, 118, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    margin-top: 4px;
    width: fit-content;
}

.popular-strip .package-strip-bonus-badge {
    color: var(--gold);
    background: rgba(255, 183, 3, 0.15);
}

.package-strip-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.package-strip-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.package-strip-old {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
}

.package-claim-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    box-shadow: 0 0 14px var(--primary-glow);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.package-strip:hover .package-claim-btn {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
}

/* --------------------------------------------------------------------
 * STEP 4: VISUAL GAMING TRANSFER SCREEN (NO TERMINAL)
 * -------------------------------------------------------------------- */
.transfer-visual-card {
    background: rgba(16, 22, 34, 0.95);
    border: 1.5px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 0 35px rgba(0, 230, 118, 0.15);
}

.transfer-nodes-wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 24px;
    position: relative;
}

.transfer-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.node-avatar-wrap,
.node-coin-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #141b29;
    border: 2.5px solid var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    margin-bottom: 10px;
}

.node-coin-wrap {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.35);
}

.transfer-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.transfer-coin-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.pulsing-coin {
    animation: coin-pulse 1.8s infinite ease-in-out;
}
@keyframes coin-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.4)); }
    50% { transform: scale(1.12); filter: drop-shadow(0 0 16px rgba(255, 183, 3, 0.8)); }
}

.node-badge {
    position: absolute;
    bottom: -6px;
    background: var(--primary);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 999px;
}

.node-badge.gold {
    background: var(--gold);
}

.transfer-node-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.transfer-node-name.glow-gold {
    color: var(--gold);
}

/* Energy Stream */
.transfer-stream {
    flex: 1;
    max-width: 180px;
    margin: 0 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.stream-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    box-shadow: 0 0 12px var(--primary-glow);
    border-radius: 999px;
}

.stream-pulses {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.pulse-dot-stream {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px #fff;
    animation: stream-flow 1.5s infinite linear;
}

.pulse-dot-stream:nth-child(2) { animation-delay: 0.5s; }
.pulse-dot-stream:nth-child(3) { animation-delay: 1s; }

@keyframes stream-flow {
    0% { transform: translateX(-40px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(120px); opacity: 0; }
}

.stream-arrow-icon {
    position: relative;
    z-index: 1;
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    animation: arrow-bounce 1s infinite alternate;
}
@keyframes arrow-bounce {
    from { transform: translateX(-4px); }
    to { transform: translateX(6px); }
}

/* Live Rapid Number Counter */
.live-counter-section {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
}

.counter-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
    margin-top: 4px;
    letter-spacing: -0.5px;
}

/* Status message */
.transfer-status-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulse-dot 1.2s infinite;
}

.progress-section {
    margin-top: 10px;
}

.progress-footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.auto-proceed-hint {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 16px;
    letter-spacing: 0.3px;
    animation: pulse-hint 2s infinite ease-in-out;
}
@keyframes pulse-hint {
    0%, 100% { opacity: 0.8; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

.progress-bar-container {
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, #00ffd5 100%);
    border-radius: 999px;
    box-shadow: 0 0 14px var(--primary-glow);
    transition: width 0.3s ease;
}

/* --------------------------------------------------------------------
 * PASUL 5: ECRAN LOCKER CPA ADBLUEMEDIA (ULTRA MODERN GAMING UI)
 * -------------------------------------------------------------------- */
.cpa-locker-card {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cpa-shield-wrap {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.12);
    border: 2px solid var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
}

.cpa-shield-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 230, 118, 0.4);
    animation: spin-wheel 12s linear infinite;
}

.cpa-shield-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

/* Reserved Payload Ribbon */
.cpa-reserve-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 13px;
}

.cpa-reserve-text {
    color: var(--text-muted);
}

.cpa-reserve-amount {
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.cpa-reserve-divider {
    color: var(--text-dim);
}

.cpa-reserve-user {
    color: #fff;
    font-weight: 600;
}

/* 15-Minute Countdown Timer */
.cpa-timer-wrap {
    margin-bottom: 16px;
}

.cpa-timer-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 8px 20px;
    border-radius: 999px;
    color: #ef4444;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.2);
}

.timer-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timer-digits {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 800;
    color: #ff5252;
}

/* 2-Offer Requirement & Visual Progress Tracker */
.cpa-requirement-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 20px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.cpa-req-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.cpa-req-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

.cpa-req-title strong {
    color: var(--primary);
}

.cpa-req-icon {
    color: var(--gold);
}

.cpa-req-count {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--primary);
    border-radius: 999px;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.cpa-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.cpa-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00e676, #00b06f);
    box-shadow: 0 0 10px var(--primary-glow);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.cpa-steps-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cpa-step-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    transition: all 0.3s ease;
}

.cpa-step-badge-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.cpa-step-badge-label {
    color: var(--text-muted);
}

.cpa-step-badge-label b {
    color: #fff;
}

.cpa-step-badge.in-progress {
    border-color: rgba(255, 183, 3, 0.4);
    background: rgba(255, 183, 3, 0.08);
}

.cpa-step-badge.in-progress .cpa-step-badge-num {
    background: var(--gold);
    color: #000;
}

.cpa-step-badge.in-progress .cpa-step-badge-label b {
    color: var(--gold);
}

.cpa-step-badge.completed {
    border-color: rgba(0, 230, 118, 0.4);
    background: rgba(0, 230, 118, 0.1);
}

.cpa-step-badge.completed .cpa-step-badge-num {
    background: var(--primary);
    color: #000;
}

.cpa-step-badge.completed .cpa-step-badge-label b {
    color: var(--primary);
}

/* CPA OFFERS LIST CONTAINER */
.cpa-offers-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.cpa-loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 36px 20px;
    background: rgba(16, 22, 34, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: 14px;
}

/* Individual CPA Offer Item Card */
.cpa-offer-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 24, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.cpa-offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cpa-offer-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 230, 118, 0.4);
    background: rgba(22, 32, 50, 0.95);
    box-shadow: 0 8px 24px -6px rgba(0, 230, 118, 0.2);
}

.cpa-offer-item:hover::before {
    opacity: 1;
}

/* Offer Header Row */
.cpa-offer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.cpa-offer-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cpa-offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpa-offer-title-wrap {
    min-width: 0;
    flex: 1;
}

.cpa-offer-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.cpa-offer-subtag {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Desktop CTA */
.cpa-offer-action-desktop {
    flex-shrink: 0;
}

/* Mobile CTA (Hidden on desktop) */
.cpa-offer-action-mobile {
    display: none;
    width: 100%;
}

.cpa-offer-action-mobile .cpa-offer-cta {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
}

.cpa-offer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #00e676 0%, #00b06f 100%);
    color: #091018;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.3);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cpa-offer-item:hover .cpa-offer-cta {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 230, 118, 0.5);
}

/* HIGH-VISIBILITY ANCHOR BOX - SPANS FULL WIDTH */
.cpa-offer-anchor-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    text-align: left;
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.06);
}

.cpa-anchor-header {
    flex-shrink: 0;
    margin-top: 1px;
}

.cpa-anchor-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #000;
    background: var(--primary);
    padding: 3px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
}

.cpa-anchor-text {
    font-size: 13px;
    font-weight: 600;
    color: #e2fbf0;
    line-height: 1.4;
    word-break: break-word;
    flex: 1;
}

/* Clicked / In-Progress State for Offer */
.cpa-offer-item.is-clicked {
    border-color: rgba(255, 183, 3, 0.4);
    background: rgba(255, 183, 3, 0.05);
}

.cpa-offer-item.is-clicked .cpa-offer-cta {
    background: rgba(255, 183, 3, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 183, 3, 0.4);
    box-shadow: none;
}

/* Completed State for Offer */
.cpa-offer-item.is-completed {
    border-color: rgba(0, 230, 118, 0.6);
    background: rgba(0, 230, 118, 0.08);
}

.cpa-offer-item.is-completed .cpa-offer-cta {
    background: var(--primary);
    color: #000;
}

/* Locker Footer Controls & Polling Status */
.cpa-locker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cpa-live-polling {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.cpa-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.btn-check-leads {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-check-leads:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-check-leads:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cpa-notice-info {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-top: 10px;
    text-align: center;
}

.verification-status-msg {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    min-height: 20px;
    text-align: center;
}

.spinner-border {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin-wheel 0.8s linear infinite;
}

/* --------------------------------------------------------------------
 * SUCCESS MODAL & CELEBRATION
 * -------------------------------------------------------------------- */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 14, 0.88);
    backdrop-filter: blur(12px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 40px var(--primary-glow);
    animation: zoomModal 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes zoomModal {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-success-icon {
    font-size: 54px;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.modal-body-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-delivery-summary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-around;
}

.summary-col {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.summary-value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

/* --------------------------------------------------------------------
 * SOCIAL PROOF: RECENT ACTIVITY TOAST
 * -------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.live-claim-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 22, 34, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-highlight);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 280px;
    max-width: 360px;
    animation: slideInToast 0.35s ease forwards;
}

@keyframes slideInToast {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-fadeout {
    animation: slideOutToast 0.35s ease forwards;
}

@keyframes slideOutToast {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.toast-avatar img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.toast-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.toast-user {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
}

.toast-badge {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

.toast-claim {
    font-size: 12px;
    color: var(--text-muted);
}

.toast-claim b.glow-text {
    color: var(--primary);
}

.toast-time {
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 3px;
}

.verified-check {
    color: var(--primary);
}

/* --------------------------------------------------------------------
 * SECTIUNE COMENTARII & TESTIMONIALE
 * -------------------------------------------------------------------- */
.community-section {
    max-width: 750px;
    margin: 0 auto 50px;
    padding: 0 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    text-align: center;
}

.section-sub {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 26px;
}

.comment-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.comment-inputs-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.comment-inputs-row input,
.comment-inputs-row select {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    outline: none;
}

.comment-inputs-row input {
    flex: 1;
    min-width: 180px;
}

.comment-textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
    resize: vertical;
    min-height: 70px;
    margin-bottom: 12px;
}

.comment-textarea:focus,
.comment-inputs-row input:focus {
    border-color: var(--primary);
}

.btn-post-comment {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-post-comment:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.comment-success-msg {
    display: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: transform 0.2s ease;
}

.comment-card.comment-new {
    border-color: var(--primary);
    animation: fadeInStep 0.4s ease forwards;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
}

.comment-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.comment-badge {
    font-size: 10px;
    color: var(--primary);
    background: rgba(0, 230, 118, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.comment-stars {
    color: var(--gold);
    font-size: 12px;
    margin-top: 2px;
}

.comment-time {
    font-size: 11px;
    color: var(--text-dim);
}

.comment-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.comment-footer {
    display: flex;
    align-items: center;
}

.like-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.like-btn:hover, .like-btn.liked {
    color: var(--primary);
}

/* --------------------------------------------------------------------
 * FAQ SECTION
 * -------------------------------------------------------------------- */
.faq-section {
    max-width: 750px;
    margin: 0 auto 50px;
    padding: 0 16px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------
 * FOOTER
 * -------------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 34px 20px;
    text-align: center;
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.6;
    background: rgba(8, 11, 16, 0.9);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------------
 * RESPONSIVE RULES
 * -------------------------------------------------------------------- */
@media (max-width: 680px) {
    .hero-title {
        font-size: 28px;
    }
    .funnel-step {
        padding: 24px 18px;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .stats-ribbon {
        gap: 16px;
    }
    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .live-claim-toast {
        max-width: 100%;
        min-width: unset;
    }
    .step-indicator-item span:not(.step-number) {
        display: none;
    }
    .step-indicator {
        padding: 10px 14px;
        justify-content: space-around;
    }
}

@media (max-width: 520px) {
    .navbar {
        padding: 10px 14px;
    }
    .nav-brand {
        font-size: 18px;
        gap: 8px;
        white-space: nowrap;
    }
    .brand-icon {
        width: 28px;
        height: 28px;
    }
    .server-status-pill {
        padding: 5px 10px;
        font-size: 11px;
    }
    .status-text-full {
        display: none;
    }
    .status-text-mobile {
        display: inline;
    }
    .icon-button {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 580px) {
    .funnel-container {
        padding: 0 10px;
    }
    .funnel-step {
        padding: 20px 14px;
        border-radius: var(--radius-lg);
    }
    .step-title {
        font-size: 22px;
    }
    .step-desc {
        font-size: 13px;
    }

    /* Platform Grid (Windows, iOS, Android) */
    .platform-grid {
        gap: 8px;
    }
    .platform-btn {
        padding: 12px 4px;
    }
    .platform-btn .platform-icon {
        font-size: 22px;
    }
    .platform-btn .platform-name {
        font-size: 11px;
    }

    /* Step 3 Package Strips */
    .packages-list-wrap {
        gap: 10px;
    }
    .package-strip {
        padding: 12px 14px;
        gap: 10px;
        border-radius: var(--radius-md);
    }
    .package-strip-left {
        gap: 10px;
        min-width: 0;
        flex: 1;
    }
    .package-coin-halo {
        width: 44px;
        height: 44px;
    }
    .package-strip-coin {
        width: 32px;
        height: 32px;
    }
    .package-strip-amount {
        font-size: 20px;
        gap: 4px;
    }
    .package-strip-currency {
        font-size: 12px;
    }
    .package-strip-bonus-badge {
        font-size: 9px;
        padding: 2px 6px;
        margin-top: 2px;
    }
    .popular-ribbon {
        font-size: 8px;
        padding: 2px 8px;
        letter-spacing: 0.3px;
    }
    .package-strip-old {
        font-size: 11px;
    }
    .package-claim-btn {
        padding: 8px 12px;
        font-size: 11px;
        gap: 4px;
    }

    /* Step 4 Visual Transfer */
    .transfer-visual-card {
        padding: 20px 12px;
    }
    .node-avatar-wrap,
    .node-coin-wrap {
        width: 60px;
        height: 60px;
    }
    .transfer-coin-img {
        width: 34px;
        height: 34px;
    }
    .transfer-stream {
        max-width: 80px;
        margin: 0 6px;
    }
    .counter-number {
        font-size: 32px;
    }
    .transfer-node-name {
        font-size: 12px;
    }

    /* Step 5 CPA Content Locker Mobile */
    .cpa-locker-card {
        padding: 0 4px;
    }
    .cpa-shield-wrap {
        width: 64px;
        height: 64px;
    }
    .cpa-shield-icon {
        font-size: 30px;
    }
    .cpa-reserve-ribbon {
        font-size: 12px;
        padding: 5px 12px;
        gap: 6px;
    }
    .cpa-requirement-box {
        padding: 14px 14px;
    }
    .cpa-req-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .cpa-steps-badges {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .cpa-offer-item {
        padding: 14px;
        gap: 10px;
    }
    .cpa-offer-action-desktop {
        display: none;
    }
    .cpa-offer-action-mobile {
        display: flex;
    }
    .cpa-offer-anchor-box {
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px;
    }
    .cpa-offer-icon-wrap {
        width: 42px;
        height: 42px;
    }
    .cpa-offer-name {
        font-size: 14px;
    }
    .cpa-anchor-text {
        font-size: 12.5px;
    }
    .cpa-locker-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .btn-check-leads {
        justify-content: center;
        width: 100%;
    }
}
