.page-sports {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #100224; /* Deep purple-black background */
}

.page-sports__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px;
    background-color: #26A9E0; /* Primary color for hero background */
    background: linear-gradient(135deg, #26A9E0 0%, #100224 100%);
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width for large screens */
    margin-bottom: 20px;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__hero-content {
    max-width: 800px;
    color: #FFFFFF;
}

.page-sports__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, otherwise let browser default/shared handle it */
    /* clamp(2.5rem, 5vw, 3.5rem) example if needed */
}

.page-sports__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-sports__hero-cta {
    display: inline-block;
    background-color: #EA7C07; /* Login/CTA color */
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-sports__hero-cta:hover {
    background-color: #ff9500; /* Lighter orange for hover */
}

.page-sports__section-title {
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    margin: 60px 0 40px;
    font-size: 2.2em;
    line-height: 1.3;
}

.page-sports__categories-section,
.page-sports__live-betting-section,
.page-sports__benefits-section,
.page-sports__promotions-section,
.page-sports__responsible-gambling-section {
    padding: 20px;
    margin-bottom: 40px;
}

.page-sports__categories-grid,
.page-sports__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-sports__category-card,
.page-sports__benefit-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-sports__category-card:hover,
.page-sports__benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-sports__category-image,
.page-sports__benefit-icon {
    width: 100%;
    max-width: 400px; /* Ensure images are not tiny */
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__benefit-icon {
  max-width: 300px; /* Slightly smaller for benefit icons */
}

.page-sports__category-title,
.page-sports__benefit-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #26A9E0; /* Primary color for titles */
}

.page-sports__category-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-sports__category-title a:hover {
    text-decoration: underline;
}

.page-sports__category-description,
.page-sports__benefit-description {
    font-size: 0.95em;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-sports__category-cta {
    display: inline-block;
    background-color: #83a1f2; /* Blue pill button */
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}

.page-sports__category-cta:hover {
    background-color: #688cec;
}

.page-sports__live-betting-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.page-sports__live-betting-image-wrapper {
    width: 100%;
    max-width: 600px;
}

.page-sports__live-betting-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__live-betting-content .page-sports__section-title {
    margin-top: 0;
}

.page-sports__live-betting-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 30px;
}

.page-sports__live-betting-cta {
    display: inline-block;
    background-color: #EA7C07; /* Login/CTA color */
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-sports__live-betting-cta:hover {
    background-color: #ff9500;
}

.page-sports__promotions-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.page-sports__promotions-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__promotions-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 25px;
}

.page-sports__promotions-cta {
    display: inline-block;
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-sports__promotions-cta:hover {
    background-color: #1a8ccf;
}

.page-sports__responsible-gambling-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #000000; /* Black background for this section */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__responsible-gambling-description {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__responsible-gambling-cta {
    display: inline-block;
    background-color: #83a1f2; /* Blue pill button */
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-sports__responsible-gambling-cta:hover {
    background-color: #688cec;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-sports__hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .page-sports__hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    .page-sports__section-title {
        font-size: 2.8em;
    }
    .page-sports__live-betting-section {
        flex-direction: row;
        text-align: left;
    }
    .page-sports__live-betting-content {
        flex: 1;
    }
    .page-sports__live-betting-image-wrapper {
        flex: 1;
    }
    .page-sports__promotions-content {
        flex-direction: row;
        text-align: left;
    }
    .page-sports__promotions-text {
        flex: 1;
    }
    .page-sports__promotions-image {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-title {
        font-size: 2em;
    }
    .page-sports__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }
    .page-sports__hero-image-wrapper {
        margin-bottom: 15px;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__hero-cta {
        padding: 10px 25px;
    }
    .page-sports__categories-grid,
    .page-sports__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-sports__live-betting-section,
    .page-sports__promotions-content {
        flex-direction: column;
        text-align: center;
    }
    .page-sports__live-betting-description,
    .page-sports__promotions-description {
        font-size: 0.95em;
    }
    .page-sports__live-betting-image,
    .page-sports__promotions-image {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-sports__categories-section,
    .page-sports__live-betting-section,
    .page-sports__benefits-section,
    .page-sports__promotions-section,
    .page-sports__responsible-gambling-section {
        padding: 15px;
        margin-bottom: 30px;
    }
    /* Ensure all content area images are responsive and don't cause overflow */
    .page-sports img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-sports__category-image, .page-sports__benefit-icon {
        max-width: 100%; /* Ensure these are not fixed width and cause overflow */
    }
}

/* Ensure content area images are at least 200px wide for desktop, but responsive */
.page-sports__category-image, .page-sports__benefit-icon, .page-sports__live-betting-image, .page-sports__promotions-image {
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
  object-fit: cover; /* Ensure images fill their space without distortion */
}

/* No filter properties for images */
.page-sports img {
  filter: none; /* Explicitly remove any potential filter */
}