/* Quiz-First Personas Section Styles */

.personas-section {
    padding: var(--space-4xl) 0;
    background: 
        linear-gradient(135deg, 
            rgba(26, 26, 26, 0.95) 0%,
            rgba(51, 17, 17, 0.9) 25%,
            rgba(0, 0, 0, 0.98) 50%,
            rgba(51, 34, 0, 0.9) 75%,
            rgba(26, 26, 26, 0.95) 100%
        ),
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 210, 63, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    
    /* Unique texture overlay */
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 210, 63, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.05), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 53, 0.08), transparent);
    background-size: 160px 120px, 180px 140px, 200px 160px, 220px 180px;
    
    /* Animated border gradients */
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
}

.personas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--color-fire-red) 20%,
        var(--color-gold) 50%,
        var(--color-hot-orange) 80%,
        transparent 100%
    );
    animation: borderFlow 8s ease-in-out infinite;
}

.personas-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--color-hot-orange) 20%,
        var(--color-gold) 50%,
        var(--color-fire-red) 80%,
        transparent 100%
    );
    animation: borderFlow 8s ease-in-out infinite reverse;
}

@keyframes borderFlow {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.05); }
}

/* Quiz Hero Section - Arena Style */
.quiz-hero {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    
    /* Arena background */
    background: 
        linear-gradient(135deg, 
            rgba(255, 107, 53, 0.03) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(255, 210, 63, 0.02) 70%,
            rgba(0, 0, 0, 0.4) 100%
        );
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 80px rgba(255, 107, 53, 0.08);
    
    /* Arena corner markers */
    background-image: 
        linear-gradient(45deg, var(--color-gold) 0%, transparent 3%),
        linear-gradient(-45deg, var(--color-gold) 0%, transparent 3%),
        linear-gradient(135deg, var(--color-fire-red) 0%, transparent 3%),
        linear-gradient(-135deg, var(--color-fire-red) 0%, transparent 3%);
    background-size: 20px 20px;
    background-position: top left, top right, bottom left, bottom right;
    background-repeat: no-repeat;
}

.quiz-hero::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        var(--color-fire-red) 0%,
        transparent 25%,
        var(--color-gold) 50%,
        transparent 75%,
        var(--color-hot-orange) 100%
    );
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.3;
    animation: arenaGlow 6s ease-in-out infinite;
}

@keyframes arenaGlow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.01); }
}

.personas-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.personas-title .emoji-target {
    font-size: 0.8em;
    display: inline-block;
    animation: targetPulse 3s ease-in-out infinite;
}

@keyframes targetPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.personas-subtitle {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: var(--space-2xl);
}

/* Quiz-Focused Stereotype Showcase */
.stereotype-showcase {
    margin: var(--space-2xl) 0;
    position: relative;
}

.stereotype-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(0, 0, 0, 0.9) 50%,
        rgba(255, 210, 63, 0.05) 100%);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.stereotype-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-xl) var(--space-2xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    transform: translateX(100%) scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 107, 53, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%);
}

.stereotype-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.stereotype-card.prev {
    opacity: 0;
    transform: translateX(-100%) scale(0.98);
}

/* Icon Section - Left */
.card-icon {
    font-size: 5rem;
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.5));
    animation: cardIconFloat 4s ease-in-out infinite;
    justify-self: center;
}

@keyframes cardIconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

/* Content Section - Center */
.card-content {
    text-align: left;
    max-width: none;
}

.card-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.card-description {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-sm);
}

.quiz-hint {
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Reward Section - Right */
.card-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, 
        rgba(255, 210, 63, 0.15) 0%, 
        rgba(255, 107, 53, 0.08) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 210, 63, 0.3);
    box-shadow: 
        0 8px 25px rgba(255, 210, 63, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.card-reward::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rewardShimmer 3s ease-in-out infinite;
}

@keyframes rewardShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.reward-icon {
    font-size: 3.5rem;
    animation: rewardPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 210, 63, 0.6));
    margin-bottom: var(--space-sm);
    z-index: 1;
    position: relative;
}

