/* style/betting-tips.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-betting-tips {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Assuming body handles the main background */
}

/* Hero Section */
.page-betting-tips__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 60px 20px; /* General padding, assuming body handles top offset */
    overflow: hidden;
    text-align: center;
    background-color: #000000; /* Explicitly dark background for hero */
    color: #ffffff;
}

.page-betting-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* No filter to change image color */
}

.page-betting-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-betting-tips__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-betting-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

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

.page-betting-tips__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-betting-tips__section {
    padding: 60px 20px;
}

.page-betting-tips__dark-bg {
    background-color: #000000; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-betting-tips__light-bg {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text */
}

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

.page-betting-tips__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for titles */
}

.page-betting-tips__dark-bg .page-betting-tips__section-title {
    color: #26A9E0; /* Brand color for titles on dark background */
}

.page-betting-tips p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-betting-tips strong {
    color: #26A9E0; /* Highlight important keywords with brand color */
}

/* Buttons */
.page-betting-tips__btn-primary {
    display: inline-block;
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-sizing: border-box;
}

.page-betting-tips__btn-primary:hover {
    background-color: #1a7fb3; /* Slightly darker on hover */
    transform: translateY(-2px);
}

.page-betting-tips__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #26A9E0; /* Main brand color */
    padding: 15px 30px;
    border: 2px solid #26A9E0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.page-betting-tips__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-betting-tips__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-betting-tips__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Grid Layouts */
.page-betting-tips__grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-betting-tips__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Cards */
.page-betting-tips__card {
    background-color: #ffffff; /* Light background for cards */
    color: #333333; /* Dark text for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-betting-tips__card:hover {
    transform: translateY(-5px);
}

.page-betting-tips__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    /* No filter to change image color */
}

.page-betting-tips__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0;
    line-height: 1.3;
}

.page-betting-tips__card-title a {
    color: #26A9E0;
    text-decoration: none;
}

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

/* Checklists */
.page-betting-tips__checklist,
.page-betting-tips__error-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-betting-tips__checklist li,
.page-betting-tips__error-list li {
    background-color: #f0f8ff; /* Light background for list items on light section */
    color: #333333;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-betting-tips__checklist li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

.page-betting-tips__error-list li::before {
    content: '❌';
    margin-right: 10px;
    font-size: 1.2em;
}

/* Video Section */
.page-betting-tips__video-section {
    position: relative;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Apply for desktop as well if needed */
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.page-betting-tips__video-intro {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-betting-tips__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-betting-tips__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-betting-tips__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* No filter to change video color */
}

.page-betting-tips__video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3em;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.page-betting-tips__video-play-overlay:hover {
    background: rgba(38, 169, 224, 0.7); /* Hover with brand color */
}

.page-betting-tips__play-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.page-betting-tips__watch-text {
    font-size: 0.6em;
    font-weight: bold;
    text-transform: uppercase;
}

.page-betting-tips__video-caption {
    margin-top: 20px;
    font-style: italic;
    color: #cccccc;
}

/* FAQ Section */
.page-betting-tips__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-tips__faq-item {
    background-color: #f8f8f8; /* Light background for FAQ item */
    color: #333333; /* Dark text for contrast */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-betting-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0; /* Brand color for questions */
    transition: background-color 0.3s ease;
}

.page-betting-tips__faq-question:hover {
    background-color: #f0f8ff; /* Light hover effect */
}

.page-betting-tips__faq-question h3 {
    margin: 0;
    color: inherit;
}

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

.page-betting-tips__faq-item.active .page-betting-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-betting-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f8f8;
    color: #333333;
}

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

.page-betting-tips__faq-answer p {
    margin-bottom: 10px;
    font-size: 1em;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-betting-tips__hero-title {
        font-size: 2.8em;
    }
    .page-betting-tips__section-title {
        font-size: 2em;
    }
    .page-betting-tips__grid-3-cols,
    .page-betting-tips__grid-2-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-betting-tips__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-betting-tips__hero-title {
        font-size: 2em;
    }
    .page-betting-tips__hero-description {
        font-size: 1em;
    }
    .page-betting-tips__section {
        padding: 40px 15px;
    }
    .page-betting-tips__content-area {
        padding: 0 15px;
    }
    .page-betting-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Mobile image responsiveness */
    .page-betting-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-betting-tips__card-image {
        height: auto; /* Allow height to adjust */
    }

    /* Mobile video responsiveness */
    .page-betting-tips video,
    .page-betting-tips__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}"