/* Featured Picks Section Styles */

.featured-picks-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.featured-picks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Styles */
.featured-picks-header {
    position: relative;
    z-index: 1;
}

.featured-picks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.featured-picks-title i {
    color: var(--primary-color, #4a90e2);
}

.featured-picks-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

/* Grid Container */
.featured-picks-grid {
    position: relative;
    z-index: 1;
    justify-content: center;
}

/* Pick Preview Card Styles */
.pick-preview-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pick-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
}

/* Matchup Section */
.pick-preview__matchup {
    margin-bottom: 1.5rem;
}

.pick-preview__team {
    flex: 1;
    min-width: 0;
}

.pick-preview-card .team-logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pick-preview__team-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
}

.pick-preview__vs {
    font-size: 1.25rem;
    font-weight: 600;
    color: #999;
    padding: 0 1rem;
}

/* Date/Time Display */
.pick-preview__datetime {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.datetime-value {
    font-size: 0.875rem;
    color: #666;
}

/* Confidence Section */
.pick-preview__confidence {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.confidence-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

.confidence-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confidence-stars {
    display: flex;
    gap: 0.25rem;
}

.confidence-stars i {
    font-size: 1rem;
    color: #ffc107;
}

.confidence-percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color, #4a90e2);
}

/* Pick Section - Locked State */
.pick-preview__pick-section {
    position: relative;
    margin-top: auto;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pick-preview__pick-section.pick-locked {
    filter: blur(2px);
}

.pick-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Blurred Placeholder */
.pick-content-blurred {
    text-align: center;
    width: 100%;
}

.placeholder-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.placeholder-spread {
    font-size: 1rem;
    color: #666;
}

/* Unlock Overlay */
.pick-unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
}

.unlock-content {
    text-align: center;
    padding: 1rem;
}

.unlock-icon {
    color: var(--primary-color, #4a90e2);
    margin-bottom: 0.75rem;
}

.unlock-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.btn-unlock {
    background: var(--primary-color, #4a90e2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-unlock:hover {
    background: var(--primary-color-hover, #3a7bc8);
    color: white;
    transform: scale(1.05);
}

/* CTA Button */
.featured-picks-cta {
    position: relative;
    z-index: 1;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.featured-picks-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .featured-picks-section {
        padding: 4rem 0;
    }

    .featured-picks-title {
        font-size: 2rem;
    }

    .pick-preview-card .team-logo-container {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .featured-picks-section {
        padding: 3rem 0;
    }

    .featured-picks-title {
        font-size: 1.75rem;
    }

    .featured-picks-subtitle {
        font-size: 1rem;
    }

    .pick-preview-card .team-logo-container {
        width: 60px;
        height: 60px;
    }

    .pick-preview__team-name {
        font-size: 0.875rem;
    }

    .pick-preview__vs {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Make cards stack on mobile */
    .featured-picks-grid .col-md-4 {
        max-width: 100%;
    }

    .featured-picks-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Dark mode support */
[data-theme="dark"] .featured-picks-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

[data-theme="dark"] .featured-picks-title {
    color: #ffffff;
}

[data-theme="dark"] .featured-picks-subtitle {
    color: #b0b0b0;
}

[data-theme="dark"] .pick-preview-card {
    background: #2d2d2d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .pick-preview-card:hover {
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.25);
}

[data-theme="dark"] .pick-preview__team-name {
    color: #ffffff;
}

[data-theme="dark"] .pick-preview__confidence {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

[data-theme="dark"] .pick-preview__pick-section {
    background: #1a1a1a;
}

[data-theme="dark"] .pick-unlock-overlay {
    background: rgba(45, 45, 45, 0.95);
}

[data-theme="dark"] .unlock-text {
    color: #b0b0b0;
}
