/* style/blog-how-to-use-fcb8-link-for-betting.css */

/* Global styles for this page content */
.page-blog-how-to-use-fcb8-link-for-betting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for dark background */
    background-color: var(--bg-color); /* Default background color */
}

.page-blog-how-to-use-fcb8-link-for-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Color variables based on provided palette */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --bg-color: #08160F; /* Body background from shared */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Intelligent color contrast assurance */
/* Since body background is dark (--bg-color: #08160F), default text color is light */
.page-blog-how-to-use-fcb8-link-for-betting {
    color: var(--text-main); /* Light text on dark background */
}

.page-blog-how-to-use-fcb8-link-for-betting__dark-bg {
    background-color: var(--bg-color);
    color: var(--text-main);
}

.page-blog-how-to-use-fcb8-link-for-betting__light-bg {
    background-color: #ffffff; /* Use a light background for contrast */
    color: #333333; /* Dark text for contrast */
}

.page-blog-how-to-use-fcb8-link-for-betting__text-contrast-fix {
    color: #333333; /* Ensure dark text on light background */
}

/* Hero Section */
.page-blog-how-to-use-fcb8-link-for-betting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-bottom: 40px; /* Space below content */
    background-color: var(--bg-color);
    padding-top: 10px; /* Small top padding, not --header-offset */
}

.page-blog-how-to-use-fcb8-link-for-betting__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-how-to-use-fcb8-link-for-betting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum size */
}

.page-blog-how-to-use-fcb8-link-for-betting__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 20px;
    z-index: 1; /* Ensure content is above image if any overlap */
    color: var(--text-main);
}

.page-blog-how-to-use-fcb8-link-for-betting__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-how-to-use-fcb8-link-for-betting__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-blog-how-to-use-fcb8-link-for-betting__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-blog-how-to-use-fcb8-link-for-betting__btn-primary,
.page-blog-how-to-use-fcb8-link-for-betting__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

.page-blog-how-to-use-fcb8-link-for-betting__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-use-fcb8-link-for-betting__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-use-fcb8-link-for-betting__btn-secondary {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-blog-how-to-use-fcb8-link-for-betting__btn-secondary:hover {
    background-color: var(--gold-color);
    color: var(--bg-color); /* Dark text on gold background */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.page-blog-how-to-use-fcb8-link-for-betting__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold-color);
    padding-top: 20px;
}

/* Content Sections */
.page-blog-how-to-use-fcb8-link-for-betting__content-section,
.page-blog-how-to-use-fcb8-link-for-betting__steps-section,
.page-blog-how-to-use-fcb8-link-for-betting__security-section,
.page-blog-how-to-use-fcb8-link-for-betting__faq-section,
.page-blog-how-to-use-fcb8-link-for-betting__cta-bottom-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-how-to-use-fcb8-link-for-betting__content-section p,
.page-blog-how-to-use-fcb8-link-for-betting__steps-section p,
.page-blog-how-to-use-fcb8-link-for-betting__security-section p,
.page-blog-how-to-use-fcb8-link-for-betting__faq-section p,
.page-blog-how-to-use-fcb8-link-for-betting__cta-bottom-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Steps Section */
.page-blog-how-to-use-fcb8-link-for-betting__step-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-how-to-use-fcb8-link-for-betting__step-item:last-of-type {
    margin-bottom: 0;
}

.page-blog-how-to-use-fcb8-link-for-betting__step-item--reverse {
    flex-direction: row-reverse;
}

.page-blog-how-to-use-fcb8-link-for-betting__step-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-height: 200px; /* Minimum size */
}

.page-blog-how-to-use-fcb8-link-for-betting__step-content {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.page-blog-how-to-use-fcb8-link-for-betting__step-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-use-fcb8-link-for-betting__step-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-how-to-use-fcb8-link-for-betting__step-content ul li {
    margin-bottom: 8px;
}

/* Security Section (Card Grid) */
.page-blog-how-to-use-fcb8-link-for-betting__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-use-fcb8-link-for-betting__card {
    background-color: var(--card-bg); /* Dark card background */
    color: var(--text-main); /* Light text on dark card */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-use-fcb8-link-for-betting__card-image {
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 200px; /* Minimum size */
}

.page-blog-how-to-use-fcb8-link-for-betting__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold-color);
}

/* FAQ Section */
.page-blog-how-to-use-fcb8-link-for-betting__faq-list {
    margin-top: 40px;
}

.page-blog-how-to-use-fcb8-link-for-betting__faq-item {
    background-color: #f8f8f8; /* Light background for FAQ items */
    color: #333333; /* Dark text for contrast */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-use-fcb8-link-for-betting__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333333; /* Dark text for contrast */
    background-color: #e0e0e0; /* Slightly darker background for summary */
}

.page-blog-how-to-use-fcb8-link-for-betting__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-use-fcb8-link-for-betting__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-use-fcb8-link-for-betting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-use-fcb8-link-for-betting__faq-answer {
    padding: 15px 25px 25px;
    border-top: 1px solid #d0d0d0;
    background-color: #f0f0f0; /* Slightly lighter background for answer */
    color: #333333; /* Dark text for contrast */
}

/* CTA Bottom Section */
.page-blog-how-to-use-fcb8-link-for-betting__cta-bottom-section {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-use-fcb8-link-for-betting__step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-how-to-use-fcb8-link-for-betting__step-item--reverse {
        flex-direction: column; /* Reset reverse for smaller screens */
    }

    .page-blog-how-to-use-fcb8-link-for-betting__step-image,
    .page-blog-how-to-use-fcb8-link-for-betting__step-content {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Mobile image responsiveness */
    .page-blog-how-to-use-fcb8-link-for-betting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Mobile container and section padding */
    .page-blog-how-to-use-fcb8-link-for-betting__container,
    .page-blog-how-to-use-fcb8-link-for-betting__hero-content,
    .page-blog-how-to-use-fcb8-link-for-betting__cta-buttons,
    .page-blog-how-to-use-fcb8-link-for-betting__card-grid,
    .page-blog-how-to-use-fcb8-link-for-betting__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Button responsiveness */
    .page-blog-how-to-use-fcb8-link-for-betting__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
    .page-blog-how-to-use-fcb8-link-for-betting__btn-primary,
    .page-blog-how-to-use-fcb8-link-for-betting__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-blog-how-to-use-fcb8-link-for-betting__hero-section {
        padding-top: 10px !important; /* Ensure small padding */
    }

    .page-blog-how-to-use-fcb8-link-for-betting__main-title {
        font-size: 2rem;
    }

    .page-blog-how-to-use-fcb8-link-for-betting__section-title {
        font-size: 1.8rem;
    }

    .page-blog-how-to-use-fcb8-link-for-betting__step-content h3 {
        font-size: 1.4rem;
    }

    .page-blog-how-to-use-fcb8-link-for-betting__card-title {
        font-size: 1.2rem;
    }

    .page-blog-how-to-use-fcb8-link-for-betting__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-how-to-use-fcb8-link-for-betting__faq-answer {
        padding: 10px 20px 20px;
    }
}