/* Maç Detayları Sayfası Stilleri */
.match-details-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Geri Dönüş Butonu */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: var(--primary-color);
    background: rgba(26, 115, 232, 0.1);
}

.back-button i {
    font-size: 1.2rem;
}

/* Ana Maç Kartı */
.main-match-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.league-info img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.league-info span {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.team {
    flex: 1;
    text-align: center;
}

.team img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.team h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.form-indicators span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 500;
    color: white;
}

.win { background: #34a853; }
.draw { background: #fbbc05; }
.loss { background: #ea4335; }

.match-status {
    text-align: center;
}

.match-time {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.match-date {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.stadium {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.broadcast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Tahmin Kartı */
.prediction-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.prediction-card h3 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.prediction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.match-prediction,
.goals-prediction {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.match-prediction h4,
.goals-prediction h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.prediction-rates {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.rate-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rate-item .rate {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rate-item .label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.goals-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goal-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.goal-stat .label {
    width: 80px;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.goal-stat .percentage {
    width: 50px;
    font-size: 0.9rem;
    text-align: right;
}

.predicted-score {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.predicted-score .label {
    color: var(--gray-color);
}

.predicted-score .score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Son Maçlar */
.recent-matches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recent-matches-column {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.recent-matches-column h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.team-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.score {
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: #eee;
}

.score.win {
    background: rgba(52, 168, 83, 0.1);
    color: #34a853;
}

.score.loss {
    background: rgba(234, 67, 53, 0.1);
    color: #ea4335;
}

.match-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Responsive Tasarım */
@media screen and (max-width: 992px) {
    .recent-matches {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .match-info {
        flex-direction: column;
        gap: 2rem;
    }

    .team img {
        width: 80px;
        height: 80px;
    }

    .match-status {
        order: -1;
    }

    .prediction-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prediction-rates {
        flex-direction: column;
    }
} 