/* Enhanced Barometer Widget Styles */
/* UI/UX Designer Deliverable: Conversion-optimized styles */

.enhanced-variant {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
}

.enhanced-hero {
    padding: 2rem 1rem 4rem;
    text-align: center;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Enhanced Barometer Widget */
.barometer-widget-enhanced {
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(247, 147, 26, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem auto 3rem;
    max-width: 600px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.barometer-widget-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #f7931a 20%, #ff6b35 50%, #f7931a 80%, transparent 100%);
    opacity: 0.8;
}

/* Zone Header */
.zone-header {
    text-align: center;
    margin-bottom: 2rem;
}

.zone-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zone-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.zone-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.score-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
}

.score-max {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.6;
}

/* Barometer Visualization */
.barometer-visualization {
    position: relative;
    margin: 2rem 0;
}

.barometer-scale {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    height: 80px;
}

.scale-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.scale-segment.chill {
    background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
}

.scale-segment.neutral {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
}

.scale-segment.heated {
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
}

.scale-segment.euphoric {
    background: linear-gradient(135deg, #ff4444 0%, #cc2200 100%);
}

.segment-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.segment-advice {
    font-size: 0.7rem;
    font-weight: 500;
    color: #000000;
    opacity: 0.8;
    margin-top: 2px;
}

/* Barometer Needle */
.barometer-needle {
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    z-index: 10;
}

.needle-pointer {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.needle-value {
    background: #ffffff;
    color: #000000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Advice Section */
.advice-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.advice-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advice-text.bullish { color: #00ff88; }
.advice-text.neutral { color: #ffd700; }
.advice-text.caution { color: #ff8800; }
.advice-text.bearish { color: #ff4444; }

.last-updated {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.6;
}

/* Historical Context */
.historical-context {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.context-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f7931a;
}

/* Enhanced Headlines */
.headline-section {
    margin: 3rem 0 2rem;
    text-align: center;
}

.enhanced-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.market-status {
    color: #f7931a;
}

.action-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f7931a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enhanced-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.highlight-stat {
    color: #00ff88;
    font-weight: 700;
}

/* Enhanced Download Section */
.download-section-enhanced {
    margin: 3rem 0;
}

.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border: 1px solid rgba(255, 136, 0, 0.4);
    border-radius: 25px;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.urgency-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Enhanced Download Buttons */
.download-buttons-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.download-btn-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn-enhanced:hover {
    border-color: rgba(247, 147, 26, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.2);
}

.download-btn-enhanced.platform-primary {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

.download-btn-enhanced.platform-secondary {
    opacity: 0.7;
    transform: scale(0.95);
}

.btn-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn-platform i {
    font-size: 1.5rem;
}

.btn-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-rating {
    color: #ffd700;
}

/* Enhanced Social Proof */
.social-proof-enhanced {
    margin-top: 2rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.proof-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.8;
}

.recent-activity {
    text-align: center;
    margin-top: 1rem;
}

.activity-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00ff88;
}

.activity-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enhanced-headline {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .download-buttons-enhanced {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .historical-context {
        grid-template-columns: 1fr;
    }

    .barometer-widget-enhanced {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .zone-name {
        font-size: 2rem;
    }

    .score-number {
        font-size: 2.5rem;
    }

    .barometer-scale {
        height: 60px;
    }

    .enhanced-headline {
        font-size: 1.8rem;
    }
}