/* Enhanced styles for player comparison tool */

/* Base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.enhanced-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* Header styles */
.enhanced-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.enhanced-header h1 {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    color: #718096;
    font-size: 1.1rem;
    margin: 0 0 20px 0;
}

/* Button styles */
.enhanced-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enhanced-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.enhanced-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.enhanced-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.enhanced-btn.secondary:hover {
    background: white;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

/* Form styles */
.player-selection-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.enhanced-player-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.enhanced-player-input {
    position: relative;
    background: rgba(247, 250, 252, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.enhanced-player-input:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.enhanced-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1rem;
}

.enhanced-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.enhanced-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enhanced-input.selected {
    border-color: #48bb78;
    background: #f0fff4;
}

.enhanced-input.error {
    border-color: #f56565;
    background: #fff5f5;
}

/* Suggestions dropdown */
.suggestions-box {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background: #edf2f7;
    border-left: 4px solid #667eea;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.player-name {
    font-weight: 600;
    color: #2d3748;
}

.team-name {
    color: #718096;
    font-size: 0.9rem;
}

.suggestion-item.loading {
    color: #718096;
    font-style: italic;
    animation: pulse 2s infinite;
}

.suggestion-item.no-results {
    color: #a0aec0;
    font-style: italic;
    cursor: default;
}

.search-performance {
    padding: 8px 12px;
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    cursor: default;
}

.suggestion-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(2px);
}

.suggestion-item.loading:hover,
.suggestion-item.no-results:hover,
.search-performance:hover {
    background: inherit;
    color: inherit;
    transform: none;
}

/* Remove button */
.remove-player-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fed7d7;
    color: #c53030;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-player-btn:hover {
    background: #feb2b2;
    transform: scale(1.05);
}

/* Form actions */
.enhanced-form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Charts section */
.charts-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.charts-section h2 {
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.chart-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(247, 250, 252, 0.8);
    border-radius: 15px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.enhanced-select {
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
}

.enhanced-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Enhanced chart wrapper and analytics */
.chart-wrapper {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.chart-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
}

.chart-info {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

.chart-container {
    height: 500px;
    position: relative;
    margin-bottom: 20px;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 15px;
    background: rgba(247, 250, 252, 0.8);
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Analytics cards */
.analytics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.analytics-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.95) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.analytics-card h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.analytics-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.stat-highlight:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: #667eea;
}

.stat-highlight .label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.stat-highlight .value {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
    padding: 4px 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    min-width: 60px;
    text-align: center;
}

/* Performance indicators */
.performance-excellent {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
}

.performance-good {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%) !important;
}

.performance-average {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%) !important;
}

.performance-poor {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%) !important;
}

/* Chart loading state */
.chart-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    color: #718096;
    font-size: 1.1rem;
}

.chart-loading::before {
    content: '📊';
    font-size: 2rem;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

/* Enhanced chart controls */
.chart-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.enhanced-select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.enhanced-select:focus,
.enhanced-select:hover {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Chart type specific styling */
.chart-type-progression .chart-container {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.chart-type-comparison .chart-container {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05) 0%, rgba(56, 161, 105, 0.05) 100%);
}

.chart-type-radar .chart-container {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.05) 0%, rgba(221, 107, 32, 0.05) 100%);
}

.chart-type-efficiency .chart-container {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.05) 0%, rgba(229, 62, 62, 0.05) 100%);
}

