/* style/blog-shbet-promotions-guide.css */

/* Custom CSS Variables from the color scheme */
:root {
    --shbet-primary-color: #11A84E; /* Main color */
    --shbet-secondary-color: #22C768; /* Auxiliary color */
    --shbet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    --shbet-card-bg: #11271B; /* Card Background */
    --shbet-background: #08160F; /* Overall Background */
    --shbet-text-main: #F2FFF6; /* Main Text */
    --shbet-text-secondary: #A7D9B8; /* Secondary Text */
    --shbet-border-color: #2E7A4E; /* Border */
    --shbet-glow: #57E38D; /* Glow */
    --shbet-gold: #F2C14E; /* Gold */
    --shbet-divider: #1E3A2A; /* Divider */
    --shbet-deep-green: #0A4B2C; /* Deep Green */
}

/* Base styles for the page content, assuming body has dark background */
.page-blog-shbet-promotions-guide {
    background-color: var(--shbet-background); /* Deep Green */
    color: var(--shbet-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-blog-shbet-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-shbet-promotions-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image container */
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-shbet-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-shbet-promotions-guide__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative; /* Ensure it's in normal flow, not overlapping image */
    z-index: 1;
}

.page-blog-shbet-promotions-guide__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: var(--shbet-gold); /* Gold color for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Soft glow */
}