@keyframes rewardPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(255, 210, 63, 0.6));
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 30px rgba(255, 210, 63, 0.8));
    }
}

.reward-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-xs);
    z-index: 1;
    position: relative;
}

.reward-hint {
    font-family: var(--font-secondary);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    z-index: 1;
    position: relative;
}

/* Enhanced Navigation */
.showcase-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.nav-button {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: rgba(255, 255, 255, 0.8);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-2xl);
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-button:hover::before {
    opacity: 1;
}

.nav-button:hover {
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.nav-button:active {
    transform: scale(1.05);
}

.nav-button span {
    position: relative;
    z-index: 1;
}

/* Progress Indicators */
.showcase-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.indicator.active {
    background: var(--color-hot-orange);
    border-color: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 
        0 0 15px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 210, 63, 0.3);
}

.indicator.active::after {
    width: 6px;
    height: 6px;
}

.indicator:hover {
    background: var(--color-gold);
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(255, 210, 63, 0.5);
}

/* Progress Bar */
.showcase-progress {
    width: 100%;
    max-width: 300px;
    height: 3px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: var(--space-md) auto;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--color-gold) 0%, 
        var(--color-hot-orange) 100%);
    width: 12.5%; /* 1/8 of slides */
    transition: all 0.6s ease;
    border-radius: 2px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Quiz Main CTA - More Prominent */
.quiz-main-cta {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.12) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiz-main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 210, 63, 0.05), transparent);
    animation: ctaShimmer 4s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0% { transform: translateX(-100%) skewX(-25deg); }
    100% { transform: translateX(200%) skewX(-25deg); }
}

.quiz-cta-title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.btn-quiz-start {
    font-size: var(--text-xl);
    padding: var(--space-xl) var(--space-3xl);
    background: var(--gradient-fire);
    border: 3px solid var(--color-white);
    color: var(--color-white);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 51, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.btn-quiz-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-quiz-start:hover::before {
    left: 100%;
}

.btn-quiz-start:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 18px 45px rgba(255, 51, 51, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-quiz-start:active {
    transform: translateY(-2px);
}

.quiz-promise {
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-family: var(--font-secondary);
    position: relative;
    z-index: 1;
}

/* Quiz Section - Battle Arena Style */
.personality-quiz {
    max-width: 800px;
    margin: var(--space-4xl) auto 0;
    padding: var(--space-2xl);
    position: relative;
    
    /* Quiz arena background */
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(51, 17, 17, 0.6) 25%,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(51, 34, 0, 0.6) 75%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 100px rgba(255, 107, 53, 0.15);
    
    /* Battle arena corner accents */
    background-image: 
        linear-gradient(45deg, rgba(255, 210, 63, 0.6) 0%, transparent 15%),
        linear-gradient(-45deg, rgba(255, 210, 63, 0.6) 0%, transparent 15%),
        linear-gradient(135deg, rgba(255, 107, 53, 0.6) 0%, transparent 15%),
        linear-gradient(-135deg, rgba(255, 107, 53, 0.6) 0%, transparent 15%);
    background-size: 30px 30px;
    background-position: 
        top 10px left 10px, 
        top 10px right 10px, 
        bottom 10px left 10px, 
        bottom 10px right 10px;
    background-repeat: no-repeat;
}

.personality-quiz::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--color-fire-red) 0%,
        var(--color-gold) 25%,
        var(--color-hot-orange) 50%,
        var(--color-gold) 75%,
        var(--color-fire-red) 100%
    );
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
    animation: quizArenaPulse 8s ease-in-out infinite;
}

@keyframes quizArenaPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.005); }
}

.quiz-progress {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-fire);
    width: 20%;
    transition: width 0.5s ease;
    border-radius: 3px;
}

