/* style/sports.css */

/* --- Base Page Styles --- */
.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: var(--dark-bg-1); /* Inherit from shared.css, assumed dark */
}

/* --- Hero Banner Section --- */
.page-sports__hero-banner {
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d); /* Dark gradient for the hero */
    min-height: 600px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-sports__hero-content {
    max-width: 600px;
    z-index: 1;
    text-align: left;
}

.page-sports__hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-sports__hero-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-sports__hero-title a:hover {
    color: #ffd700c2;
}

.page-sports__hero-description {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-sports__hero-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-sports__hero-actions {
    display: flex;
    gap: 20px;
}

.page-sports__hero-image {
    flex-shrink: 0;
    width: 50%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

/* --- General Section Styles --- */
.page-sports__section {
    padding: 60px 20px;
    background-color: var(--dark-bg-1);
}

.page-sports__section:nth-child(even) {
    background-color: #1a1a1a;
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.page-sports__section-title a {
    color: #FFD700;
    text-decoration: none;
}

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

.page-sports__section-description a {
    color: #FFD700;
    text-decoration: underline;
}

/* --- Button Styles --- */
.page-sports__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #1a1a1a; /* Dark text for contrast */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-sports__btn-primary:hover {
    background-color: #e6c200;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-sports__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-sports__btn-secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* --- Grids --- */
.page-sports__features-grid,
.page-sports__steps-grid,
.page-sports__promo-grid,
.page-sports__security-grid,
.page-sports__blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- Card Styles --- */
.page-sports__feature-card,
.page-sports__step-card,
.page-sports__promo-card,
.page-sports__security-item,
.page-sports__blog-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
    color: #e0e0e0;
}

.page-sports__feature-card:hover,
.page-sports__step-card:hover,
.page-sports__promo-card:hover,
.page-sports__security-item:hover,
.page-sports__blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__feature-card img,
.page-sports__step-card img,
.page-sports__promo-card img,
.page-sports__security-item img {
    width: 100px; /* Minimum 200x200px, but scaled down for display */
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    /* filter: brightness(1.2); */ /* Removed filter to keep original image color */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__feature-title,
.page-sports__step-title,
.page-sports__promo-title,
.page-sports__security-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-sports__feature-text,
.page-sports__step-text,
.page-sports__promo-text,
.page-sports__security-text {
    font-size: 16px;
    color: #e0e0e0;
}

.page-sports__feature-text a,
.page-sports__step-text a,
.page-sports__promo-text a,
.page-sports__security-text a {
    color: #FFD700;
    text-decoration: underline;
}

/* --- Get Started Section Specifics --- */
.page-sports__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* --- Security & Support Section Specifics --- */
.page-sports__contact-cta {
    text-align: center;
    margin-top: 50px;
}

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

.page-sports__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #2a2a2a;
    border: 1px solid #333333;
}

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

.page-sports__faq-question:hover {
    background: #0d0d0d;
}

.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: #FFD700;
}

.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: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

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

.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: #2a2a2a;
    color: #e0e0e0;
}

.page-sports__faq-item.active .page-sports__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}