.flt-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: "Inter", system-ui, sans-serif;
    color: #fff;
}

.flt-section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 12px;
    padding-left: 10px;
    border-left: 4px solid #ff3b3b;
    letter-spacing: 0.3px;
}
.fit-strong{
	color:#333;
}
.flt-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

@media (max-width: 1200px) {
    .flt-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .flt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .flt-grid { grid-template-columns: 1fr; }
}

.flt-card {
    background: rgba(20, 28, 45, 0.75);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.25s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.flt-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 59, 59, 0.4);
}

.flt-match {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.flt-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.flt-flag {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	display:none;
}

.flt-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.flt-score {
	font-size: 18px;
	font-weight: 800;
	padding: 6px 10px;
	background: rgba(255,255,255,0.06);
	border-radius: 10px;
	min-width: 60px;
	text-align: center;
	max-width: 51px;
	margin: 20px auto 0;
	width: 100%;
}

.flt-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.flt-badge.live {
    background: #ff3b3b;
    color: #fff;
    animation: pulse 1.5s infinite;
}

.flt-badge.finished {
	background: #c00;
	color: #fff;
}

.flt-badge.paused {
    background: #ffb020;
    color: #111;
}

.flt-badge.upcoming {
    background: #4da3ff;
    color: #fff;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(255,59,59,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}

.flt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.flt-live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}