/* style/sports.css */
.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background #f4f4f4 */
    background-color: transparent; /* Body background from shared.css */
}

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

.page-sports__hero-section {
    background: linear-gradient(135deg, #1A237E, #3F51B5);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-sports__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

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

.page-sports__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.page-sports__button--primary {
    background-color: #FFD700;
    color: #1A237E;
    border-color: #FFD700;
}

.page-sports__button--primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    transform: translateY(-2px);
}

.page-sports__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

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

.page-sports__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-sports__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-sports__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555555;
}

.page-sports__features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-sports__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-sports__feature-item:hover {
    transform: translateY(-10px);
}

.page-sports__feature-icon {
    width: 120px; /* Min size 200x200px, so this is a placeholder for a larger image */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-sports__feature-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports__feature-description {
    font-size: 1em;
    color: #666666;
}

.page-sports__popular-sports-section {
    padding: 80px 0;
}

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

.page-sports__sport-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-sports__sport-card:hover {
    transform: translateY(-10px);
}

.page-sports__sport-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-sports__sport-title {
    font-size: 1.8em;
    color: #1A237E;
    margin: 20px 20px 10px;
    font-weight: bold;
}

.page-sports__sport-description {
    font-size: 1em;
    color: #666666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-sports__sport-card .page-sports__button {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-sports__live-betting-section {
    background-color: #1A237E;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-sports__live-betting-section .page-sports__section-title {
    color: #FFD700;
}

.page-sports__live-betting-section .page-sports__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-sports__promotions-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.page-sports__guide-section {
    padding: 80px 0;
}

.page-sports__guide-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-sports__guide-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-sports__guide-step-title {
    font-size: 1.6em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports__guide-item p {
    color: #666666;
    margin-bottom: 20px;
}

.page-sports__analysis-tips-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-sports__detail-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-sports__detail-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-sports__detail-item:hover {
    transform: translateY(-10px);
}

.page-sports__detail-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-sports__detail-title {
    font-size: 1.6em;
    color: #1A237E;
    margin: 20px 20px 10px;
    font-weight: bold;
}

.page-sports__detail-title a {
    color: #1A237E;
    text-decoration: none;
}

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

.page-sports__detail-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-sports__detail-item .page-sports__button {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-sports__security-section {
    padding: 80px 0;
    text-align: center;
    background-color: #1A237E;
    color: #ffffff;
}

.page-sports__security-section .page-sports__section-title {
    color: #FFD700;
}

.page-sports__security-section .page-sports__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-sports__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-sports__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-sports__hero-title {
        font-size: 2.8em;
    }
    .page-sports__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-title {
        font-size: 2.2em;
    }
    .page-sports__hero-description {
        font-size: 1.1em;
    }
    .page-sports__hero-buttons, .page-sports__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-sports__section-title {
        font-size: 1.8em;
    }
    .page-sports__features-grid, .page-sports__sports-grid, .page-sports__guide-list, .page-sports__detail-list-grid {
        grid-template-columns: 1fr;
    }
    .page-sports__feature-item, .page-sports__sport-card, .page-sports__guide-item, .page-sports__detail-item {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-title {
        font-size: 1.8em;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__button {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-sports__section-title {
        font-size: 1.5em;
    }
    .page-sports__feature-title, .page-sports__sport-title, .page-sports__guide-step-title, .page-sports__detail-title {
        font-size: 1.3em;
    }
    .page-sports__feature-icon {
        width: 100px;
        height: 100px;
    }
}