.progress-text {
    font-family: var(--font-secondary);
    color: var(--color-gold);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* Quiz Questions - Fixed Interaction */
.quiz-question {
    display: none;
    text-align: center;
}

.quiz-question.active {
    display: block;
    animation: questionSlideIn 0.5s ease-out;
}

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

.quiz-question h3 {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quiz-options {
    display: grid;
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

/* Fixed Quiz Option Buttons */
.quiz-option {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.4);
    color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    
    /* Ensure button is clickable */
    pointer-events: all;
    user-select: none;
}

.quiz-option:hover {
    border-color: var(--color-gold);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.quiz-option:active {
    transform: translateY(0);
}

.quiz-option:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Quiz Result */
.quiz-result {
    text-align: center;
    animation: resultReveal 0.8s ease-out;
}

@keyframes resultReveal {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-celebration {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    animation: celebrationBounce 1s ease-out;
}

@keyframes celebrationBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.result-title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
}

.tribe-name-result {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
}

.tribe-result-card {
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.tribe-result-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.tribe-result-description {
    font-family: var(--font-secondary);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.tribe-roast {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    color: var(--color-white);
    line-height: 1.6;
    padding: var(--space-md);
    background: rgba(255, 30, 0, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-fire-red);
}

/* Freebie Reveal - Simplified */
.tribe-freebie-reveal {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: rgba(255, 210, 63, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    position: relative;
}

.tribe-freebie-reveal h4 {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.freebie-content {
    margin-bottom: var(--space-xl);
}

.freebie-icon-large {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: freebieFloat 2s ease-in-out infinite;
}

@keyframes freebieFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.freebie-title {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.freebie-description {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.btn-claim-freebie {
    background: var(--gradient-fire);
    color: var(--color-white);
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-xl);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-claim-freebie:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.4);
}

.freebie-note {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
}

/* Compatibility Preview */
.compatibility-preview {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.compatibility-preview h4 {
    font-family: var(--font-primary);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.flavor-match {
    font-family: var(--font-secondary);
    color: var(--color-gold);
    font-size: var(--text-lg);
    font-weight: 600;
}

/* Note: WhatsApp loading is now handled by the enhanced WhatsApp system */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .personas-section {
        padding: var(--space-2xl) 0;
        /* Reduce texture complexity on mobile */
        background-size: 120px 90px, 140px 110px, 160px 130px, 180px 150px;
    }
    
    .quiz-hero {
        padding: var(--space-xl) var(--space-md);
        margin: 0 var(--space-sm);
        
        /* Simplify arena corners on mobile */
        background-size: 15px 15px;
    }
    
    .quiz-hero::before {
        border-radius: var(--radius-xl);
    }
    
    .stereotype-container {
        height: 380px;
        margin: var(--space-xl) var(--space-sm);
    }
    
    .stereotype-card {
        padding: var(--space-lg);
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        justify-items: center;
        text-align: center;
        gap: var(--space-md);
    }
    
    .card-content {
        text-align: center;
        order: 2;
    }
    
    .card-icon {
        font-size: 4rem;
        order: 1;
    }
    
    .card-reward {
        order: 3;
        margin-top: var(--space-md);
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .card-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: var(--space-sm);
    }
    
    .card-description {
        font-size: var(--text-base);
        margin-bottom: var(--space-xs);
    }
    
    .showcase-navigation {
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }
    
    .nav-button {
        width: 45px;
        height: 45px;
        font-size: var(--text-xl);
    }
    
    .quiz-question h3 {
        font-size: var(--text-xl);
    }
    
    .quiz-options {
        gap: var(--space-sm);
    }
    
    .quiz-option {
        padding: var(--space-md);
        font-size: var(--text-sm);
    }
    
    .personality-quiz {
        margin: var(--space-2xl) var(--space-sm) 0;
        padding: var(--space-xl) var(--space-md);
        
        /* Simplify arena corners on mobile */
        background-size: 20px 20px;
        background-position: 
            top 8px left 8px, 
            top 8px right 8px, 
            bottom 8px left 8px, 
            bottom 8px right 8px;
    }
    
    .btn-quiz-start {
        font-size: var(--text-lg);
        padding: var(--space-lg) var(--space-2xl);
    }
}

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