:root {
    /* Main Palette */
    --bg-main: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --primary-green: #5c7a5c;
    --neon-green: #4ade80;
    --electric-blue: #00d4ff;
    --secondary-blue: #0ea5e9;
    --amber: #fbbf24;
    --orange: #ff8c00;
    --red: #ef4444;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gray-mid: #666666;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing & Borders */
    --border-thin: 1px solid rgba(255, 255, 255, 0.1);
    --border-neon: 1px solid rgba(74, 222, 128, 0.5);
    --shadow-soft: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(74, 222, 128, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, var(--bg-secondary) 0%, var(--bg-main) 100%);
    z-index: -3;
}

#grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

h1.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.text-neon {
    color: var(--neon-green);
}

.text-amber {
    color: var(--amber);
}

.text-electric {
    color: var(--electric-blue);
}

.text-muted {
    color: var(--text-muted);
}

p.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
    font-weight: 400;
}

.mono {
    font-family: var(--font-mono);
}

/* UI Elements */
.top-banner {
    background: rgba(26, 26, 46, 0.8);
    color: var(--primary-green);
    text-align: center;
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: var(--border-thin);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    text-transform: uppercase;
    font-weight: 700;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
    animation: blink 1.5s infinite alternate;
}

#app {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-bottom: 110px;
    /* Space for fixed gamification bar */
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animations Global */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin-bottom: 2rem;
    max-width: 800px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.question-label {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.progress-percent {
    font-family: var(--font-mono);
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 700;
}

.progress-bar-wrap {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    width: 0%;
    transition: width 1s linear;
}

.question-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.options-grid.col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.options-grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.options-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
}

.options-grid.col-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
}

/* Cards */
.option-card {
    background: rgba(26, 26, 46, 0.6);
    border: var(--border-thin);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    box-shadow: var(--shadow-soft);
}

.option-card.has-image {
    padding: 0;
    justify-content: flex-end;
    min-height: 220px;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1.5rem;
    width: 100%;
}

.option-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

.option-card:hover .card-bg-img {
    transform: scale(1.05);
}

.option-card.selected {
    border-color: var(--neon-green);
    background: rgba(74, 222, 128, 0.1);
    box-shadow: var(--shadow-glow);
}

.option-icon {
    font-size: 3rem;
    transition: transform 0.3s ease;
    z-index: 3;
}

.option-card.icon-xl .option-icon {
    font-size: 4rem;
}

.option-text {
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 3;
    text-align: center;
}

.checkbox-visual {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    z-index: 4;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card.selected .checkbox-visual {
    background: var(--neon-green);
    border-color: var(--neon-green);
}

.option-card.selected .checkbox-visual::after {
    content: '✓';
    color: #000;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-large {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    height: auto;
}

.btn-primary:hover:not(:disabled) {
    background: var(--neon-green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Sliders */
.slider-container {
    width: 100%;
    max-width: 600px;
    margin: 3rem auto;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.slider-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 2rem;
}

.slider-value {
    font-family: var(--font-mono);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--neon-green);
    line-height: 1;
}

.slider-unit {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--text-muted);
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    height: 40px;
    /* larger tap target */
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    background: var(--gray-mid);
    border-radius: 1px;
    position: relative;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--primary-green);
    cursor: pointer;
    margin-top: -9px;
    box-shadow: 0 0 10px var(--neon-green);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    z-index: 2;
}

input[type=range]:hover::-webkit-slider-thumb {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--neon-green);
    background: var(--neon-green);
}

/* Filling track logic is handled via linear-gradient in JS */

/* Carousel / Social Proof */
.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: var(--border-thin);
    aspect-ratio: 4/5;
    max-height: 80vh;
    background: #05080a;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: var(--border-thin);
}

