.sport-module {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.sport-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sport-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.sport-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sport-image-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.sport-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sport-image-card:hover .sport-image {
    transform: scale(1.05);
}

.sport-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    color: #999999;
    padding: 2rem;
    text-align: center;
}

.sport-image-placeholder i {
    font-size: 5rem;
    color: #cd7f32;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.sport-image-placeholder p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.sport-image-placeholder strong {
    color: #666666;
    display: block;
    margin-top: 0.5rem;
}

.sport-title {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.sport-divider {
    text-align: center;
    margin-bottom: 2rem;
}

.divider-ornament {
    font-family: 'Great Vibes', 'Pacifico', cursive;
    font-size: 4rem;
    color: #cd7f32;
    display: inline-block;
    position: relative;
}

.divider-ornament::before,
.divider-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #cd7f32);
}

.divider-ornament::before {
    right: 100%;
    margin-right: 1rem;
}

.divider-ornament::after {
    left: 100%;
    margin-left: 1rem;
    background: linear-gradient(to left, transparent, #cd7f32);
}

.tv-icon {
    font-size: 5rem;
    color: #cd7f32;
    margin: 2rem 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.sport-text {
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sport-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sport-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.sport-feature:hover {
    transform: translateY(-5px);
}

.sport-feature i {
    font-size: 2.5rem;
    color: #cd7f32;
    transition: color 0.3s ease;
}

.sport-feature:hover i {
    color: #b8701d;
}

.sport-feature span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 1024px) {
    .sport-content-wrapper {
        gap: 1.5rem;
    }
    
    .sport-card {
        padding: 2.5rem 2rem;
    }
    
    .sport-title {
        font-size: 2.2rem;
    }
    
    .tv-icon {
        font-size: 4rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-module {
        padding: 3rem 1.5rem;
    }
    
    .sport-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sport-card {
        padding: 2rem 1.5rem;
    }
    
    .sport-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .tv-icon {
        font-size: 4rem;
    }
    
    .sport-text {
        font-size: 1rem;
    }
    
    .sport-features {
        gap: 2rem;
    }
    
    .sport-feature i {
        font-size: 2rem;
    }
    
    .sport-feature span {
        font-size: 0.85rem;
    }
    
    .sport-image-card {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .sport-module {
        padding: 2rem 1rem;
    }
    
    .sport-card {
        padding: 1.5rem 1rem;
    }
    
    .sport-title {
        font-size: 1.8rem;
    }
    
    .tv-icon {
        font-size: 3.5rem;
        margin: 1.5rem 0;
    }
    
    .sport-features {
        gap: 1.5rem;
    }
    
    
    .sport-image-card {
        min-height: 250px;
    }
    
    .sport-image-placeholder i {
        font-size: 3.5rem;
    }
    
    .sport-image-placeholder p {
        font-size: 0.9rem;
    }
}
