/* =============================================
   Jackpot Party Casino – CPA Landing Page V2
   Premium casino theme  |  High-conversion design
   ============================================= */

/* ─── Design Tokens ─── */
:root {
    --bg-dark: #080411;
    --bg-card: rgba(16, 10, 32, 0.82);
    --card-border: rgba(255, 215, 0, 0.10);
    --primary: #ffd700;
    --primary-hsl: 51, 100%, 50%;
    --primary-glow: rgba(255, 215, 0, 0.30);
    --secondary: #e52e71;
    --secondary-glow: rgba(229, 46, 113, 0.25);
    --accent: #9b59b6;
    --accent-glow: rgba(155, 89, 182, 0.25);
    --text-main: #ffffff;
    --text-muted: #b0a8c4;
    --success: #2ecc71;
    --danger: #ef4444;
    --terminal-bg: #06040e;
    --font-sans: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-mono: 'Fira Code', 'Consolas', monospace;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Deep Casino Background ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 44%, rgba(155, 89, 182, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 28%, rgba(229, 46, 113, 0.14) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 35%),
        var(--bg-dark);
    z-index: -3;
}

/* ─── Particle Canvas ─── */
#coin-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ─── Background Blobs ─── */
.background-effects {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    animation: blobFloat 22s infinite ease-in-out alternate;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--secondary);
    top: -18%;
    right: -12%;
}

.blob-2 {
    width: 620px;
    height: 620px;
    background: var(--accent);
    bottom: -22%;
    left: -16%;
    animation-delay: -8s;
}

.blob-3 {
    width: 380px;
    height: 380px;
    background: var(--primary);
    top: 50%;
    left: 45%;
    opacity: 0.18;
    animation-delay: -4s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 25%, transparent 75%);
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(6%, 10%) scale(1.12);
    }
}

/* ─── Floating Slot Symbols ─── */
.floating-symbols {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.float-sym {
    position: absolute;
    font-size: calc(2rem * var(--s, 1));
    top: -60px;
    left: var(--x, 50%);
    animation: symbolDrift var(--d, 15s) linear infinite;
    opacity: 0.12;
    filter: blur(1px);
}

@keyframes symbolDrift {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    8% {
        opacity: 0.12;
    }

    92% {
        opacity: 0.12;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 480px;
    padding: 16px;
    perspective: 1000px;
    z-index: 1;
}

/* ═══════ URGENCY BANNER ═══════ */
.urgency-banner {
    background: linear-gradient(135deg, rgba(229, 46, 113, 0.18), rgba(255, 215, 0, 0.10));
    border: 1px solid rgba(229, 46, 113, 0.25);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 12px;
    text-align: center;
    animation: urgencyGlow 2.5s ease-in-out infinite alternate;
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.4px;
}

.urgency-inner i {
    color: var(--secondary);
    animation: fireFlicker 0.6s ease-in-out infinite alternate;
}

.countdown {
    background: rgba(229, 46, 113, 0.25);
    padding: 2px 10px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary);
    border: 1px solid rgba(229, 46, 113, 0.30);
    min-width: 52px;
    text-align: center;
}

@keyframes urgencyGlow {
    0% {
        box-shadow: 0 0 0 rgba(229, 46, 113, 0);
    }

    100% {
        box-shadow: 0 0 18px rgba(229, 46, 113, 0.10);
    }
}

@keyframes fireFlicker {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* ═══════ CARD ═══════ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow:
        0 4px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(255, 215, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    transform-origin: top center;
}

.card.hidden {
    display: none;
    opacity: 0;
    transform: translateY(24px) scale(0.94);
}

.card.active {
    display: block;
    animation: cardEnter 0.55s var(--ease) forwards;
}

@keyframes cardEnter {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ═══════ COMMUNITY BADGE ═══════ */
.community-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.18);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 0.80rem;
    color: var(--success);
    animation: badgePulse 3s ease-in-out infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.12);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
}

