/*
Theme Name: Elite Sports Picks
Description: Professional dark-themed sports betting website with picks analysis, performance tracking, and betting history. Features modern responsive design with data visualization.
Author: Elite Sports Picks
Version: 1.0.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff6b35;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff6b35;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Header */
header.site-header {
    text-align: center;
    padding: 40px 0;
}

.site-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.site-tagline {
    color: #b0b0b0;
    font-size: 1.3rem;
    font-weight: 300;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid #333;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.hero-content {
    padding: 40px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8f00 100%);
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Pick of the Day Section */
.pick-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 50px;
}

.section-header {
    background: linear-gradient(45deg, #ff6b35 0%, #ff8f00 100%);
    color: white;
    padding: 25px 40px;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
}

.section-header::after {
    content: '🔥';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.pick-content {
    padding: 40px;
}

.pick-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.pick-date {
    background: #333;
    color: #ff6b35;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    border: 1px solid #ff6b35;
}

.pick-confidence {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.pick-sport {
    background: #555;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.pick-title {
    font-size: 2.2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: bold;
}

.pick-details {
    background: #333;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #ff6b35;
}

.match-info {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 15px;
}

.bet-info {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.odds {
    color: #4caf50;
    font-weight: bold;
}

.pick-analysis {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.view-all-picks {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35 0%, #ff8f00 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.view-all-picks:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* Stats Preview */
.stats-preview {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    padding: 40px;
    border: 1px solid #333;
    margin-bottom: 50px;
}

.stats-title {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

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

.stat-card {
    background: #333;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #555;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Picks Grid for My Picks Page */
.date-filter {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-label {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

.date-input {
    background: #333;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 10px 15px;
    color: #e0e0e0;
    font-size: 1rem;
}

.filter-btn {
    background: linear-gradient(45deg, #ff6b35 0%, #ff8f00 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
}

.picks-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.pick-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pick-header {
    background: linear-gradient(45deg, #ff6b35 0%, #ff8f00 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pick-game {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.pick-status {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.status-pending {
    background: #ffc107;
    color: #000;
}

.status-win {
    background: #4caf50;
    color: white;
}

.status-loss {
    background: #f44336;
    color: white;
}

.status-push {
    background: #9e9e9e;
    color: white;
}

.pick-body {
    padding: 25px;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    text-align: center;
}

.meta-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.meta-value {
    color: #e0e0e0;
    font-weight: bold;
    font-size: 1.1rem;
}

.bet-line {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b35;
}

.bet-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
}

.bet-odds {
    color: #4caf50;
    font-size: 1.1rem;
    font-weight: bold;
}

.pick-reasoning {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

/* History Page Specific Styles */
.time-filter {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-filter .filter-btn {
    background: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-filter .filter-btn.active, .time-filter .filter-btn:hover {
    background: linear-gradient(45deg, #ff6b35 0%, #ff8f00 100%);
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

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

.stats-overview .stat-card {
    transition: transform 0.3s ease;
}

.stats-overview .stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number.positive {
    color: #4caf50;
}

.stat-number.negative {
    color: #f44336;
}

.stat-number.neutral {
    color: #ff6b35;
}

.stat-period {
    color: #888;
    font-size: 0.9rem;
}

.charts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
}

.chart-title {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    height: 300px;
}

.performance-breakdown, .recent-activity {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    margin-bottom: 40px;
}

.breakdown-title, .activity-title {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

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

.breakdown-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.breakdown-sport {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.breakdown-record {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.breakdown-percentage {
    color: #b0b0b0;
    font-size: 1rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
}

.activity-item.win {
    border-left-color: #4caf50;
}

.activity-item.loss {
    border-left-color: #f44336;
}

.activity-item.push {
    border-left-color: #ffc107;
}

.activity-info {
    flex-grow: 1;
}

.activity-game {
    font-weight: bold;
    margin-bottom: 5px;
}

.activity-bet {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.activity-result {
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.result-win {
    background: #4caf50;
    color: white;
}

.result-loss {
    background: #f44336;
    color: white;
}

.result-push {
    background: #ffc107;
    color: #000;
}

/* Summary Stats */
.daily-summary {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.summary-title {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

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

.summary-stat {
    text-align: center;
    padding: 15px;
    background: #333;
    border-radius: 10px;
}

.summary-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.summary-number.positive {
    color: #4caf50;
}

.summary-number.negative {
    color: #f44336;
}

.summary-number.neutral {
    color: #ffc107;
}

.summary-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
    
    .site-title, .page-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pick-title {
        font-size: 1.8rem;
    }
    
    .pick-meta, .date-filter, .time-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-content, .pick-content, .stats-preview {
        padding: 25px;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .pick-header {
        flex-direction: column;
        text-align: center;
    }
    
    .meta-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section, .pick-section, .stats-preview, .pick-card, .stat-card, .chart-container, .performance-breakdown, .recent-activity {
    animation: fadeInUp 0.8s ease-out;
}

.pick-section {
    animation-delay: 0.2s;
}

.stats-preview {
    animation-delay: 0.4s;
}

.pick-card:nth-child(2) { animation-delay: 0.1s; }
.pick-card:nth-child(3) { animation-delay: 0.2s; }
.pick-card:nth-child(4) { animation-delay: 0.3s; }