:root {
    --bg-color: #fafafa;
    --text-main: #2d2d2d;
    --text-secondary: #666666;
    --accent-color: #fdfbf7;
    --highlight: #ca8a04;
    /* Gold/Amber */
    --highlight-light: #fefce8;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 25px rgba(202, 138, 4, 0.2);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: radial-gradient(circle at 50% 0%, #fffbeb 0%, #ffffff 60%, #fdfbf7 100%);
    overflow-x: hidden;
}

/* Zodiac Wheel Background */
.zodiac-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 800px;
    max-height: 800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
}

.zodiac-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid #ca8a04;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-style: dashed;
    animation: rotate 60s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-style: solid;
    border-width: 1px;
    opacity: 0.5;
    animation: rotate 40s linear infinite reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-style: dotted;
    border-width: 2px;
    animation: rotate 80s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Text Highlights - Clean & Premium */
.highlight-gold {
    background: linear-gradient(135deg, #b45309 0%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ca8a04, transparent);
    opacity: 0.5;
}

.highlight-pulse {
    color: #b45309;
    font-weight: 700;
    animation: textPulse 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

#app {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow-x: hidden;
    box-shadow: none;
    padding: 20px 20px 40px;
    z-index: 1;
}

@media (min-width: 640px) {
    body {
        align-items: center;
    }

    #app {
        min-height: auto;
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow:
            0 20px 50px rgba(202, 138, 4, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.5);
        margin: 40px 20px;
        background: rgba(255, 255, 255, 0.9);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #1a1a1a;
}

h1 {
    font-size: 26px;
    /* Mobile first size */
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 36px;
        /* Desktop size */
    }
}

.highlight-box {
    background: #ca8a04;
    color: #ffffff;
    padding: 2px 6px;
    display: inline-block;
    transform: skew(-3deg);
    border-radius: 4px;
    margin: 0 2px;
}

.highlight-box span {
    display: inline-block;
    transform: skew(3deg);
}

.highlight-gold {
    color: #ca8a04;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(202, 138, 4, 0.3);
}

h2 {
    font-size: 22px;
    margin-bottom: 12px;
    text-align: center;
    color: #444;
}

p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}

/* Magic Icons */
.magic-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(202, 138, 4, 0.4));
}

/* Components */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    /* Prevent too wide on desktop */
    margin: 0 auto;
    /* Center */
    padding: 18px 24px;
    background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(202, 138, 4, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-appearance: none;
    /* Fix mobile safari */
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(202, 138, 4, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    margin-right: 10px;
    font-size: 22px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid #e5e5e5;
    box-shadow: none;
    font-weight: 500;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: #f9f9f9;
    border-color: #d4d4d4;
    box-shadow: none;
    color: var(--text-main);
}

/* Quiz Question Layout */
.question-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 10px;
}

.question-number {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
    margin-bottom: 16px;
    order: 1;
    /* First */
}

.question-icon-container {
    order: 2;
    /* Second */
    margin-bottom: 24px;
}

.question-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(254, 252, 232, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.question-theme {
    order: 3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ca8a04;
    margin-bottom: 12px;
    opacity: 0.8;
}

.question-text {
    order: 4;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Quiz Options - Dynamic & Interactive */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 40px;
    /* Breathing room at bottom */
}

.option-btn {
    width: 100%;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 16px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--highlight);
    opacity: 0;
    transition: opacity 0.2s;
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--highlight);
    background: #fffbeb;
}

.option-btn:active {
    transform: scale(0.98);
}

.option-btn.selected {
    background: #fffbeb;
    border-color: var(--highlight);
    box-shadow: 0 0 0 2px rgba(202, 138, 4, 0.2);
}

.option-btn.selected::before {
    opacity: 1;
}

.option-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    transition: all 0.2s;
    flex-shrink: 0;
}

.option-btn:hover .option-letter,
.option-btn.selected .option-letter {
    background: var(--highlight);
    color: #fff;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--highlight) 0%, #eab308 100%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bullet Points - Premium Card */
.bullet-list {
    list-style: none;
    text-align: left;
    margin: 30px auto 0;
    /* Added top margin */
    max-width: 100%;
    background: #fffdfa;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(202, 138, 4, 0.15);
    box-shadow: 0 4px 20px rgba(202, 138, 4, 0.05);
}

.bullet-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    /* Center icon vertically */
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

.bullet-list li::before {
    content: "✦";
    color: #ca8a04;
    margin-right: 16px;
    font-size: 20px;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
}

/* Loading Screen */
.loading-screen {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--highlight);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
    margin-top: 20px;
}

