/* style/the-thao-ca-cuoc-bong-da.css */

/* Variables from brand colors */
:root {
    --primary-color: #E53935;
    --secondary-color: #FF5A4F;
    --card-bg: #FFFFFF;
    --background-light: #F5F7FA;
    --text-main: #333333;
    --border-color: #E0E0E0;
    --button-gradient: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
}

.page-the-thao-ca-cuoc-bong-da {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for light background */
    background-color: var(--background-light); /* Default background */
}

/* Ensure content is not covered by fixed header */
.page-the-thao-ca-cuoc-bong-da__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: var(--card-bg); /* Ensure background for contrast */
}

.page-the-thao-ca-cuoc-bong-da__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 16px;
}

.page-the-thao-ca-cuoc-bong-da__hero-image {
    flex: 1 1 50%; /* Image takes roughly half width */
    text-align: center;
    order: 2; /* Image on right for desktop */
}

.page-the-thao-ca-cuoc-bong-da__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao-ca-cuoc-bong-da__hero-content {
    flex: 1 1 40%; /* Content takes roughly other half */
    order: 1; /* Content on left for desktop */
    color: var(--text-main);
}

.page-the-thao-ca-cuoc-bong-da__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-the-thao-ca-cuoc-bong-da__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-the-thao-ca-cuoc-bong-da__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-the-thao-ca-cuoc-bong-da__btn-primary,
.page-the-thao-ca-cuoc-bong-da__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box; /* Include padding in width */
}

.page-the-thao-ca-cuoc-bong-da__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-the-thao-ca-cuoc-bong-da__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-the-thao-ca-cuoc-bong-da__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-the-thao-ca-cuoc-bong-da__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-the-thao-ca-cuoc-bong-da__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-the-thao-ca-cuoc-bong-da__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-main);
}

.page-the-thao-ca-cuoc-bong-da__intro-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.page-the-thao-ca-cuoc-bong-da__icon-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-the-thao-ca-cuoc-bong-da__icon-box {
    flex: 1 1 300px; /* Base width for items */
    max-width: 350px;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-the-thao-ca-cuoc-bong-da__icon-box:hover {
    transform: translateY(-5px);
}

.page-the-thao-ca-cuoc-bong-da__icon-box-media {
    width: 240px;
    height: 240px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(255, 90, 79, 0.3);
}

.page-the-thao-ca-cuoc-bong-da__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-the-thao-ca-cuoc-bong-da__icon-box-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-the-thao-ca-cuoc-bong-da__icon-box-text {
    font-size: 1em;
    color: var(--text-main);
}

.page-the-thao-ca-cuoc-bong-da__guide-section {
    background-color: var(--card-bg);
    padding: 60px 0;
}

.page-the-thao-ca-cuoc-bong-da__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-the-thao-ca-cuoc-bong-da__step-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-the-thao-ca-cuoc-bong-da__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    background-color: rgba(255, 90, 79, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.page-the-thao-ca-cuoc-bong-da__step-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-the-thao-ca-cuoc-bong-da__step-text {
    font-size: 1em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-the-thao-ca-cuoc-bong-da__step-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.page-the-thao-ca-cuoc-bong-da__features-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.page-the-thao-ca-cuoc-bong-da__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-the-thao-ca-cuoc-bong-da__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-the-thao-ca-cuoc-bong-da__feature-item:hover {
    transform: translateY(-5px);
}

.page-the-thao-ca-cuoc-bong-da__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-the-thao-ca-cuoc-bong-da__feature-text {
    font-size: 1em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-the-thao-ca-cuoc-bong-da__feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.page-the-thao-ca-cuoc-bong-da__promo-section {
    background-color: var(--card-bg);
    padding: 60px 0;
}

.page-the-thao-ca-cuoc-bong-da__promo-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.page-the-thao-ca-cuoc-bong-da__promo-card {
    flex: 1 1 350px;
    max-width: 500px;
    background-color: var(--background-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-the-thao-ca-cuoc-bong-da__promo-card:hover {
    transform: translateY(-5px);
}

.page-the-thao-ca-cuoc-bong-da__promo-card img {
    width: 100%;
    height: 250px; /* Fixed height for promo card images */
    object-fit: cover;
    display: block;
}

.page-the-thao-ca-cuoc-bong-da__promo-card-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-the-thao-ca-cuoc-bong-da__promo-card-text {
    font-size: 1em;
    color: var(--text-main);
    padding: 0 15px 20px;
}

.page-the-thao-ca-cuoc-bong-da__promo-card .page-the-thao-ca-cuoc-bong-da__btn-secondary {
    margin-bottom: 20px;
}

.page-the-thao-ca-cuoc-bong-da__faq-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.page-the-thao-ca-cuoc-bong-da__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.page-the-thao-ca-cuoc-bong-da__faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-the-thao-ca-cuoc-bong-da__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
}

.page-the-thao-ca-cuoc-bong-da__faq-question::-webkit-details-marker {
    display: none;
}

.page-the-thao-ca-cuoc-bong-da__faq-question::marker {
    display: none;
}

.page-the-thao-ca-cuoc-bong-da__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}