:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F3E5AB; /* Softer light gold */
    --primary-bg: #ffffff;
    --text-dark: #2C3E50; /* Darker, richer blue-gray for text */
    --text-light: #7F8C8D;
    --accent-green: #27AE60; /* More vibrant green */
    --accent-red: #E74C3C;
    --card-border: #ECEFF1;
    --card-bg: #ffffff;
    --font-family: 'Poppins', sans-serif;
    
    /* New Design Tokens */
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #fdfbf7 0%, #f4f1ea 100%); /* Subtle gradient */
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: height 0.3s ease;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-gold);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 3px;
}

/* Typography */
.main-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-title {
    font-size: 1.2rem;
    color: var(--primary-gold);
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.description {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight-bg {
    background-color: #D2B48C; /* Tan color */
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 700;
}

.highlight-green {
    color: var(--accent-green);
    font-weight: 700;
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 800;
}

.footer-text {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.4;
}

/* Images */
.hero-image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Buttons */
/* Buttons */
.btn-primary {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 8px 20px -5px rgba(212, 175, 55, 0.4);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(212, 175, 55, 0.5);
}

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

.btn-success {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 8px 20px -5px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(46, 204, 113, 0.5);
}

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

/* Option Cards */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
}

.option-card {
    background: white;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    width: 100%;
    position: relative;
}

.option-card:hover {
    background-color: #fffbf0;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.option-card:active {
    transform: scale(0.99);
}

.option-card .emoji {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.option-card .text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* Questions */
.question-title {
    font-size: 1.3rem;
    color: #5d4037;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Animations */
.screen {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.screen.active {
    display: block;
}

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

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(210, 180, 140, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(210, 180, 140, 0); }
    100% { box-shadow: 0 0 0 0 rgba(210, 180, 140, 0); }
}

/* --- New Sales Page Styles --- */

/* Processing Screen */
.processing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    min-height: 400px;
}

.loading-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner-modern {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-gold);
    border-right: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin-modern 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@keyframes spin-modern {
    0% { 
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% { 
        transform: rotate(360deg) scale(1);
    }
}

.loading-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: dot-pulse 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.processing-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0;
    animation: fade-in-up 0.6s ease-out;
}

.processing-text {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    text-align: center;
    margin: 0;
    animation: text-change 0.5s ease-in-out;
    min-height: 24px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes text-change {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-bar-container {
    width: 100%;
    max-width: 300px;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #F3E5AB 50%, var(--primary-gold) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.processing-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.processing-text {
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

/* Video Result Screen */
.result-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.highlight-red {
    color: #dc3545;
}

.video-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hidden-initially {
    display: none;
}

/* Carousel */
.carousel-container {
    width: 100%;
    max-width: 350px; /* Limit width for better look */
    height: 400px; /* Fixed height for consistency */
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the area */
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Sales Page Layout */
.sales-page {
    padding-bottom: 40px;
}

.sales-header {
    text-align: center;
    margin-bottom: 30px;
}

.sales-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sales-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.green-box {
    background-color: #66BB6A;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4;
}

.check-list-simple {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
}

.check-icon {
    font-size: 1.2rem;
}

.check-icon-green {
    color: #28a745;
    font-weight: bold;
}

/* Profit Section */
.profit-section {
    margin: 30px 0;
    text-align: center;
    background: #fff;
    padding: 20px 0;
}

.section-title-brown {
    color: #5d4037;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.profit-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.green-text {
    color: #28a745;
    font-weight: 700;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.rounded {
    border-radius: 15px;
}

/* Curriculum Section */
.curriculum-section {
    margin: 30px 0;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bonuses Section */
.bonuses-section {
    margin: 30px 0;
}

.section-title-green {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-item {
    font-size: 0.9rem;
    line-height: 1.4;
}

.bonus-tag {
    background-color: #00BCD4; /* Cyan color */
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Offer Section */
.offer-section {
    margin: 40px 0;
    text-align: center;
}

.offer-cta-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.offer-main-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.scarcity-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.red-text {
    color: #dc3545;
    font-weight: 800;
}

.offer-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    background: #f0fdf4;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.offer-header {
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    text-align: left;
}

.price-tag {
    text-align: right;
    background: #c8e6c9; /* Lighter green box */
    padding: 10px;
    border-radius: 8px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    font-size: 0.8rem;
    color: #777;
}

.new-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2e7d32;
}

.payment-type {
    display: block;
    font-size: 0.7rem;
    color: #555;
}

.timer-box {
    background-color: #fff3e0; /* Light orange */
    color: #d84315;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Gallery Section */
.section-title-small {
    font-size: 1rem;
    font-weight: 700;
    color: #5d4037;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.green-highlight {
    background-color: #c8e6c9;
    padding: 0 5px;
}

/* Gallery Section Styles */
.gallery-section {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-section .carousel-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Radio Button Style */
.radio-btn {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.radio-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.option-card:hover .radio-btn::after {
    opacity: 0.5;
}

.option-card:active .radio-btn::after {
    opacity: 1;
}

/* Social Proof Scroll */
.social-proof-scroll {
    max-height: 350px;
    overflow-y: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    padding: 10px;
    margin-bottom: 20px;
    background: #f9f9f9;
}

.social-proof-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
}


/* Bio Section */
.bio-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    text-align: center;
    border: none;
    box-shadow: var(--shadow-soft);
}

.bio-image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #00bcd4;
}

.bio-image {
    width: 100%;
    display: block;
}

.bio-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #006064;
    margin-bottom: 15px;
}

.bio-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #37474f;
    margin-bottom: 15px;
    text-align: left;
}

/* FAQ Section */
.faq-section {
    margin: 30px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #f9fbe7;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: #AED581;
}

.faq-question {
    padding: 15px;
    font-weight: 700;
    color: #33691e; /* Dark green */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 40px;
    text-align: center;
    padding-bottom: 20px;
}

.guarantee-text {
    font-size: 0.85rem;
    color: #333;
    margin: 20px 0;
    line-height: 1.4;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.payment-icons img {
    height: 25px;
}

.guarantee-seal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.guarantee-seal {
    width: 100px;
    height: auto;
}

.guarantee-details {
    text-align: left;
}

.guarantee-details h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.blue-text {
    color: #03A9F4;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.guarantee-details p {
    font-size: 0.7rem;
    font-weight: 700;
    color: #333;
    max-width: 150px;
}

/* Audio Title */
.audio-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* For Who Section */
.for-who-section {
    margin: 30px 0;
}

/* Final CTA */
.final-cta {
    margin: 40px 0 20px 0;
    text-align: center;
}

/* Comments Section (Facebook Style) */
.comments-section {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    font-family: 'Helvetica', Arial, sans-serif;
}

.comments-count {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #555;
}

.comment-item {
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.comment-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comment-bubble {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
}

.comment-author {
    font-size: 13px;
    font-weight: 600;
    color: #4267b2;
    margin-bottom: 2px;
    cursor: pointer;
    line-height: 1.2;
}

.comment-author:hover {
    text-decoration: underline;
}

.comment-author-small {
    font-size: 12px;
    font-weight: 600;
    color: #4267b2;
    margin-bottom: 2px;
    cursor: pointer;
}

.comment-author-small:hover {
    text-decoration: underline;
}

.comment-text {
    font-size: 14px;
    line-height: 1.3;
    color: #050505;
    margin-top: 2px;
}

.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 4px;
}

.comment-spacer {
    width: 48px;
    flex-shrink: 0;
}

.comment-spacer-small {
    width: 40px;
    flex-shrink: 0;
}

.comment-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    flex: 1;
}

.comment-btn {
    font-weight: 600;
    color: #90949c;
    cursor: pointer;
}

.comment-btn:hover {
    text-decoration: underline;
}

.comment-separator {
    color: #90949c;
}

.comment-time {
    color: #90949c;
    font-size: 12px;
}

.comment-likes {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0f2f5;
    border-radius: 12px;
    padding: 2px 6px;
    margin-right: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.like-icon {
    width: 16px;
    height: 16px;
}

.like-icon-2 {
    width: 16px;
    height: 16px;
    margin-left: -4px;
    margin-right: 2px;
}

.like-count {
    font-size: 12px;
    color: #90949c;
    padding-top: 2px;
}

.comment-reply {
    margin-left: 20px;
    margin-top: 8px;
    padding-left: 8px;
    border-left: 2px dotted #cbd5e0;
}

.comment-input-section {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e4e6eb;
}

.comment-input-wrapper {
    flex: 1;
    position: relative;
}

.comment-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccd0d5;
    border-radius: 18px;
    font-size: 14px;
    background: #f0f2f5;
    color: #999;
    cursor: not-allowed;
    font-family: 'Helvetica', Arial, sans-serif;
}

.comment-input:disabled {
    opacity: 0.7;
}

.login-message {
    font-size: 11px;
    color: #555;
    text-align: center;
    margin-top: 8px;
    font-weight: 600;
}

/* WhatsApp Audio Section */
.whatsapp-audio-section {
    position: relative;
    margin: 30px 0;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #e5ddd5;
    min-height: 120px;
}

.whatsapp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.whatsapp-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.whatsapp-message {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px 16px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d1d1d1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-button:hover {
    background: #b8b8b8;
    transform: scale(1.05);
}

.play-button:active {
    transform: scale(0.95);
}

.play-icon,
.pause-icon {
    width: 16px;
    height: 16px;
    color: white;
}

.pause-icon.hidden,
.play-icon.hidden {
    display: none;
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 30px;
    flex: 1;
    margin: 0 10px;
}

.waveform-bar {
    width: 3px;
    background: #d1d1d1; /* Cor padrão (não tocado) */
    border-radius: 3px;
    height: 100%;
    transition: height 0.1s ease, background-color 0.2s ease;
}

.waveform-bar.played {
    background: #34b7f1; /* Azul WhatsApp ou Verde do tema */
}

.waveform-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 8px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 12px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 6px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 10px; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 16px; animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { height: 12px; animation-delay: 0.8s; }
.waveform-bar:nth-child(10) { height: 14px; animation-delay: 0.9s; }
.waveform-bar:nth-child(11) { height: 8px; animation-delay: 1s; }
.waveform-bar:nth-child(12) { height: 10px; animation-delay: 1.1s; }
.waveform-bar:nth-child(13) { height: 6px; animation-delay: 0.2s; }
.waveform-bar:nth-child(14) { height: 12px; animation-delay: 0.3s; }
.waveform-bar:nth-child(15) { height: 14px; animation-delay: 0.4s; }
.waveform-bar:nth-child(16) { height: 8px; animation-delay: 0.5s; }
.waveform-bar:nth-child(17) { height: 10px; animation-delay: 0.6s; }
.waveform-bar:nth-child(18) { height: 6px; animation-delay: 0.7s; }
.waveform-bar:nth-child(19) { height: 12px; animation-delay: 0.8s; }
.waveform-bar:nth-child(20) { height: 16px; animation-delay: 0.9s; }
.waveform-bar:nth-child(21) { height: 10px; animation-delay: 1s; }
.waveform-bar:nth-child(22) { height: 8px; animation-delay: 1.1s; }
.waveform-bar:nth-child(23) { height: 14px; animation-delay: 0.2s; }
.waveform-bar:nth-child(24) { height: 12px; animation-delay: 0.3s; }
.waveform-bar:nth-child(25) { height: 6px; animation-delay: 0.4s; }
.waveform-bar:nth-child(26) { height: 10px; animation-delay: 0.5s; }
.waveform-bar:nth-child(27) { height: 8px; animation-delay: 0.6s; }
.waveform-bar:nth-child(28) { height: 12px; animation-delay: 0.7s; }
.waveform-bar:nth-child(29) { height: 14px; animation-delay: 0.8s; }
.waveform-bar:nth-child(30) { height: 10px; animation-delay: 0.9s; }

@keyframes waveform {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1);
        opacity: 0.9;
    }
}

.audio-duration {
    font-size: 0.75rem;
    color: #8a8a8a;
    font-weight: 500;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 8px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#audioElement {
    display: none;
}


/* Mobile Optimization */
@media (max-width: 480px) {
    body {
        padding: 10px;
        min-height: 100vh;
    }
    
    .app-container {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }
    
    .question-title {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .result-subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .video-container {
        margin-bottom: 15px;
    }
    
    .carousel-container {
        max-width: 100%;
        height: 350px;
    }
    
    .bio-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
}
