/* === GENEL === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background: #f5f7fb;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-size: 0.85rem;
}
.container {
    max-width: 1000px;
    padding: 15px;
}

/* === HEADER === */
.header {
    background: #ffffff;
    border-bottom: 3px solid #6366f1;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.header h1 {
    font-weight: 700;
    color: #1e1b4b;
    letter-spacing: -0.5px;
    font-size: 1.6rem;
}
.header h2 {
    font-weight: 600;
    color: #1e1b4b;
    font-size: 1.4rem;
}
.header small, .header p {
    color: #6b7280;
    font-size: 0.8rem;
}

/* === ACCORDION === */
.accordion-button {
    background: #ffffff;
    color: #1e1b4b;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 6px;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
}
.accordion-button:not(.collapsed) {
    background: #eef2ff;
    color: #4338ca;
    border-color: #6366f1;
}
.accordion-body {
    padding: 0 10px 10px 10px;
}

/* === MAÇ KARTI === */
.match-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    gap: 10px;
    position: relative;
}
.match-card:hover {
    border-color: #6366f1;
}
.team-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.85rem;
    flex: 1;
}
.home-team { text-align: right; }
.away-team { text-align: left; }
.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    cursor: pointer;
}
.live-minute {
    font-size: 0.7rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 2px;
    display: none;
}
.match-score {
    font-weight: 700;
    font-size: 1rem;
    color: #1e1b4b;
}
.match-time {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
}
.match-card a {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 6px;
    background: #6366f1;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    white-space: nowrap;
}
.match-card a:hover {
    background: #4f46e5;
    color: #fff;
}

/* === DETAY KARTLARI === */
.card-premium {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}
.card-premium h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e1b4b;
    font-size: 0.95rem;
}

/* === FORM BADGES === */
.form-badge {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    margin: 1px;
    font-size: 0.7rem;
    color: #fff;
}
.form-w { background: #10b981; }
.form-d { background: #f59e0b; color: #000; }
.form-l { background: #ef4444; }

/* === PROGRESS === */
.progress {
    height: 16px;
    background: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 6px;
}
.progress-bar-home { background: #10b981; color: #fff; font-size: 0.7rem; }
.progress-bar-draw { background: #f59e0b; color: #000; font-size: 0.7rem; }
.progress-bar-away { background: #ef4444; color: #fff; font-size: 0.7rem; }

/* === H2H === */
.h2h-item {
    background: #f9fafb;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e7eb;
    font-size: 0.8rem;
}

/* === POISSON === */
.poisson-highlight {
    background: #f5f3ff;
    border-left: 4px solid #6366f1;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}

/* === BUTONLAR === */
.btn-outline-secondary {
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* === TAKVİM ŞERİDİ === */
.date-strip {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}
.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 58px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    font-size: 0.75rem;
}
.date-item:hover {
    border-color: #6366f1;
    box-shadow: 0 6px 18px rgba(99,102,241,0.15);
    transform: translateY(-2px);
}
.date-item.selected {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(245,158,11,0.3);
}
.date-item .day-name {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.date-item .day-num {
    font-size: 1.2rem;
    font-weight: 700;
}
.today-dot {
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    margin-top: 2px;
}

/* Canlı animasyon */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 1.5s infinite;
}
.match-score small {
    display: block;
    font-size: 0.65rem;
    color: #6b7280;
}
.match-odds {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 2px;
}
.match-odds .badge {
    font-size: 0.7rem;
    padding: 2px 4px;
}