.fls-banner-wc {
    background: linear-gradient(135deg, #0d1b4d 0%, #1a237e 40%, #b8860b 100%);
}

.fls-banner-link {
    margin-top: 12px;
}

.fls-banner-link a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fls-banner-link a:hover {
    opacity: 0.9;
}

.fls-banner {
    position: relative;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 45%, #4caf50 100%);
    color: #fff;
    padding: 56px 0;
    overflow: hidden;
}

.fls-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 30%);
    pointer-events: none;
}

.fls-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.fls-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.fls-banner-text h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.fls-banner-text p {
    font-size: 17px;
    opacity: 0.92;
    max-width: 560px;
}

.fls-banner-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fls-stat {
    min-width: 110px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
}

.fls-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.fls-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.fls-section {
    padding: 40px 0 64px;
    background: #f4f7f5;
}

.fls-setup-notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.fls-setup-notice h3 {
    margin-bottom: 8px;
    color: #8d6e00;
}

.fls-setup-notice pre {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    overflow-x: auto;
    margin: 12px 0;
}

.fls-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.fls-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fls-tab {
    border: 1px solid #d7e3da;
    background: #fff;
    color: #333;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fls-tab.active {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.fls-tab-count {
    display: inline-block;
    min-width: 22px;
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    font-size: 12px;
}

.fls-tab.active .fls-tab-count {
    background: rgba(255, 255, 255, 0.22);
}

.fls-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.fls-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e53935;
    animation: fls-pulse 1.4s infinite;
}

@keyframes fls-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.fls-refresh-btn {
    border: 1px solid #4caf50;
    background: #fff;
    color: #2e7d32;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}

.fls-refresh-btn:hover {
    background: #4caf50;
    color: #fff;
}

.fls-panel {
    display: none;
}

.fls-panel.active {
    display: block;
}

.fls-empty {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    border: 1px dashed #d7e3da;
}

.fls-league-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.fls-league-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(90deg, #f8fbf8, #fff);
    border-bottom: 1px solid #edf2ee;
}

.fls-league-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.fls-league-header h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

.fls-league-country {
    font-size: 13px;
    color: #777;
}

.fls-matches {
    padding: 8px 0;
}

.fls-match {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f3f1;
}

.fls-match:last-child {
    border-bottom: none;
}

.fls-match.is-live {
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.05), transparent);
}

.fls-match-status {
    margin-bottom: 10px;
}

.fls-live-pill,
.fls-finished-pill,
.fls-time-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 10px;
}

.fls-live-pill {
    background: #ffebee;
    color: #c62828;
}

.fls-finished-pill {
    background: #eceff1;
    color: #546e7a;
}

.fls-time-pill {
    background: #e8f5e9;
    color: #2e7d32;
}

.fls-match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.fls-team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.fls-team img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.fls-team-home {
    justify-content: flex-start;
}

.fls-team-away {
    justify-content: flex-end;
    text-align: right;
}

.fls-score {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1b5e20;
    min-width: 84px;
    justify-content: center;
}

.fls-score-sep {
    color: #999;
    font-weight: 500;
}

.fls-vs {
    font-size: 14px;
    color: #888;
    font-weight: 700;
}

.fls-match-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .fls-banner-text h1 {
        font-size: 30px;
    }

    .fls-match-teams {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .fls-team,
    .fls-team-away {
        justify-content: center;
        text-align: center;
    }

    .fls-score {
        order: -1;
    }
}