/* Result Page */
.result-box {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 20px 0;
    border-left: 4px solid var(--highlight);
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 8px;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    max-width: 90%;
    width: 400px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

/* Testimonials */
.testimonial-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    animation: slideUp 0.5s ease;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f00;
    animation: fall linear forwards;
    z-index: 1001;
    /* Above popup */
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(720deg);
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

.font-bold {
    font-weight: 700;
}

/* Golden Click State */
.btn-gold-active:active,
.btn-gold-active.active {
    background: #ca8a04 !important;
    color: white !important;
    border-color: #ca8a04 !important;
    transform: scale(0.98);
}

/* Testimonial with Image */
.testimonial-card-large {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
    max-width: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto 16px;
    display: block;
}

.testimonial-text-large {
    font-size: 18px;
    font-style: italic;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.5;
}

.testimonial-author-large {
    font-weight: 700;
    color: var(--highlight);
    font-size: 16px;
}

/* Loading Animations */
.loading-animation-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}

/* Comet Animation */
.comet {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ca8a04);
    position: absolute;
    top: 50%;
    left: -100px;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px #ca8a04);
    animation: fly-comet 2s linear infinite;
}

.comet::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #ca8a04;
}

@keyframes fly-comet {
    0% {
        left: -100px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Star/Orbit Animation */
.orbit-system {
    width: 80px;
    height: 80px;
    position: relative;
    animation: rotate-orbit 10s linear infinite;
}

.orbit-center {
    width: 20px;
    height: 20px;
    background: #ca8a04;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(202, 138, 4, 0.5);
}

.orbit-planet {
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Better Package Alert */
.better-package-alert {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* Offers Section */
.offers-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.offer-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card.premium {
    border: 2px solid #22c55e;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
    transform: scale(1.02);
    z-index: 2;
}

.offer-card.basic {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    opacity: 0.9;
}

.offer-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.offer-card.premium .offer-title {
    color: #15803d;
}

.offer-card.basic .offer-title {
    color: #666;
    font-size: 20px;
}

.offer-price-container {
    margin: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.offer-old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
}

.offer-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
}

.offer-card.premium .offer-price {
    color: #15803d;
}

.check-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-main);
}

.check-list li .icon {
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 18px;
}

.check-list.positive li .icon {
    color: #22c55e;
}

.check-list.negative li {
    color: #666;
}

.check-list.negative li .icon {
    color: #ef4444;
}

.check-list.negative li.included .icon {
    color: #22c55e;
}

.btn-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Diagnosis Section Overhaul */
.diagnosis-headline {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.diagnosis-box {
    background: #fffbeb;
    border: 2px solid #fcd34d;
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    position: relative;
    text-align: left;
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.15);
}

.diagnosis-id {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ca8a04;
    color: white;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(202, 138, 4, 0.2);
}

.diagnosis-title {
    font-size: 24px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
}

.diagnosis-text {
    font-size: 16px;
    color: #92400e;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

/* Animated Charts */
.chart-container {
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(202, 138, 4, 0.1);
}

.chart-row {
    margin-bottom: 12px;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.chart-bar-bg {
    width: 100%;
    height: 10px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ca8a04, #eab308);
    border-radius: 10px;
    width: 0%;
    /* Start at 0 for animation */
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar-fill.low {
    background: #ef4444;
}

.chart-bar-fill.high {
    background: #22c55e;
}

/* Symptom Bullets */
.symptom-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.symptom-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(202, 138, 4, 0.1);
}

.symptom-icon {
    font-size: 18px;
    margin-right: 12px;
    color: #ef4444;
}

.symptom-text {
    font-size: 14px;
    font-weight: 600;
    color: #78350f;
}

/* Hook Text */
.hook-text {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 30px 0 20px;
    padding: 0 10px;
    line-height: 1.4;
}

.hook-highlight {
    color: #ca8a04;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* Loading Process Enhanced */
.process-step {
    background: #fff;
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.process-step.active {
    opacity: 1;
    border-color: #ca8a04;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-icon {
    width: 32px;
    height: 32px;
    background: #fefce8;
    color: #ca8a04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 40px;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #e5e5e5;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: block;
}

/* Result Page Adjustments */
.diagnosis-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.diagnosis-id {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ca8a04;
    color: white;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alert-below-btn {
    margin-top: 12px;
    font-size: 12px;
    color: #ca8a04;
    background: #fffbeb;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #fde047;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pulse Animation Re-added */
.btn-pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(202, 138, 4, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(202, 138, 4, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(202, 138, 4, 0.3);
    }
}

/* Showcase Images & Visuals */
.intro-gif {
    width: 100%;
    max-width: 280px;
    border-radius: var(--radius-md);
    margin: 20px auto;
    display: block;
    box-shadow: var(--shadow-card);
    border: 2px solid #fff;
}

.question-image {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    margin: 0 auto 24px;
    display: block;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(202, 138, 4, 0.1);
}

.showcase-section {
    margin: 40px 0;
    text-align: center;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(202, 138, 4, 0.1);
}

.showcase-title {
    font-size: 20px;
    font-weight: 700;
    color: #ca8a04;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.showcase-item {
    background: #fafafa;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.showcase-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    display: block;
    margin-bottom: 12px;
}

.showcase-caption {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
}

.showcase-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-item.full-width {
        grid-column: span 2;
    }
}