.page-blog-shbet-promotions-guide__description {
    font-size: 1.2em;
    color: var(--shbet-text-secondary); /* Secondary text color */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.page-blog-shbet-promotions-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-blog-shbet-promotions-guide__cta-button--primary {
    background: var(--shbet-button-gradient); /* Green gradient */
    color: var(--shbet-text-main); /* Light text */
    border: none;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-shbet-promotions-guide__cta-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-shbet-promotions-guide__cta-button--secondary {
    background: var(--shbet-card-bg); /* Darker green background */
    color: var(--shbet-text-main); /* Light text */
    border: 2px solid var(--shbet-border-color);
    margin-left: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-shbet-promotions-guide__cta-button--secondary:hover {
    transform: translateY(-3px);
    background-color: var(--shbet-primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styles */
.page-blog-shbet-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-shbet-promotions-guide__introduction-section,
.page-blog-shbet-promotions-guide__guide-section,
.page-blog-shbet-promotions-guide__how-to-claim-section,
.page-blog-shbet-promotions-guide__tips-section,
.page-blog-shbet-promotions-guide__conclusion-section {
    padding: 60px 0;
    text-align: left;
}

.page-blog-shbet-promotions-guide__categories-section,
.page-blog-shbet-promotions-guide__faq-section {
    padding: 60px 0;
    background-color: var(--shbet-deep-green); /* Darker section */
    color: var(--shbet-text-main);
}

.page-blog-shbet-promotions-guide__light-bg {
    background-color: var(--shbet-background); /* Use the main dark background */
    color: var(--shbet-text-main);
}

.page-blog-shbet-promotions-guide__dark-bg {
    background-color: var(--shbet-deep-green); /* Slightly deeper green */
    color: var(--shbet-text-main);
}

.page-blog-shbet-promotions-guide__section-title {
    font-size: 2.5em;
    color: var(--shbet-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-shbet-promotions-guide__subsection-title {
    font-size: 1.8em;
    color: var(--shbet-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-shbet-promotions-guide p {
    margin-bottom: 1em;
    color: var(--shbet-text-secondary);
}

.page-blog-shbet-promotions-guide strong {
    color: var(--shbet-text-main);
}

.page-blog-shbet-promotions-guide a {
    color: var(--shbet-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-shbet-promotions-guide a:hover {
    color: var(--shbet-gold);
    text-decoration: underline;
}

.page-blog-shbet-promotions-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--shbet-text-secondary);
}

.page-blog-shbet-promotions-guide__list li {
    margin-bottom: 8px;
    color: var(--shbet-text-secondary);
}

.page-blog-shbet-promotions-guide__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Promo Grid */
.page-blog-shbet-promotions-guide__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-shbet-promotions-guide__promo-card {
    background-color: var(--shbet-card-bg); /* Card background */
    border: 1px solid var(--shbet-border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-shbet-promotions-guide__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog-shbet-promotions-guide__card-title {
    font-size: 1.5em;
    color: var(--shbet-primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-shbet-promotions-guide__card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: var(--shbet-text-secondary);
}

.page-blog-shbet-promotions-guide__card-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.page-blog-shbet-promotions-guide__card-list li::before {
    content: '✓';
    color: var(--shbet-glow);
    position: absolute;
    left: 0;
    top: 0;
}

/* How-to-Claim Steps */
.page-blog-shbet-promotions-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-shbet-promotions-guide__step-card {
    background-color: var(--shbet-card-bg);
    border: 1px solid var(--shbet-border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-blog-shbet-promotions-guide__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--shbet-primary-color);
    color: var(--shbet-text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(17, 168, 78, 0.5);
}

.page-blog-shbet-promotions-guide__step-title {
    font-size: 1.3em;
    color: var(--shbet-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* CTA Wrapper */
.page-blog-shbet-promotions-guide__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-blog-shbet-promotions-guide__cta-wrapper--bottom {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* FAQ Section */
.page-blog-shbet-promotions-guide__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-shbet-promotions-guide__faq-item {
    background-color: var(--shbet-card-bg);
    border: 1px solid var(--shbet-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-shbet-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--shbet-text-main);
    cursor: pointer;
    background-color: var(--shbet-deep-green); /* Slightly darker for question */
    transition: background-color 0.3s ease;
}

.page-blog-shbet-promotions-guide__faq-question:hover {
    background-color: var(--shbet-primary-color);
}

.page-blog-shbet-promotions-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-shbet-promotions-guide__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    margin-left: 15px;
    color: var(--shbet-gold);
    transition: transform 0.3s ease;
}

/* For details tag, hide default marker */
.page-blog-shbet-promotions-guide__faq-item summary {
    list-style: none;
}
.page-blog-shbet-promotions-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-shbet-promotions-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--shbet-text-secondary);
    background-color: var(--shbet-card-bg); /* Lighter background for answer */
    line-height: 1.7;
}

/* Active state for FAQ toggle (JS controlled) */
.page-blog-shbet-promotions-guide__faq-item.active .page-blog-shbet-promotions-guide__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}
/* For details, JS will update text content */


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-shbet-promotions-guide__section-title {
        font-size: 2em;
    }
    .page-blog-shbet-promotions-guide__subsection-title {
        font-size: 1.6em;
    }
    .page-blog-shbet-promotions-guide__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-blog-shbet-promotions-guide__hero-content {
        padding: 0 15px;
    }
    .page-blog-shbet-promotions-guide__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-blog-shbet-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-shbet-promotions-guide__hero-section {
        padding: 30px 15px !important;
        padding-top: 10px !important;
    }

    .page-blog-shbet-promotions-guide__hero-image-wrapper {
        margin-bottom: 20px;
    }

    /* Images responsiveness */
    .page-blog-shbet-promotions-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* Video responsiveness (if any, although not explicitly in HTML for this page) */
    .page-blog-shbet-promotions-guide video,
    .page-blog-shbet-promotions-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-blog-shbet-promotions-guide__video-section,
    .page-blog-shbet-promotions-guide__video-container,
    .page-blog-shbet-promotions-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-shbet-promotions-guide__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    /* Button responsiveness */
    .page-blog-shbet-promotions-guide__cta-button,
    .page-blog-shbet-promotions-guide__btn-primary,
    .page-blog-shbet-promotions-guide__btn-secondary,
    .page-blog-shbet-promotions-guide a[class*="button"],
    .page-blog-shbet-promotions-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important; /* Reset margin for single column */
    }

    .page-blog-shbet-promotions-guide__cta-wrapper--bottom {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-shbet-promotions-guide__container,
    .page-blog-shbet-promotions-guide__promo-card,
    .page-blog-shbet-promotions-guide__step-card,
    .page-blog-shbet-promotions-guide__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-shbet-promotions-guide__promo-card,
    .page-blog-shbet-promotions-guide__step-card {
        margin-left: 0;
        margin-right: 0;
    }

    .page-blog-shbet-promotions-guide__section-title {
        font-size: 1.8em;
    }
    .page-blog-shbet-promotions-guide__subsection-title {
        font-size: 1.4em;
    }
    .page-blog-shbet-promotions-guide__promo-grid,
    .page-blog-shbet-promotions-guide__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-shbet-promotions-guide__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-blog-shbet-promotions-guide__faq-answer {
        padding: 0 20px 15px;
    }
}