/* ═══════ HEADER ═══════ */
.header-section {
    text-align: center;
    margin-bottom: 26px;
}

.logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.logo-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ringPulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 22px var(--primary-glow);
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.3;
    }
}

.logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 35px var(--primary-glow), 0 0 60px rgba(255, 215, 0, 0.15);
    animation: logoHover 3s ease-in-out infinite;
    border: 2px solid rgba(255, 215, 0, 0.25);
}

@keyframes logoHover {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.header-section h1 {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
    text-shadow: 0 0 22px rgba(255, 215, 0, 0.25);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-bottom: 8px;
}

.stars-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.stars-rating i {
    color: var(--primary);
    font-size: 0.85rem;
}

.stars-rating span {
    color: var(--text-muted);
    margin-left: 6px;
    font-size: 0.73rem;
}

.last-updated {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.working-tag {
    color: var(--success);
    font-weight: 700;
}

/* ═══════ FORM ELEMENTS ═══════ */
.input-group,
.platform-selection,
.resource-selection {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.80rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

label i {
    margin-right: 5px;
}

.input-wrapper {
    position: relative;
}

input[type="text"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.40);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

input[type="text"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.10);
}

.input-glow {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: width 0.4s var(--ease);
    border-radius: 2px;
}

input[type="text"]:focus+.input-glow {
    width: 80%;
}

/* ═══════ PLATFORMS ═══════ */
.platforms {
    display: flex;
    gap: 10px;
}

.platform-btn {
    flex: 1;
    background: rgba(0, 0, 0, 0.30);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.platform-btn span {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.platform-btn:hover {
    background: rgba(255, 215, 0, 0.04);
    color: var(--text-main);
}

.platform-btn.active {
    background: rgba(255, 215, 0, 0.10);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: inset 0 0 22px rgba(255, 215, 0, 0.07), 0 0 16px rgba(255, 215, 0, 0.08);
}

/* ═══════ RANGE SLIDERS ═══════ */
.amount-display {
    text-align: center;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 14px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.glow-icon {
    font-size: 1.3rem;
}

.coin-icon {
    color: var(--primary);
    text-shadow: 0 0 14px var(--primary-glow);
}

.spin-icon {
    color: var(--secondary);
    text-shadow: 0 0 14px var(--secondary-glow);
    animation: spinIcon 3.5s linear infinite;
}

@keyframes spinIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    cursor: pointer;
    box-shadow: 0 0 16px var(--primary-glow);
    transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 16px var(--primary-glow);
}

/* ═══════ PRIMARY CTA BUTTON ═══════ */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #ff8c00, var(--secondary));
    background-size: 200% 200%;
    animation: shimmerCTA 3s ease infinite;
    border: none;
    border-radius: var(--radius-md);
    padding: 16px;
    color: #1a0a2e;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.22);
    position: relative;
    overflow: hidden;
}

@keyframes shimmerCTA {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
    transition: 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 38px rgba(255, 215, 0, 0.38);
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:active {
    transform: translateY(1px);
}

/* ═══════ TRUST BADGES ═══════ */
.trust-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge i {
    color: var(--success);
    font-size: 0.72rem;
}

/* ═══════ SOCIAL PROOF BAR ═══════ */
.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-stat strong {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-stat span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.proof-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
}

/* ═══════ TERMINAL VIEW ═══════ */
#terminal-view {
    padding: 0;
    overflow: hidden;
}

.terminal-header {
    background: #120c22;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-header .title {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.terminal-body {
    background: var(--terminal-bg);
    height: 300px;
    padding: 14px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--success);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Scrollbar */
.terminal-body::-webkit-scrollbar {
    width: 4px;
}

.terminal-body::-webkit-scrollbar-track {
    background: transparent;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.15);
    border-radius: 4px;
}

.log-line {
    opacity: 0;
    transform: translateX(-12px);
    animation: lineFadeIn 0.35s forwards;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
}

@keyframes lineFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.log-line.error {
    color: var(--danger);
}

.log-line.warning {
    color: var(--primary);
}

.log-line.info {
    color: var(--accent);
}

.log-line.success {
    color: var(--success);
}

.progress-box {
    padding: 16px 18px;
    background: #120c22;
    border-top: 1px solid var(--card-border);
}

.progress-box.hidden {
    display: none;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}

.progress-label span:first-child {
    color: var(--text-muted);
}

.progress-label span:last-child {
    color: var(--primary);
    font-family: var(--font-mono);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    border-radius: 4px;
    box-shadow: 0 0 14px var(--primary-glow);
    transition: width 0.3s linear;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: progressShine 1.5s linear infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

/* ═══════ MODAL OVERLAY ═══════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 1, 12, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 16px;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(180deg, #1a0e30, #0f081e);
    border: 1px solid rgba(255, 215, 0, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(255, 215, 0, 0.04);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    transform: scale(0.88) translateY(20px);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.modal-overlay:not(.hidden) .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, rgba(229, 46, 113, 0.12), rgba(255, 215, 0, 0.06));
    padding: 24px 20px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.warning-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 14px var(--primary-glow));
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-6px);
    }

    40% {
        transform: translateY(0);
    }
}

.modal-header h2 {
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.modal-body {
    padding: 22px;
    text-align: center;
}

/* Pending resources display */
.pending-resources {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.pending-item {
    flex: 1;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.10);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pending-item i {
    font-size: 1.3rem;
    color: var(--primary);
}

.pending-item span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.pending-item small {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.modal-body>p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Steps with arrows */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-number {
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #1a0a2e;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.10);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 0.95rem;
}

.step p {
    font-size: 0.70rem;
    margin: 0;
    line-height: 1.3;
    color: var(--text-muted);
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 28px;
    color: rgba(255, 215, 0, 0.30);
    font-size: 0.7rem;
}

/* Verify CTA */
.btn-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    color: #1a0a2e;
    text-decoration: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 14px;
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.22);
    transition: var(--transition);
    animation: ctaPulse 2s infinite;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-verify::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: verifyShine 2s ease-in-out infinite;
}

@keyframes verifyShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 28px rgba(255, 215, 0, 0.22);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 38px rgba(255, 215, 0, 0.38);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 28px rgba(255, 215, 0, 0.22);
    }
}

.btn-verify:hover {
    transform: translateY(-2px);
}

.verify-timer {
    font-size: 0.75rem;
    opacity: 0.8;
}

.secure-badge {
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ═══════ TOAST NOTIFICATIONS ═══════ */
.toast-container {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 90%;
    max-width: 380px;
    pointer-events: none;
}

.toast {
    background: linear-gradient(135deg, rgba(16, 10, 32, 0.92), rgba(26, 14, 48, 0.92));
    border: 1px solid rgba(255, 215, 0, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.40);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-content p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text-muted);
}

.toast-content p:first-child {
    color: var(--text-main);
    margin-bottom: 2px;
}

.toast-content strong {
    color: var(--primary);
}

.toast-content span {
    color: var(--primary);
    font-weight: 700;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .header-section h1 {
        font-size: 1.4rem;
    }

    .amount-display {
        font-size: 1.5rem;
    }

    .urgency-inner {
        font-size: 0.70rem;
    }

    .social-proof-bar {
        gap: 10px;
    }

    .proof-stat strong {
        font-size: 0.95rem;
    }

    .proof-stat span {
        font-size: 0.60rem;
    }

    .steps-container {
        gap: 4px;
    }

    .step-arrow {
        font-size: 0.55rem;
    }
}

@media (max-width: 360px) {
    .header-section h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .platforms {
        gap: 6px;
    }

    .platform-btn {
        padding: 10px 6px;
    }

    .trust-badges {
        gap: 4px;
    }

    .badge {
        font-size: 0.62rem;
        padding: 5px 7px;
    }
}