/* style/index-beginner-betting-guide.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-index-beginner-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

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

/* Hero Section */
.page-index-beginner-betting-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding-top: 0; /* shared.css should handle body padding-top */
}

.page-index-beginner-betting-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-index-beginner-betting-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(38, 169, 224, 0.5)); /* #26A9E0 */
    z-index: 2;
}

.page-index-beginner-betting-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-index-beginner-betting-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-beginner-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-index-beginner-betting-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.page-index-beginner-betting-guide__btn-primary,
.page-index-beginner-betting-guide__btn-secondary,
.page-index-beginner-betting-guide__btn-link,
.page-index-beginner-betting-guide__btn-large {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box; /* Ensure padding doesn't affect total width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-index-beginner-betting-guide__btn-primary {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-index-beginner-betting-guide__btn-primary:hover {
    background-color: #1e87b7; /* Darker shade */
    border-color: #1e87b7;
}

.page-index-beginner-betting-guide__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-index-beginner-betting-guide__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-index-beginner-betting-guide__btn-link {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-index-beginner-betting-guide__btn-link:hover {
    background-color: #c96706;
    border-color: #c96706;
}

.page-index-beginner-betting-guide__btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Content Sections */
.page-index-beginner-betting-guide__content-section {
    padding: 60px 0;
}

.page-index-beginner-betting-guide__dark-bg {
    background-color: #0a0a0a; /* Body background color */
    color: #ffffff;
}

.page-index-beginner-betting-guide__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #ffffff;
}

.page-index-beginner-betting-guide__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-beginner-betting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-index-beginner-betting-guide__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-index-beginner-betting-guide__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-index-beginner-betting-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-index-beginner-betting-guide__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-index-beginner-betting-guide__note {
    font-style: italic;
    color: #f0f0f0;
    margin-top: 20px;
}

/* Step-by-step Guide */
.page-index-beginner-betting-guide__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-index-beginner-betting-guide__step-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-beginner-betting-guide__step-item:hover {
    transform: translateY(-5px);
}

.page-index-beginner-betting-guide__step-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-index-beginner-betting-guide__step-description {
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Images within content */
.page-index-beginner-betting-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-beginner-betting-guide__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.page-index-beginner-betting-guide__video-section {
    padding: 60px 0;
    background-color: #0a0a0a;
    color: #ffffff;
}

.page-index-beginner-betting-guide__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-beginner-betting-guide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Feature Grid (for strategies) */
.page-index-beginner-betting-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-index-beginner-betting-guide__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-beginner-betting-guide__feature-card:hover {
    transform: translateY(-8px);
    background-color: rgba(38, 169, 224, 0.2); /* #26A9E0 with transparency */
}

.page-index-beginner-betting-guide__feature-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-index-beginner-betting-guide__feature-description {
    color: #f0f0f0;
}

/* FAQ Section */
.page-index-beginner-betting-guide__faq-title {
    margin-top: 60px;
    margin-bottom: 40px;
}

.page-index-beginner-betting-guide__faq-list {
    margin-top: 30px;
}

.page-index-beginner-betting-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-index-beginner-betting-guide__faq-item[open] {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-index-beginner-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-index-beginner-betting-guide__faq-item[open] .page-index-beginner-betting-guide__faq-question {
    background-color: rgba(38, 169, 224, 0.3); /* #26A9E0 with transparency */
    border-bottom: 1px solid #26A9E0;
}

.page-index-beginner-betting-guide__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-index-beginner-betting-guide__faq-qtext {
    flex-grow: 1;
}

.page-index-beginner-betting-guide__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    width: 25px;
    text-align: center;
    line-height: 1;
}

.page-index-beginner-betting-guide__faq-item[open] .page-index-beginner-betting-guide__faq-toggle {
    content: '−'; /* Changed by JS */
}

.page-index-beginner-betting-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    color: #f0f0f0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove default details arrow */
.page-index-beginner-betting-guide__faq-item > summary {
    list-style: none;
}
.page-index-beginner-betting-guide__faq-item > summary::-webkit-details-marker {
    display: none;
}

/* Call to Action Section */
.page-index-beginner-betting-guide__cta-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
    text-align: center;
    color: #ffffff;
}

.page-index-beginner-betting-guide__text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-beginner-betting-guide__hero-title {
        font-size: 2.8em;
    }
    .page-index-beginner-betting-guide__section-title {
        font-size: 2em;
    }
}