/* ============================================
   NEW SECTIONS - UNFAIR ADVANTAGE, LEVERAGE, VSL, PRICING
   ============================================ */

/* ============================================
   SECTION 1: UNFAIR ADVANTAGE
   ============================================ */
.unfair-advantage {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.neon-glow {
    text-shadow:
        0 0 20px rgba(74, 158, 255, 0.4),
        0 0 40px rgba(74, 158, 255, 0.2);
}

.advantage-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-light-gray);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.highlight-text {
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold);
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.advantage-visual {
    max-width: 1000px;
    margin: 0 auto;
}

.player-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.player-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.player-side.traditional {
    background: rgba(138, 138, 138, 0.05);
    border: 1px solid rgba(138, 138, 138, 0.1);
}

.player-side.you {
    background: rgba(74, 158, 255, 0.05);
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.player-side.you:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.2);
}

.player-icons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    min-height: 100px;
    align-items: center;
}

.player-icon {
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.player-icon.small {
    width: 40px;
    height: 40px;
    background: rgba(138, 138, 138, 0.3);
    border: 2px solid rgba(138, 138, 138, 0.4);
}

.player-icon.large {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.3) 0%, transparent 70%);
    border: 3px solid var(--color-accent);
    position: relative;
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(74, 158, 255, 0.6);
    }
}

.glow-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    opacity: 0.3;
    animation: ring-expand 3s ease-out infinite;
}

.glow-ring.delayed {
    animation-delay: 1.5s;
}

@keyframes ring-expand {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.player-label {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-light-gray);
}

.player-label.highlighted {
    color: var(--color-accent);
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
}

.player-stats {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid;
}

.stat-item.muted {
    color: var(--color-light-gray);
    border-color: rgba(138, 138, 138, 0.3);
    background: rgba(138, 138, 138, 0.05);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-dark-gray);
    border: 2px solid var(--color-accent);
    position: relative;
}

.vs-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

/* ============================================
   SECTION 2: LEVERAGE
   ============================================ */
.leverage-section {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--color-near-black);
}

.leverage-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.leverage-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.leverage-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.leverage-point {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    background: rgba(74, 158, 255, 0.1);
    border-radius: 50%;
    border: 2px solid var(--color-accent);
}

.point-content h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.point-content p {
    color: var(--color-light-gray);
    line-height: 1.6;
}

.leverage-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.lever-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.2));
}

.lever-bar {
    animation: lever-tilt 4s ease-in-out infinite;
}

@keyframes lever-tilt {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 200px 180px;
    }

    50% {
        transform: rotate(-2deg);
        transform-origin: 200px 180px;
    }
}

.small-force {
    animation: force-bounce 2s ease-in-out infinite;
}

@keyframes force-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.large-output,
.output-glow {
    animation: output-pulse 3s ease-in-out infinite;
}

@keyframes output-pulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.pulse-ring {
    animation: pulse-expand 3s ease-out infinite;
}

.pulse-ring.delayed {
    animation-delay: 1.5s;
}

@keyframes pulse-expand {
    0% {
        r: 40;
        opacity: 0.4;
    }

    100% {
        r: 60;
        opacity: 0;
    }
}

/* ============================================
   SECTION 3: VSL BLOCK
   ============================================ */
.vsl-block {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-xxl);
    background: var(--color-black);
}

.vsl-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vsl-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(74, 158, 255, 0.3);
    background: var(--color-dark-gray);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.vsl-frame:hover {
    border-color: var(--color-accent);
    box-shadow:
        0 0 40px rgba(74, 158, 255, 0.3),
        inset 0 0 60px rgba(74, 158, 255, 0.1);
    transform: translateY(-4px);
}

.vsl-placeholder-new {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.play-icon {
    width: 80px;
    height: 80px;
    transition: all var(--transition-normal);
}

.vsl-frame:hover .play-icon {
    transform: scale(1.1);
}

.play-circle {
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {

    0%,
    100% {
        opacity: 0.8;
        stroke-width: 2;
    }

    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

.play-triangle {
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
}

.vsl-placeholder-text {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    opacity: 0.6;
}

.vsl-caption {
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* ============================================
   SECTION 4: PRICING BLOCK
   ============================================ */
.pricing-block {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--color-near-black);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-dark-gray);
    border: 2px solid rgba(74, 158, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-accent), transparent, var(--color-accent));
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.pricing-card:hover::before {
    opacity: 0.3;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(74, 158, 255, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.pricing-subtitle {
    color: var(--color-light-gray);
    font-size: 1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-white);
    font-size: 1rem;
}

.feature-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(74, 158, 255, 0.4));
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.3);
}

.pricing-cta {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-light-gray);
    font-style: italic;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    /* Pill shape */
    padding: 0.75rem 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(74, 158, 255, 0.2);
    animation: float-in 0.5s ease-out;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float-in {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.floating-cta-content {
    display: flex;
    flex-direction: row;
    /* Horizontal layout by default */
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    justify-content: space-between;
}

.cta-progress {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Tighter spacing */
    flex: 1;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.spots-text {
    color: var(--color-white);
    font-weight: var(--font-weight-semibold);
}

.spots-count {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

.progress-bar-container {
    height: 4px;
    /* Thinner */
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), #00d4ff);
    border-radius: var(--radius-full);
    animation: progress-glow 2s ease-in-out infinite;
}

@keyframes progress-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
    }
}

.floating-cta-button {
    width: auto;
    min-width: 120px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(74, 158, 255, 0.6);
    }
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .player-comparison {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .vs-divider {
        width: 60px;
        height: 60px;
        margin: var(--spacing-md) auto;
    }

    .vs-text {
        font-size: 1.2rem;
    }

    .leverage-split {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .leverage-text .section-title {
        text-align: center;
    }

    .leverage-visual {
        order: -1;
    }

    .floating-cta {
        bottom: var(--spacing-md);
        /* Safe margin from bottom */
        max-width: 92vw;
        /* Mobile width constraint */
        flex-direction: column;
        padding: 0.75rem 1rem;
        border-radius: 16px;
        /* Slightly less rounded on mobile to fit content if needed, or keep pill */
    }

    .floating-cta-content {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .floating-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .player-icon.large {
        width: 80px;
        height: 80px;
    }

    .pricing-card {
        padding: var(--spacing-lg);
    }

    .price-amount {
        font-size: 3rem;
    }

    .leverage-point {
        flex-direction: column;
        text-align: center;
    }

    .point-icon {
        margin: 0 auto;
    }
}