/* style/blog-zebet-casino-latest-promotions.css */

:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-blog-zebet-casino-latest-promotions {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Body is dark, so use light text */
    background-color: var(--background-color);
}

.page-blog-zebet-casino-latest-promotions__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-blog-zebet-casino-latest-promotions__hero-image-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.page-blog-zebet-casino-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-zebet-casino-latest-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-zebet-casino-latest-promotions__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-blog-zebet-casino-latest-promotions__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-main-color);
}

.page-blog-zebet-casino-latest-promotions__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-zebet-casino-latest-promotions__btn-primary,
.page-blog-zebet-casino-latest-promotions__btn-secondary,
.page-blog-zebet-casino-latest-promotions__btn-card {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-blog-zebet-casino-latest-promotions__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-zebet-casino-latest-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #FFE48C 0%, #E6B02C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-zebet-casino-latest-promotions__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-zebet-casino-latest-promotions__btn-secondary:hover {
    background: rgba(255, 211, 107, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-zebet-casino-latest-promotions__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-blog-zebet-casino-latest-promotions__section-wrapper {
    margin-bottom: 60px;
}

.page-blog-zebet-casino-latest-promotions__section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-zebet-casino-latest-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-blog-zebet-casino-latest-promotions__paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-main-color);
    text-align: justify;
}

.page-blog-zebet-casino-latest-promotions__promo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-zebet-casino-latest-promotions__promo-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-zebet-casino-latest-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-zebet-casino-latest-promotions__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-blog-zebet-casino-latest-promotions__promo-card .page-blog-zebet-casino-latest-promotions__card-title {
    font-size: 1.6rem;
    color: var(--secondary-color);
    padding: 20px 25px 10px;
    margin: 0;
}

.page-blog-zebet-casino-latest-promotions__promo-card .page-blog-zebet-casino-latest-promotions__card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main-color);
    padding: 0 25px 20px;
    flex-grow: 1;
}

.page-blog-zebet-casino-latest-promotions__promo-card .page-blog-zebet-casino-latest-promotions__btn-card {
    margin: 0 25px 25px;
    text-align: center;
    width: calc(100% - 50px);
    max-width: 100%;
}

.page-blog-zebet-casino-latest-promotions__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-zebet-casino-latest-promotions__list-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-zebet-casino-latest-promotions__list-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-zebet-casino-latest-promotions__list-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main-color);
}

.page-blog-zebet-casino-latest-promotions__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px 0;
    object-fit: cover;
}

.page-blog-zebet-casino-latest-promotions__sub-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-blog-zebet-casino-latest-promotions__advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-zebet-casino-latest-promotions__advantage-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-blog-zebet-casino-latest-promotions__advantage-item .page-blog-zebet-casino-latest-promotions__list-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-blog-zebet-casino-latest-promotions__faq-list {
    margin-top: 40px;
}

.page-blog-zebet-casino-latest-promotions__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-zebet-casino-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.page-blog-zebet-casino-latest-promotions__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-zebet-casino-latest-promotions__faq-item[open] .page-blog-zebet-casino-latest-promotions__faq-question {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-zebet-casino-latest-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-blog-zebet-casino-latest-promotions__faq-item[open] .page-blog-zebet-casino-latest-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-zebet-casino-latest-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main-color);
}

.page-blog-zebet-casino-latest-promotions__faq-answer p {
    margin-bottom: 10px;
}

.page-blog-zebet-casino-latest-promotions__cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    background-color: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-zebet-casino-latest-promotions__cta-section .page-blog-zebet-casino-latest-promotions__section-title {
    color: var(--secondary-color);
}

.page-blog-zebet-casino-latest-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-blog-zebet-casino-latest-promotions__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-zebet-casino-latest-promotions__hero-description {
        font-size: 1.1rem;
    }

    .page-blog-zebet-casino-latest-promotions__section-title {
        font-size: 2.2rem;
    }

    .page-blog-zebet-casino-latest-promotions__promo-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-blog-zebet-casino-latest-promotions__content-area {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog-zebet-casino-latest-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-blog-zebet-casino-latest-promotions__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-blog-zebet-casino-latest-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-zebet-casino-latest-promotions__hero-buttons,
    .page-blog-zebet-casino-latest-promotions__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 通用图片与容器 */
    .page-blog-zebet-casino-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-blog-zebet-casino-latest-promotions__hero-image-wrapper,
    .page-blog-zebet-casino-latest-promotions__promo-card,
    .page-blog-zebet-casino-latest-promotions__list-item,
    .page-blog-zebet-casino-latest-promotions__advantage-item,
    .page-blog-zebet-casino-latest-promotions__faq-item,
    .page-blog-zebet-casino-latest-promotions__cta-section,
    .page-blog-zebet-casino-latest-promotions__section-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-zebet-casino-latest-promotions__content-area {
        padding: 40px 0;
    }

    .page-blog-zebet-casino-latest-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-blog-zebet-casino-latest-promotions__paragraph,
    .page-blog-zebet-casino-latest-promotions__list-description,
    .page-blog-zebet-casino-latest-promotions__faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* 产品展示图区域 (promo-card-grid) */
    .page-blog-zebet-casino-latest-promotions__promo-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-zebet-casino-latest-promotions__card-image {
        height: 180px;
    }

    .page-blog-zebet-casino-latest-promotions__promo-card .page-blog-zebet-casino-latest-promotions__card-title {
        font-size: 1.4rem;
        padding: 15px 20px 8px;
    }

    .page-blog-zebet-casino-latest-promotions__promo-card .page-blog-zebet-casino-latest-promotions__card-description {
        padding: 0 20px 15px;
    }

    .page-blog-zebet-casino-latest-promotions__promo-card .page-blog-zebet-casino-latest-promotions__btn-card {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
    }

    .page-blog-zebet-casino-latest-promotions__list-title,
    .page-blog-zebet-casino-latest-promotions__advantage-item .page-blog-zebet-casino-latest-promotions__list-title {
        font-size: 1.5rem;
    }

    .page-blog-zebet-casino-latest-promotions__sub-title {
        font-size: 1.6rem;
    }

    .page-blog-zebet-casino-latest-promotions__faq-question {
        font-size: 1.05rem;
        padding: 15px 20px;
    }

    .page-blog-zebet-casino-latest-promotions__faq-toggle {
        font-size: 1.5rem;
    }

    .page-blog-zebet-casino-latest-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    /* 按钮与按钮容器 */
    .page-blog-zebet-casino-latest-promotions__btn-primary,
    .page-blog-zebet-casino-latest-promotions__btn-secondary,
    .page-blog-zebet-casino-latest-promotions__btn-card {
        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;
    }
}