/* Global Styles & Variables - Dark Premium Theme */
:root {
    --primary-color: #FF1493;
    /* Hot Pink / Deep Pink */
    --primary-dark: #C71585;
    --secondary-color: #9D00FF;
    /* Neon Purple */
    --accent-color: #FFFFFF;
    /* White */
    --text-color: #FFFFFF;
    /* White Text */
    --text-light: #E0E0E0;
    /* Light Grey for secondary text */
    --background-dark: #050505;
    /* Deep Black */
    --card-bg: #141414;
    /* Dark Grey for cards */
    --success-color: #00E676;
    --warning-color: #FFEA00;
    --font-family: 'Inter', sans-serif;
    --border-radius: 16px;
    --box-shadow: 0 8px 32px 0 rgba(157, 0, 255, 0.15);
    /* Purple Glow */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-dark);
    background-image: radial-gradient(circle at 50% 0%, #2a0a38 0%, #000000 70%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: 480px;
    /* Mobile-first optimization */
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
    min-height: 100vh;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Quiz Styles */
.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #333;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #444;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.question-card {
    display: none;
    /* Hidden by default, shown via JS */
    animation: fadeIn 0.5s ease;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.question-card.active {
    display: block;
}

.option-btn {
    display: block;
    width: 100%;
    padding: 20px 25px;
    /* Slightly larger padding */
    margin-bottom: 15px;
    background-color: #242424;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    text-align: left;
    font-weight: 500;
    /* Regular weight */
    font-size: 1.2rem;
    /* Larger text */
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.option-btn:hover,
.option-btn.selected {
    border-color: var(--primary-color);
    background-color: #2D1B2E;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

.option-btn i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    /* Larger icon */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Result Page Styles */
.analyzing-loader {
    text-align: center;
    padding: 50px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.result-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--accent-color);
    padding: 40px 20px;
    border-radius: 0 0 30px 30px;
    margin: -20px -20px 40px -20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.4);
}

.result-header h1 {
    color: var(--accent-color);
    font-size: 1.8rem;
    text-shadow: none;
    margin-bottom: 5px;
}

.diagnosis-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
}

.diagnosis-card h3 {
    color: var(--primary-color);
}

/* CTA Buttons with shiny effect */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, #D4145A, #F94327);
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: var(--accent-color);
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(255, 20, 147, 0.4);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.cta-button:hover::after {
    opacity: 1;
    transform: scale(1);
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.6);
}

/* Landing Page Specifics */
.lp-container {
    max-width: 100%;
    background-color: var(--background-dark);
    padding: 0;
}

.urgency-bar {
    background: linear-gradient(90deg, #000, #331046);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    padding: 40px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, #4a0e4e 0%, #000000 70%);
}

.hero-headline {
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-headline span {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

/* VSL Container */
.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    padding-top: 0;
    height: 0;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
    border: 1px solid #333;
}

.vsl-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.vsl-shield {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 101;
    /* Blocks clicks */
}

.vsl-shield-top {
    top: 0;
    height: 70px;
    /* Covers top bar */
}

.vsl-shield-bottom {
    bottom: 0;
    height: 50px;
    /* Covers controls */
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    background: -webkit-linear-gradient(#FF1493, #9D00FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(157, 0, 255, 0.5));
}

.social-proof {
    padding: 40px 20px;
    background-color: #0a0a0a;
}

.review-card {
    background: #181818;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.review-card p {
    color: #ccc;
    font-size: 0.95rem;
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.offer-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #050505 0%, #1e0524 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-card {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.offer-card img,
.offer-image {
    height: 250px !important;
    /* Fixed height for uniformity */
    width: auto !important;
    /* Width follows aspect ratio */
    max-width: 100%;
    /* Prevents overflow */
    margin: 0 auto 15px;
    display: block;
    /* transform: rotate(-8deg) removed */
    filter: drop-shadow(0 0 10px var(--primary-color));
    /* Neon Pink Glow */
    transition: var(--transition);
}


.offer-card:hover .offer-image {
    /* No movement, just glow */
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.offer-card.best-value {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.2);
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.price-container {
    text-align: center;
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.faq-section {
    padding: 40px 20px;
    background-color: #050505;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 1.05rem;
}

.faq-answer {
    margin-top: 15px;
    display: none;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    color: #666;
    background: #000;
    border-top: 1px solid #222;
}