.page-sports {
    background-color: #B71C1C;
    font-family: Arial, sans-serif;
    color: #FFF5E1;
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-sports__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    overflow: hidden;
    text-align: center;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-sports__hero-content {
    padding: 0 15px;
}

.page-sports__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(244, 211, 77, 0.7);
}

.page-sports__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-sports__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-sports__button--primary {
    box-shadow: 0 4px 15px rgba(255, 204, 102, 0.4);
}

.page-sports__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 102, 0.6);
}

.page-sports__button--secondary {
    background-color: transparent;
    box-shadow: 0 0 10px rgba(242, 181, 68, 0.5);
}

.page-sports__button--secondary:hover {
    background-color: rgba(242, 181, 68, 0.1);
    box-shadow: 0 0 15px rgba(242, 181, 68, 0.7);
}

.page-sports__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(244, 211, 77, 0.6);
}

.page-sports__section-description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-sports__feature-item {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__feature-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-sports__feature-text {
    font-size: 1rem;
    line-height: 1.5;
}

.page-sports__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-sports__category-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__category-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-sports__category-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-sports__category-description {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-sports__button--small {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.page-sports__live-betting-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-sports__live-betting-text {
    flex: 1;
    text-align: center;
}

.page-sports__live-betting-image-wrapper {
    flex: 1;
    width: 100%; /* Ensure it takes full width on smaller screens */
    max-width: 600px; /* Max width for larger screens */
}

.page-sports__live-betting-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__live-betting-features {
    list-style: none;
    padding: 0;
    margin: 20px auto 30px;
    max-width: 500px;
    text-align: left;
}

.page-sports__live-betting-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
}

.page-sports__live-betting-features li::before {
    content: '✓';
    color: #F4D34D; /* Gold color for checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-sports__promotion-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__promotion-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-sports__promotion-content {
    padding: 25px;
}

.page-sports__promotion-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-sports__promotion-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-sports__cta-section {
    padding-bottom: 60px;
}

.page-sports__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__button--large {
    padding: 15px 35px;
    font-size: 1.15rem;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-sports__live-betting-content {
        flex-direction: row;
        text-align: left;
    }

    .page-sports__live-betting-text {
        order: 1;
        padding-right: 40px;
    }

    .page-sports__live-betting-image-wrapper {
        order: 2;
        max-width: 50%;
    }

    .page-sports__live-betting-features {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-sports__button {
        width: 100%;
        max-width: 280px;
    }

    .page-sports__hero-title {
        font-size: 2rem;
    }

    .page-sports__section-title {
        font-size: 1.8rem;
    }

    .page-sports__category-image,
    .page-sports__promotion-image,
    .page-sports__live-betting-image,
    .page-sports__cta-image {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
    }

    /* Ensure all images in content area are responsive and not smaller than 200px */
    .page-sports img {
        min-width: 200px;
        min-height: 200px;
    }

    .page-sports__category-image {
        height: 180px; /* Slightly smaller on mobile for category cards */
    }

    .page-sports__button--large {
        width: 100%;
        max-width: 300px;
    }
}

/* Ensure no image falls below 200px width/height */
.page-sports img:not(.page-sports__hero-image) {
    min-width: 200px;
    min-height: 200px;
}