/* style/sports-live-betting-guide.css */

/* Base styles for the page content */
.page-sports-live-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css (#121212) */
}

.page-sports-live-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-sports-live-betting-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-sports-live-betting-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Slightly lighter white for body text */
}

/* Hero Section */
.page-sports-live-betting-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 600px;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #000080; /* Auxiliary color for hero background */
    overflow: hidden;
}

.page-sports-live-betting-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-sports-live-betting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-sports-live-betting-guide__hero-section > .page-sports-live-betting-guide__container {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.page-sports-live-betting-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-sports-live-betting-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-sports-live-betting-guide__btn-primary,
.page-sports-live-betting-guide__btn-secondary,
.page-sports-live-betting-guide__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-sports-live-betting-guide__btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #000080; /* Navy blue text for contrast */
    border: 2px solid #FFD700;
}

.page-sports-live-betting-guide__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000050;
}

.page-sports-live-betting-guide__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-sports-live-betting-guide__btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
}

.page-sports-live-betting-guide__btn-tertiary {
    background-color: #000080; /* Navy blue background */
    color: #FFD700; /* Gold text for contrast */
    border: 2px solid #000080;
    padding: 10px 20px;
    font-size: 1em;
}

.page-sports-live-betting-guide__btn-tertiary:hover {
    background-color: #000050;
    border-color: #000050;
    color: #FFD700;
}

.page-sports-live-betting-guide__btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Section backgrounds */
.page-sports-live-betting-guide__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter than body background for distinction */
    color: #ffffff;
    padding: 60px 0;
}

.page-sports-live-betting-guide__light-bg {
    background-color: #222222; /* Another dark background for contrast with dark-bg */
    color: #ffffff;
    padding: 60px 0;
}

/* Image content */
.page-sports-live-betting-guide__image-content {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Features section grid */
.page-sports-live-betting-guide__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-sports-live-betting-guide__card {
    background-color: #000080; /* Auxiliary color for card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-sports-live-betting-guide__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports-live-betting-guide__card-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* List styles */
.page-sports-live-betting-guide__list,
.page-sports-live-betting-guide__ordered-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-sports-live-betting-guide__list-item {
    background-color: #2a2a2a; /* Slightly darker than light-bg for list items */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-sports-live-betting-guide__list-item:last-child {
    margin-bottom: 0;
}

.page-sports-live-betting-guide__list-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-sports-live-betting-guide__list-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-sports-live-betting-guide__list--two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* CTA Section */
.page-sports-live-betting-guide__cta-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-color: #000080; /* Auxiliary color for CTA background */
    overflow: hidden;
}

.page-sports-live-betting-guide__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-sports-live-betting-guide__cta-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* FAQ Section */
.page-sports-live-betting-guide__faq-list {
    margin-top: 40px;
}

.page-sports-live-betting-guide__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports-live-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #000080; /* Auxiliary color for FAQ question background */
    color: #FFD700;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-sports-live-betting-guide__faq-question:hover {
    background-color: #000060;
}

.page-sports-live-betting-guide__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: inherit;
}

.page-sports-live-betting-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-sports-live-betting-guide__faq-item.active .page-sports-live-betting-guide__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-sports-live-betting-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
    background-color: #2a2a2a;
}

.page-sports-live-betting-guide__faq-item.active .page-sports-live-betting-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}