/* Top 10 links section */
.top10-links-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.top10-links-section h2 {
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.top10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.position-card {
    background: rgba(247, 250, 252, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.position-card h3 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 1.2rem;
    text-align: center;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ranking-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.ranking-link:hover {
    background: #f7fafc;
    border-color: #667eea;
    color: #667eea;
}

.external-icon {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Draft analysis section */
.draft-analysis-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.draft-analysis-section h2 {
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.draft-analysis-card {
    background: rgba(247, 250, 252, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
}

.draft-analysis-card h3 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 1.3rem;
    text-align: center;
}

.percentile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.category-percentiles h4 {
    margin: 0 0 15px 0;
    color: #4a5568;
    font-size: 1.1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}

.percentile-item {
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.stat-name {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.percentile-bar {
    position: relative;
    height: 20px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.percentile-fill {
    height: 100%;
    background: linear-gradient(90deg, #48bb78 0%, #38a169 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.percentile-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rank-info {
    font-size: 0.8rem;
    color: #718096;
}

/* Enhanced comparison section */
.enhanced-comparison-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.enhanced-comparison-section h2 {
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.stats-overview h3,
.season-comparison h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.enhanced-stats-card {
    background: rgba(247, 250, 252, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.enhanced-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.card-header h4 {
    margin: 0;
    color: #2d3748;
    font-size: 1.2rem;
}

.team-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-category {
    margin-bottom: 20px;
}

.stat-category h5 {
    margin: 0 0 10px 0;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

.stat-value {
    font-weight: 600;
    color: #2d3748;
}

/* Stat comparison colors */
.stat-item.best {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    border-color: #48bb78;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.2);
}

.stat-item.worst {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border-color: #f56565;
    box-shadow: 0 2px 8px rgba(245, 101, 101, 0.2);
}

.stat-item.middle {
    background: linear-gradient(135deg, #feebc8 0%, #fbd38d 100%);
    border-color: #ed8936;
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.2);
}

.stat-item.tied {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-color: #a0aec0;
}

/* Season comparison */
.season-comparison {
    margin-top: 40px;
}

.season-chunk {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(247, 250, 252, 0.5);
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.season-chunk h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 1.3rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    .enhanced-container {
        padding: 15px;
    }
    
    .enhanced-header {
        padding: 20px;
    }
    
    .enhanced-header h1 {
        font-size: 2rem;
    }
    
    .enhanced-player-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .enhanced-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .chart-controls {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .top10-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .percentile-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}

/* Smooth transitions */
* {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

button:focus,
.enhanced-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Chart Legend Styles */
.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Chart Container Variants */
.chart-container.chart-type-radar {
    height: 600px;
}

.chart-container.chart-type-progression {
    height: 450px;
}

.chart-container.chart-type-efficiency {
    height: 550px;
}

/* Responsive Design for Analytics */
@media (max-width: 768px) {
    .chart-controls {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .chart-container {
        height: 400px;
        padding: 16px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .analytics-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .card-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .chart-legend {
        flex-direction: column;
        align-items: center;
    }
}

/* NFL Career Stats Styles */
.nfl-stats-overview {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nfl-stats-overview h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.nfl-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.enhanced-nfl-card {
    background: linear-gradient(135deg, #1a365d 0%, #2a69ac 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.enhanced-nfl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: #4299e1;
}

.enhanced-nfl-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.enhanced-nfl-card .card-header h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.nfl-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nfl-status.active {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.nfl-status.inactive {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
}

.nfl-content {
    color: #e2e8f0;
}

.nfl-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nfl-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.nfl-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nfl-label {
    font-size: 0.8rem;
    color: #a0aec0;
    font-weight: 500;
}

.nfl-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.nfl-career-stats h5,
.nfl-teams h5 {
    margin: 0 0 10px 0;
    color: #4299e1;
    font-size: 1rem;
    font-weight: 600;
}

.nfl-stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
}

.nfl-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.nfl-stat-label {
    font-size: 0.7rem;
    color: #a0aec0;
    font-weight: 500;
}

.nfl-stat-value {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.teams-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-tag {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.no-nfl-data {
    text-align: center;
    padding: 20px;
    color: #a0aec0;
}

.no-nfl-data p {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.no-nfl-data small {
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive NFL Styles */
@media (max-width: 768px) {
    .nfl-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .enhanced-nfl-card {
        padding: 15px;
    }
    
    .nfl-overview {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .nfl-stats-grid-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .enhanced-nfl-card .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* NFL Season-by-Season Breakdown Styles */
.nfl-season-comparison {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nfl-season-comparison h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.nfl-seasons-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nfl-player-seasons {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.nfl-player-seasons h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #4299e1;
}

.nfl-seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.nfl-season-card {
    background: linear-gradient(135deg, #1a365d 0%, #2a69ac 100%);
    border-radius: 10px;
    padding: 15px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nfl-season-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nfl-season-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nfl-season-header h5 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.nfl-season-info {
    color: #cbd5e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.nfl-season-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nfl-stat-category {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nfl-stat-category strong {
    color: #4299e1;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.nfl-stat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 4px;
}

.nfl-no-seasons {
    text-align: center;
    padding: 30px;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    background: #f7fafc;
}

.nfl-no-seasons h4 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.no-nfl-seasons {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

/* Responsive NFL Season Styles */
@media (max-width: 768px) {
    .nfl-seasons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .nfl-season-card {
        padding: 12px;
    }
    
    .nfl-player-seasons {
        padding: 15px;
    }
    
    .nfl-season-comparison h3 {
        font-size: 1.5rem;
    }
    
    .nfl-stat {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
}
