.page-sports {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

/* Header offset for desktop */
.page-sports__hero-section {
    padding-top: var(--header-offset, 120px);
}

.page-sports__section-padding {
    padding: 60px 20px;
}

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

.page-sports__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-sports__section-title--light {
    color: #ffffff;
}

.page-sports__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__section-description--light {
    color: #f0f0f0;
}

.page-sports__sub-title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* HERO Section */
.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FFD700, #1A1A1A);
    overflow: hidden;
}

.page-sports__hero-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    z-index: 1;
}

.page-sports__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: #ffffff;
    padding: 0 15px;
}

.page-sports__hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* CTA Button - Primary */
.page-sports__cta-button,
.page-sports__btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    cursor: pointer;
}

.page-sports__cta-button:hover,
.page-sports__btn-primary:hover {
    background: #e6c200;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Button - Secondary */
.page-sports__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #FFD700;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    cursor: pointer;
}

.page-sports__btn-secondary:hover {
    background: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* General Layouts */
.page-sports__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-sports__flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-sports__flex-container--reverse {
    flex-direction: row-reverse;
}

.page-sports__text-content {
    flex: 1;
}

.page-sports__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-sports__image-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__text-center {
    text-align: center;
}

/* Card Styles */
.page-sports__card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.page-sports__card--dark {
    background: #1A1A1A;
    color: #f0f0f0;
    border: 1px solid #FFD700;
}

.page-sports__card--dark .page-sports__card-title {
    color: #FFD700;
}

.page-sports__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-sports__card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.page-sports__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-sports__card-title a:hover {
    color: #FFD700;
}

.page-sports__card-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    flex-grow: 1;
}

.page-sports__card--dark .page-sports__card-text {
    color: #cccccc;
}

.page-sports__card-link {
    display: inline-block;
    margin-top: 20px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-sports__card-link:hover {
    text-decoration: underline;
    color: #e6c200;
}

/* List Styles */
.page-sports__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-sports__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333333;
}

.page-sports__list li:last-child {
    margin-bottom: 0;
}

.page-sports__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 20px;
}

.page-sports__dark-bg .page-sports__list li {
    color: #f0f0f0;
}

/* Button Group */
.page-sports__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-sports__button-group--center {
    justify-content: center;
}

.page-sports__btn-center {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Dark background sections */
.page-sports__dark-bg {
    background-color: #1A1A1A;
    color: #f0f0f0;
}

.page-sports__light-bg {
    background-color: #f8f8f8;
    color: #333333;
}

/* FAQ Section */
.page-sports__faq-list {
    margin-top: 40px;
}

.page-sports__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__faq-item.active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-sports__dark-bg .page-sports__faq-question {
    background: #2a2a2a;
    border-color: #3f3f3f;
    color: #f0f0f0;
}

.page-sports__dark-bg .page-sports__faq-question h3 {
    color: #f0f0f0;
}

.page-sports__faq-question:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.page-sports__dark-bg .page-sports__faq-question:hover {
    background: #3a3a3a;
    border-color: #4f4f4f;
}

.page-sports__faq-question:active {
    background: #eeeeee;
}

.page-sports__dark-bg .page-sports__faq-question:active {
    background: #4a4a4a;
}

.page-sports__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #1A1A1A;
}

.page-sports__dark-bg .page-sports__faq-question h3 {
    color: #f0f0f0;
}

.page-sports__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
    color: #FFD700;
    transform: rotate(180deg);
}

.page-sports__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: #f9f9f9;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.page-sports__dark-bg .page-sports__faq-answer {
    background: #1a1a1a;
    color: #f0f0f0;
}

.page-sports__faq-item.active .page-sports__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.page-sports__dark-bg .page-sports__faq-item.active .page-sports__faq-answer {
    border-color: #3f3f3f;
}

.page-sports__faq-answer p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.page-sports__dark-bg .page-sports__faq-answer p {
    color: #cccccc;
}

.page-sports__faq-answer .page-sports__card-link {
    font-size: 16px;
    margin-top: 0;
}

/* Image specific styles */
.page-sports img {
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: 42px;
    }
    .page-sports__section-title {
        font-size: 30px;
    }
    .page-sports__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-sports__flex-container {
        flex-direction: column;
    }
    .page-sports__flex-container--reverse {
        flex-direction: column;
    }
    .page-sports__image-wrapper {
        order: -1;
    }
    .page-sports__flex-container--reverse .page-sports__image-wrapper {
        order: 0;
    }
}

@media (max-width: 768px) {
    /* Header offset for mobile */
    .page-sports__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports__section-padding {
        padding: 40px 15px;
    }

    .page-sports__hero-title {
        font-size: 36px;
    }

    .page-sports__hero-description {
        font-size: 16px;
    }

    .page-sports__section-title {
        font-size: 28px;
    }
    .page-sports__section-description {
        font-size: 16px;
    }
    .page-sports__sub-title {
        font-size: 20px;
    }

    .page-sports__cta-button,
    .page-sports__btn-primary,
    .page-sports__btn-secondary,
    .page-sports a[class*="button"],
    .page-sports a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .page-sports__button-group {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 0;
      padding-right: 0;
      flex-direction: column;
      gap: 15px;
    }

    .page-sports__card {
        padding: 20px;
    }

    .page-sports__card-image {
        height: 180px;
    }
    .page-sports__card-title {
        font-size: 20px;
    }
    .page-sports__card-text {
        font-size: 15px;
    }

    .page-sports__list li {
        font-size: 15px;
        padding-left: 25px;
    }
    .page-sports__list li::before {
        font-size: 18px;
    }

    /* Images responsive */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__hero-section,
    .page-sports__about-section,
    .page-sports__sports-types-section,
    .page-sports__live-betting-section,
    .page-sports__promotions-section,
    .page-sports__safety-support-section,
    .page-sports__faq-section,
    .page-sports__news-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ Mobile */
    .page-sports__faq-question {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
}