:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f5f5f5;
    --background-dark: #222222;
    --border-color: #e0e0e0;
}

.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.page-sports .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-sports .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--background-dark); /* Dark background for contrast with gold/white text */
    color: var(--text-light);
    overflow: hidden;
}

.page-sports .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above image */
}

.page-sports .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-sports .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    opacity: 0.8; /* Slightly dim image for text readability */
}

.page-sports .hero-content {
    position: absolute; /* Overlay content on image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 80%; /* Limit width for better readability */
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
    padding: 30px;
    border-radius: 10px;
}

.page-sports .hero-content h1 {
    font-size: 3.5em;
    color: var(--primary-color); /* Gold title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports .hero-content p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-sports .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark); /* Dark text on gold button */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-sports .cta-button:hover {
    background: var(--secondary-color); /* Dark red on hover */
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-sports section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-sports section:nth-of-type(even) {
    background-color: var(--background-light); /* Light grey for alternating sections */
}

.page-sports h2 {
    font-size: 2.5em;
    color: var(--secondary-color); /* Dark red for main headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-sports h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-sports h3 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-sports p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-sports a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-sports a:hover {
    color: var(--primary-color);
}

/* Section Intro */
.page-sports .section-intro p {
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Grid */
.page-sports .feature-grid,
.page-sports .sports-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports .feature-item,
.page-sports .sports-type-item,
.page-sports .reason-item,
.page-sports .blog-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .feature-item:hover,
.page-sports .sports-type-item:hover,
.page-sports .reason-item:hover,
.page-sports .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports .feature-item img,
.page-sports .sports-type-item img,
.page-sports .reason-item img,
.page-sports .blog-card img {
    width: 100%;
    height: 250px; /* Consistent height for images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-sports .feature-item h3,
.page-sports .sports-type-item h3,
.page-sports .reason-item h3 {
    color: var(--secondary-color);
}

/* Promotions Section */
.page-sports .promo-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-sports .promo-list li {
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-sports .promo-list li strong {
    color: var(--secondary-color);
}

.page-sports .promo-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

/* Why Choose Section */
.page-sports .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports .cta-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2em;
}

/* FAQ Section */
.page-sports .section-faq {
    background-color: var(--background-light);
}

.page-sports .faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

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

.page-sports .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-sports .faq-question:hover {
    background: #f0f0f0;
}

.page-sports .faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: var(--text-dark);
}

.page-sports .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-sports .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-sports .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    border: 1px solid var(--border-color);
    border-top: none;
    color: var(--text-dark);
}

.page-sports .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to cover content */
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.page-sports .faq-answer p {
    margin-bottom: 0;
}

/* Blog/News Section */
.page-sports .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports .blog-card {
    text-align: left;
    background: #ffffff;
    border-radius: 10px;
    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;
}

.page-sports .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.page-sports .blog-card h3 {
    padding: 15px 20px 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.page-sports .blog-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-sports .blog-card h3 a:hover {
    color: var(--primary-color);
}

.page-sports .blog-card p {
    padding: 0 20px 15px;
    flex-grow: 1;
    color: var(--text-dark);
}

.page-sports .blog-date {
    display: block;
    padding: 0 20px 20px;
    font-size: 0.9em;
    color: #777;
    text-align: right;
}

.page-sports .view-all-news {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports .hero-content h1 {
        font-size: 3em;
    }
    .page-sports .hero-content p {
        font-size: 1.1em;
    }
    .page-sports h2 {
        font-size: 2em;
    }
    .page-sports h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-sports .hero-section {
        padding: 40px 15px;
    }
    .page-sports .hero-content {
        width: 90%;
        padding: 20px;
    }
    .page-sports .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-sports .hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-sports .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-sports section {
        padding: 40px 0;
    }
    .page-sports h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-sports h3 {
        font-size: 1.4em;
    }
    .page-sports .feature-grid,
    .page-sports .sports-type-grid,
    .page-sports .reasons-grid,
    .page-sports .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-sports .feature-item img,
    .page-sports .sports-type-item img,
    .page-sports .reason-item img,
    .page-sports .blog-card img {
        height: 180px;
    }
    .page-sports .faq-question {
        padding: 15px 20px;
    }
    .page-sports .faq-question h3 {
        font-size: 1em;
    }
    .page-sports .faq-toggle {
        font-size: 1.5em;
    }
    .page-sports .faq-answer {
        padding: 0 20px;
    }
    .page-sports .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-sports .blog-card h3 {
        font-size: 1.1em;
        padding: 10px 15px 0;
    }
    .page-sports .blog-card p {
        padding: 0 15px 10px;
    }
    .page-sports .blog-date {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-sports .hero-content h1 {
        font-size: 1.8em;
    }
    .page-sports .hero-content p {
        font-size: 0.9em;
    }
    .page-sports .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-sports h2 {
        font-size: 1.5em;
    }
    .page-sports .container {
        padding: 0 15px;
    }
}