/**
 * Sports Channels Grid
 */

.sports-grid-section {
    padding: 40px 0 20px; /* Reduced top and bottom padding */
    background: #0F172A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sports-container-box {
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
    margin-top: 10px;
}

.sports-label {
    text-align: center;
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sports-grid-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.sports-grid-wrapper {
    display: flex;
    gap: 10px;
    animation: slide-sports 60s linear infinite;
    width: fit-content;
    padding: 10px 0 20px;
}

@keyframes slide-sports {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sports-grid-section:hover .sports-grid-wrapper {
    animation-play-state: paused;
}

.sport-card {
    flex: 0 0 auto;
    width: 200px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #0F172A; /* Original site background */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sport-card:hover {
    transform: scale(1.05);
    z-index: 2;
    border-color: #ffc107;
}

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sport-card:hover img {
    transform: scale(1.1);
}

/* Yellow Prices */
.price-amount {
    color: #ffc107 !important; /* Vivid Yellow */
}

.price-amount span {
    color: #ffc107 !important;
    opacity: 0.8;
}

.sport-card:hover img {
    filter: brightness(1.1);
}

/* Specific Border Colors */
.sport-card-1 { border-bottom: 5px solid #e21313; } /* Red - ESPN/UFC */
.sport-card-2 { border-bottom: 5px solid #00529b; } /* Blue - Sky */
.sport-card-3 { border-bottom: 5px solid #ffcc00; } /* Yellow */
.sport-card-4 { border-bottom: 5px solid #00a0e3; } /* Cyan */
.sport-card-5 { border-bottom: 5px solid #ffffff; } /* White */
.sport-card-6 { border-bottom: 5px solid #6c33a3; } /* Purple */
.sport-card-7 { border-bottom: 5px solid #25d366; } /* Green */
.sport-card-8 { border-bottom: 5px solid #ff6b00; } /* Orange */

/* Responsive */
@media (max-width: 1200px) {
    .sport-card {
        width: 160px;
        height: 240px;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .sport-card {
        width: 130px;
        height: 195px;
        flex: 0 0 auto;
    }
    .sports-grid-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
