/* style/blog-18bet-latest-promotions.css */

:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-blog-18bet-latest-promotions {
    color: var(--color-text-main); /* Light text for dark body background */
    background-color: var(--color-background);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-18bet-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-18bet-latest-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-deep-green);
}

.page-blog-18bet-latest-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit image height */
    overflow: hidden;
}

.page-blog-18bet-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast, but not changing color */
}

.page-blog-18bet-latest-promotions__hero-content {
    position: relative;
    z-index: 1;
    padding: 30px 20px;
    max-width: 800px;
    margin-top: 20px;
}

.page-blog-18bet-latest-promotions__hero-title {
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-size: clamp(1.8rem, 3.5vw, 3rem); /* Responsive H1 font size */
}

.page-blog-18bet-latest-promotions__hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-18bet-latest-promotions__section {
    padding: 60px 0;
}

.page-blog-18bet-latest-promotions__dark-bg {
    background-color: var(--color-background);
    color: var(--color-text-main);
}

.page-blog-18bet-latest-promotions__light-bg {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-blog-18bet-latest-promotions__section-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-gold);
    line-height: 1.3;
}

.page-blog-18bet-latest-promotions__text-block {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.page-blog-18bet-latest-promotions__content-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-blog-18bet-latest-promotions__btn-primary,
.page-blog-18bet-latest-promotions__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word;
}

.page-blog-18bet-latest-promotions__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    box-shadow: 0 4px 15px rgba(var(--color-button-gradient-start), 0.4);
}

.page-blog-18bet-latest-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-button-gradient-start), 0.6);
}

.page-blog-18bet-latest-promotions__btn-secondary {
    background-color: transparent;
    color: var(--color-button-gradient-start);
    border: 2px solid var(--color-button-gradient-start);
}

.page-blog-18bet-latest-promotions__btn-secondary:hover {
    background-color: var(--color-button-gradient-start);
    color: var(--color-text-main);
}

/* Lists */
.page-blog-18bet-latest-promotions__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-18bet-latest-promotions__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
}

.page-blog-18bet-latest-promotions__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-glow);
}

.page-blog-18bet-latest-promotions__numbered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-18bet-latest-promotions__numbered-list .page-blog-18bet-latest-promotions__list-item {
    counter-increment: my-awesome-counter;
    padding-left: 40px;
}

.page-blog-18bet-latest-promotions__numbered-list .page-blog-18bet-latest-promotions__list-item::before {
    content: counter(my-awesome-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* Promo Grid */
.page-blog-18bet-latest-promotions__promo-grid,
.page-blog-18bet-latest-promotions__product-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-18bet-latest-promotions__promo-card,
.page-blog-18bet-latest-promotions__product-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-18bet-latest-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-18bet-latest-promotions__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-blog-18bet-latest-promotions__card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* FAQ Section */
.page-blog-18bet-latest-promotions__faq-list {
    margin-top: 40px;
}

.page-blog-18bet-latest-promotions__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-blog-18bet-latest-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-blog-18bet-latest-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-blog-18bet-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--color-gold);
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-18bet-latest-promotions__faq-question:hover {
    background-color: var(--color-primary);
}

.page-blog-18bet-latest-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-blog-18bet-latest-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-blog-18bet-latest-promotions__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-18bet-latest-promotions__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-18bet-latest-promotions__conclusion-section .page-blog-18bet-latest-promotions__btn-primary {
    margin-top: 30px;
    min-width: 250px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-18bet-latest-promotions__section-title {
        font-size: 2rem;
    }
    .page-blog-18bet-latest-promotions__hero-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-blog-18bet-latest-promotions__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-18bet-latest-promotions__hero-content {
        padding: 20px;
    }
    .page-blog-18bet-latest-promotions__hero-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
    .page-blog-18bet-latest-promotions__hero-description {
        font-size: 1rem;
    }
    .page-blog-18bet-latest-promotions__section {
        padding: 40px 0;
    }
    .page-blog-18bet-latest-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-18bet-latest-promotions__text-block,
    .page-blog-18bet-latest-promotions__list-item,
    .page-blog-18bet-latest-promotions__card-text {
        font-size: 0.95rem;
    }
    .page-blog-18bet-latest-promotions__promo-grid,
    .page-blog-18bet-latest-promotions__product-promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-18bet-latest-promotions__promo-card,
    .page-blog-18bet-latest-promotions__product-card {
        padding: 20px;
    }
    .page-blog-18bet-latest-promotions__card-title {
        font-size: 1.3rem;
    }
    .page-blog-18bet-latest-promotions__faq-question {
        font-size: 1.05rem;
        padding: 15px 20px;
    }
    .page-blog-18bet-latest-promotions__faq-answer {
        padding: 15px 20px;
    }

    /* --- MOBILE SPECIFIC OVERRIDES --- */
    /* Images */
    .page-blog-18bet-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Image Containers */
    .page-blog-18bet-latest-promotions__hero-image-wrapper,
    .page-blog-18bet-latest-promotions__promo-card,
    .page-blog-18bet-latest-promotions__product-card,
    .page-blog-18bet-latest-promotions__container,
    .page-blog-18bet-latest-promotions__section,
    .page-blog-18bet-latest-promotions__promo-grid,
    .page-blog-18bet-latest-promotions__product-promo-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Buttons */
    .page-blog-18bet-latest-promotions__btn-primary,
    .page-blog-18bet-latest-promotions__btn-secondary,
    .page-blog-18bet-latest-promotions a[class*="button"],
    .page-blog-18bet-latest-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Button Containers */
    .page-blog-18bet-latest-promotions__hero-content,
    .page-blog-18bet-latest-promotions__cta-buttons,
    .page-blog-18bet-latest-promotions__button-group,
    .page-blog-18bet-latest-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-blog-18bet-latest-promotions__hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}