/* style/blog-e2bet-promotion-strategy.css */
/* Body background is #08160F (dark), so text should be light */

.page-blog-e2bet-promotion-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__hero-content {
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-e2bet-promotion-strategy__lead-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-e2bet-promotion-strategy__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-e2bet-promotion-strategy__btn-primary,
.page-blog-e2bet-promotion-strategy__btn-secondary,
.page-blog-e2bet-promotion-strategy__btn-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-e2bet-promotion-strategy__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-blog-e2bet-promotion-strategy__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-blog-e2bet-promotion-strategy__btn-secondary {
    background: #08160F; /* Background */
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
}

.page-blog-e2bet-promotion-strategy__btn-secondary:hover {
    background: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border-color: #57E38D; /* Glow */
}

.page-blog-e2bet-promotion-strategy__btn-text-link {
    background: transparent;
    color: #57E38D; /* Glow */
    border: none;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: underline;
}

.page-blog-e2bet-promotion-strategy__btn-text-link:hover {
    color: #F2C14E; /* Gold */
}

.page-blog-e2bet-promotion-strategy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #08160F; /* Background */
    border-radius: 8px;
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-e2bet-promotion-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #13994A, #2AD16F);
    border-radius: 5px;
}

.page-blog-e2bet-promotion-strategy__sub-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #F2FFF6; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-e2bet-promotion-strategy__paragraph {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-blog-e2bet-promotion-strategy__paragraph strong {
    color: #F2FFF6; /* Text Main */
}

.page-blog-e2bet-promotion-strategy__feature-grid,
.page-blog-e2bet-promotion-strategy__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-e2bet-promotion-strategy__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
    color: #A7D9B8; /* Text Secondary */
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-blog-e2bet-promotion-strategy__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-e2bet-promotion-strategy__card-title {
    font-size: 1.35rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-e2bet-promotion-strategy__card-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-e2bet-promotion-strategy__list,
.page-blog-e2bet-promotion-strategy__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-e2bet-promotion-strategy__ordered-list {
    list-style-type: decimal;
}

.page-blog-e2bet-promotion-strategy__list-item {
    margin-bottom: 10px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-e2bet-promotion-strategy__list-item strong {
    color: #F2FFF6; /* Text Main */
}

.page-blog-e2bet-promotion-strategy__content-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-e2bet-promotion-strategy__step-card {
    padding: 30px;
}

.page-blog-e2bet-promotion-strategy__step-number {
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-size: 1.8rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #2E7A4E; /* Border */
}

.page-blog-e2bet-promotion-strategy__faq-list {
    margin-top: 30px;
}

.page-blog-e2bet-promotion-strategy__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-e2bet-promotion-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* Divider */
    transition: background-color 0.3s ease;
}

.page-blog-e2bet-promotion-strategy__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-blog-e2bet-promotion-strategy__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow */
    margin-left: 15px;
}

.page-blog-e2bet-promotion-strategy__faq-item[open] .page-blog-e2bet-promotion-strategy__faq-toggle {
    content: '−';
}

.page-blog-e2bet-promotion-strategy__faq-answer {
    padding: 20px 25px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
    border-top: 1px solid #2E7A4E; /* Border */
}

.page-blog-e2bet-promotion-strategy__faq-answer p {
    margin-bottom: 0;
}

/* Details element specific styling */
.page-blog-e2bet-promotion-strategy__faq-item summary {
    list-style: none;
}

.page-blog-e2bet-promotion-strategy__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-e2bet-promotion-strategy__cta-buttons--bottom {
    margin-top: 50px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-e2bet-promotion-strategy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-e2bet-promotion-strategy__hero-section {
        padding: 10px 15px 40px;
    }

    .page-blog-e2bet-promotion-strategy__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-blog-e2bet-promotion-strategy__lead-text {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

    .page-blog-e2bet-promotion-strategy__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-blog-e2bet-promotion-strategy__btn-primary,
    .page-blog-e2bet-promotion-strategy__btn-secondary,
    .page-blog-e2bet-promotion-strategy__btn-text-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-e2bet-promotion-strategy__content-area {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-e2bet-promotion-strategy__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding-bottom: 10px;
    }

    .page-blog-e2bet-promotion-strategy__sub-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
        margin-top: 30px;
    }

    .page-blog-e2bet-promotion-strategy__paragraph,
    .page-blog-e2bet-promotion-strategy__list-item,
    .page-blog-e2bet-promotion-strategy__card-text,
    .page-blog-e2bet-promotion-strategy__faq-answer {
        font-size: 0.9rem;
    }

    .page-blog-e2bet-promotion-strategy__feature-grid,
    .page-blog-e2bet-promotion-strategy__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-e2bet-promotion-strategy__card {
        padding: 20px;
    }

    .page-blog-e2bet-promotion-strategy__card-image,
    .page-blog-e2bet-promotion-strategy__content-image,
    .page-blog-e2bet-promotion-strategy__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-blog-e2bet-promotion-strategy__hero-image-wrapper,
    .page-blog-e2bet-promotion-strategy__feature-card,
    .page-blog-e2bet-promotion-strategy__step-card,
    .page-blog-e2bet-promotion-strategy__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-blog-e2bet-promotion-strategy__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-e2bet-promotion-strategy__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-e2bet-promotion-strategy__main-title {
        font-size: clamp(1.5rem, 9vw, 2.2rem);
    }

    .page-blog-e2bet-promotion-strategy__section-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

    .page-blog-e2bet-promotion-strategy__lead-text {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
    }
}