/* ============================================
   BETTING INSIGHTS - Styling
   Enhanced odds display + subscriber insights
   ============================================ */

/* --------------------------------------------
   ENHANCED ODDS BOX (Visible to ALL users)
   -------------------------------------------- */
.enhanced-odds-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.odds-header {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1e3a5f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.odds-icon {
    font-size: 22px;
}

.odds-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.odds-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.odds-label {
    font-weight: 600;
    color: #475569;
    min-width: 120px;
    font-size: 14px;
}

.odds-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.team-odds {
    font-size: 14px;
    color: #334155;
}

.team-odds strong {
    color: #1e40af;
    font-weight: 700;
}

.odds-divider {
    color: #94a3b8;
    font-weight: 300;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .odds-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .odds-label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .odds-values {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .odds-divider {
        display: none;
    }
}

/* --------------------------------------------
   BETTING INSIGHTS BOX (Subscribers only)
   -------------------------------------------- */
.betting-insights-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.betting-insights-box.insights-locked {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #94a3b8;
}

.insights-header {
    margin-bottom: 15px;
}

.insights-header h4 {
    margin: 0;
    font-size: 18px;
    color: #92400e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insights-locked .insights-header h4 {
    color: #475569;
}

.insights-icon {
    font-size: 22px;
}

.gold-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Disclaimer tooltip icon */
.insights-disclaimer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b7280;
    cursor: help;
    margin-left: 4px;
    vertical-align: middle;
    transition: color 0.2s ease;
}

.insights-disclaimer:hover {
    color: #374151;
}

/* Insights content grid */
.insights-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
}

.insights-locked .insight-row {
    background-color: rgba(255, 255, 255, 0.5);
}

.insight-label {
    font-weight: 600;
    color: #78350f;
    min-width: 130px;
    font-size: 14px;
}

.insights-locked .insight-label {
    color: #64748b;
}

.insight-value {
    font-size: 15px;
    color: #1f2937;
    font-weight: 500;
}

/* Edge indicators */
.edge-strong {
    color: #16a34a;
    font-weight: 700;
}

.edge-good {
    color: #2563eb;
    font-weight: 600;
}

.edge-slight {
    color: #7c3aed;
    font-weight: 500;
}

.edge-neutral {
    color: #6b7280;
}

.edge-negative {
    color: #dc2626;
}

/* --------------------------------------------
   BLUR EFFECT FOR NON-SUBSCRIBERS
   -------------------------------------------- */
.blur-content {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Upgrade overlay */
.insights-upgrade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,0) 100%);
    text-align: center;
    z-index: 10;
}

.btn-upgrade-gold {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f !important;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-upgrade-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
    color: #78350f !important;
    text-decoration: none !important;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .betting-insights-box {
        padding: 15px;
    }
    
    .insight-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .insight-label {
        min-width: auto;
    }
    
    .insights-upgrade {
        padding: 15px 10px;
    }
    
    .btn-upgrade-gold {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* --------------------------------------------
   VALUE TAGS (for list pages)
   -------------------------------------------- */
.value-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

.value-tag.hot {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.value-tag.good {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.value-tag.slight {
    background-color: #f5f3ff;
    color: #7c3aed;
    border: 1px solid #ddd6fe;
}