.slide-title {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slide-author {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.slide-text {
    font-style: italic;
    font-size: 1.1rem;
    max-width: 600px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    transform: scale(1.2);
}

/* Loading Sequences */
.loading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

.loading-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    border-bottom: var(--border-thin);
    opacity: 0;
    /* start hidden */
    transform: translateY(10px);
}

.loading-item.active,
.loading-item.done {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.loading-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.loading-text {
    flex: 1;
    margin: 0 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.loading-status {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.loading-item.active .loading-icon {
    color: var(--amber);
    animation: spin 2s linear infinite;
}

.loading-item.active .loading-text {
    color: var(--text-main);
}

.loading-item.active .loading-status {
    background: rgba(251, 191, 36, 0.2);
    color: var(--amber);
}

.loading-item.done .loading-icon {
    color: var(--neon-green);
}

.loading-item.done .loading-text {
    color: var(--text-main);
}

.loading-item.done .loading-status {
    background: rgba(74, 222, 128, 0.2);
    color: var(--neon-green);
}

/* Results Badges */
.tactical-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(101, 200, 120, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tactical-icon {
    color: var(--primary-green);
    font-size: 2rem;
}

.tactical-info {
    display: flex;
    flex-direction: column;
}

.tactical-label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.tactical-val {
    font-weight: 500;
    color: var(--text-muted);
}

.warning-neon {
    font-family: var(--font-mono);
    color: var(--amber);
    text-align: center;
    margin: 2rem 0;
    animation: pulseWarning 2s infinite;
}

.pulse-btn {
    animation: glowingPulse 2s infinite;
}

/* Sales Page */
.table-sales {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 2rem auto;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 8px;
    overflow: hidden;
    border: var(--border-thin);
}

.table-sales th,
.table-sales td {
    padding: 1rem;
    text-align: left;
    border-bottom: var(--border-thin);
}

.table-sales th {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
}

.table-sales th.militar-col,
.table-sales td.militar-col {
    background: rgba(74, 222, 128, 0.05);
    color: var(--neon-green);
    font-weight: 500;
}

.faq-item {
    background: rgba(26, 26, 46, 0.4);
    border: var(--border-thin);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--neon-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q i {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-item.active .faq-a {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.faq-a p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Keyframes */
@keyframes blink {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseWarning {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes glowingPulse {
    0% {
        box-shadow: 0 0 5px rgba(74, 222, 128, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(74, 222, 128, 0.4);
    }
}

/* Sales Notification Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Positioned at bottom left */
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid var(--neon-green);
    border-left: 4px solid var(--neon-green);
    border-radius: 4px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(74, 222, 128, 0.1);
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    opacity: 0;
    max-width: 320px;
    pointer-events: none;
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.sales-popup-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sales-popup-content {
    display: flex;
    flex-direction: column;
}

.sales-popup-title {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.sales-popup-desc {
    color: var(--neon-green);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.sales-popup-time {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .options-grid.col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-grid.col-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    h1.main-title,
    .question-title {
        font-size: 1.5rem;
    }

    .options-grid.col-4,
    .options-grid.col-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .options-grid.col-3 {
        grid-template-columns: 1fr;
    }

    .option-card {
        min-height: 100px;
        padding: 1rem 0.5rem;
    }

    .option-card.has-image {
        min-height: 160px;
        justify-content: flex-end;
        align-items: center;
    }

    .card-content {
        gap: 5px;
        padding: 0 0.5rem 0.5rem 0.5rem;
    }

    .option-text {
        font-size: 0.9rem;
    }

    .btn-primary {
        height: auto;
        min-height: 50px;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    input[type=range]::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
        margin-top: -11px;
    }
}

/* Styles for New Avatar Testimonials */
.testimonial-text-card {
    background: rgba(26, 26, 46, 0.4);
    border: var(--border-thin);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-text-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(26, 26, 46, 0.6);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-green);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-status {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonial-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
}

/* Offer Card Styles */
.offer-card {
    background: #0a0a0a;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 3rem auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    background-image:
        linear-gradient(rgba(74, 222, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 222, 128, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.offer-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #112a15;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 5px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
    white-space: nowrap;
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-classified {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 2.2rem;
    color: #fff;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.offer-subtitle {
    color: var(--text-muted);
    font-size: 1.4rem;
    font-style: normal;
}

.offer-price-box {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.offer-price-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    gap: 8px;
}

.currency {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    align-self: flex-start;
    margin-top: 10px;
}

.price-main {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.price-old-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
}

.price-label {
    color: var(--neon-green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--red);
    font-size: 1rem;
    font-weight: 500;
}

.offer-lifetime {
    background: rgba(74, 222, 128, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    z-index: 1;
    position: relative;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    max-width: 280px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.offer-features li:nth-child(1) .feature-icon i {
    color: #f97316;
}

.offer-features li:nth-child(2) .feature-icon i {
    color: #8b5cf6;
}

.offer-features li:nth-child(3) .feature-icon i {
    color: #ec4899;
}

.offer-features li:nth-child(4) .feature-icon i {
    color: #3b82f6;
}

.offer-btn {
    width: 100%;
    background: #115e29;
    background: linear-gradient(180deg, #166534 0%, #14532d 100%);
    border: 1px solid #22c55e;
    color: #fff;
    font-size: 1.3rem;
    border-radius: 12px;
    /* Less rounded as per screenshot context */
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.5);
}

.offer-btn:hover {
    background: linear-gradient(180deg, #15803d 0%, #166534 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

/* Gamification UI */
.reward-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.reward-overlay.fade-out {
    opacity: 0;
}

.reward-box {
    background: #0d1117;
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    padding: 1rem 2.5rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
    max-width: 450px;
    width: auto;
    position: relative;
    overflow: hidden;
}

.reward-icon {
    font-size: 2.5rem;
    color: var(--amber);
    animation: bounce 1s infinite alternate;
}

.reward-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.reward-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.reward-loader {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--neon-green);
    width: 0%;
    animation: loaderFill 1.8s linear forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.gami-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid var(--neon-green);
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(74, 222, 128, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.gami-bar.show {
    transform: translateY(0);
}

.gami-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 10px;
    font-family: var(--font-heading);
}

.gami-won {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.gami-left {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gami-progress-bg {
    max-width: 800px;
    margin: 0 auto;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.gami-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), #a3e635);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--neon-green);
}

.float-reward {
    position: absolute;
    right: -40px;
    bottom: 20px;
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--neon-green);
    animation: floatUp 1.2s ease-out forwards;
    pointer-events: none;
    z-index: 1000;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translateY(-35px) scale(1);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .gami-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

.gamification-box {
    background: rgba(251, 191, 36, 0.1);
    border: 1px dashed var(--amber);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
}

.gamification-coupon {
    background: rgba(74, 222, 128, 0.2);
    color: var(--neon-green);
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 15px;
    border: 1px dashed var(--neon-green);
}

.coupon-applied-badge {
    background: rgba(74, 222, 128, 0.15);
    color: var(--neon-green);
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
    border: 1px solid var(--neon-green);
    display: inline-block;
    letter-spacing: 0.5px;
}