/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/hero-bg.jpg') center/cover;
    padding: 100px 0;
}

/* Cards */
.card {
    transition: transform 0.2s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.card-header {
    font-weight: bold;
}

/* Prediction Cards */
.prediction-card {
    border-radius: 10px;
    margin-bottom: 20px;
}

.prediction-card .match-time {
    color: #666;
    font-size: 0.9em;
}

.prediction-card .prediction-rate {
    font-weight: bold;
    color: #28a745;
}

/* Odds Container */
.odds-container {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.odds-box {
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 5px;
    border-radius: 3px;
    font-weight: bold;
}

/* Prediction Details */
.prediction-details {
    margin-top: 15px;
}

.analysis-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Footer */
footer {
    margin-top: 50px;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff !important;
}

/* Buttons */
.btn-primary {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

/* Stats Section */
.stats-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
}

.stats-card .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

/* Form Elements */
.form-select {
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .card {
        margin-bottom: 15px;
    }
}
