/* Faster Football Live Score - Flutter Tasarımından Uyarlanmış CSS */

:root {
    --faster-green: #00704a;
    --faster-black: #202020;
    --faster-grey: #abb2b8;
    --faster-grey-light: #efefef;
    --faster-white: #ffffff;
    --faster-orange: #d4610b;
    --faster-purple: #5e2586;
    --faster-purple-dark: #313366;
    --faster-golden: #eebf00;
    --faster-red: #ca1128;
}

/* Genel Stil */
.faster-container {
    background-color: var(--faster-white);
    min-height: 100vh;
}

.faster-card {
    background-color: var(--faster-white);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faster-card-grey {
    background-color: var(--faster-grey-light);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

/* Maç Kartı */
.faster-match-card {
    background-color: var(--faster-white);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 0.2s ease;
    cursor: pointer;
}

.faster-match-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faster-match-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.faster-team-section {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faster-team-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 4px;
}

.faster-team-name {
    font-size: 12px;
    color: var(--faster-black);
    text-align: center;
    font-weight: 400;
}

.faster-score-section {
    width: 25%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--faster-black);
}

.faster-score-live {
    color: var(--faster-red);
}

.faster-score-time {
    font-size: 11px;
    color: var(--faster-grey);
    margin-top: 4px;
}

/* Lig Widget */
.faster-league-widget {
    background-color: var(--faster-grey-light);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.faster-league-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--faster-black);
    margin-bottom: 15px;
}

/* Puan Durumu Tablosu */
.faster-table-container {
    background-color: var(--faster-grey-light);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.faster-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 16px 20px;
    border-bottom: 1px solid var(--faster-grey-light);
}

.faster-table-title {
    font-size: 12px;
    color: var(--faster-black);
    font-weight: 400;
}

.faster-table-header-item {
    font-size: 12px;
    color: var(--faster-grey);
    font-weight: 400;
    margin-left: 8px;
}

.faster-table-row {
    background-color: var(--faster-white);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faster-table-row:not(:last-child) {
    border-bottom: 1px solid var(--faster-grey-light);
}

.faster-table-team {
    display: flex;
    align-items: center;
    flex: 1;
}

.faster-table-team-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.faster-table-team-name {
    font-size: 12px;
    color: var(--faster-black);
    font-weight: 400;
}

.faster-table-stat {
    font-size: 12px;
    color: var(--faster-black);
    font-weight: 400;
    margin-left: 8px;
    min-width: 20px;
    text-align: center;
}

/* Butonlar */
.faster-btn {
    background-color: var(--faster-green);
    color: var(--faster-white);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faster-btn:hover {
    background-color: #005a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,112,74,0.3);
}

.faster-btn-secondary {
    background-color: var(--faster-grey-light);
    color: var(--faster-black);
}

.faster-btn-secondary:hover {
    background-color: var(--faster-grey);
}

/* Badge'ler */
.faster-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.faster-badge-live {
    background-color: var(--faster-red);
    color: var(--faster-white);
}

.faster-badge-finished {
    background-color: var(--faster-grey);
    color: var(--faster-white);
}

.faster-badge-upcoming {
    background-color: var(--faster-green);
    color: var(--faster-white);
}

/* Typography */
.faster-text-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--faster-black);
    margin-bottom: 16px;
}

.faster-text-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--faster-black);
    margin-bottom: 12px;
}

.faster-text-body {
    font-size: 14px;
    font-weight: 400;
    color: var(--faster-black);
}

.faster-text-small {
    font-size: 12px;
    font-weight: 400;
    color: var(--faster-grey);
}

/* Responsive */
@media (max-width: 768px) {
    .faster-team-name {
        font-size: 11px;
    }
    
    .faster-score-section {
        font-size: 12px;
    }
    
    .faster-match-card {
        height: 70px;
        padding: 10px 12px;
    }
    
    .faster-team-logo {
        width: 30px;
        height: 30px;
    }
}

/* Hover Efektleri */
.faster-hover-shadow:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Link Stilleri */
.faster-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.faster-link:hover {
    color: var(--faster-green);
}













