/* style/resources-388bet-latest-promotions.css */

/* Variables */
:root {
    --page-388bet-primary-color: #0A192F;
    --page-388bet-secondary-color: #FFD700;
    --page-388bet-text-light: #FFFFFF;
    --page-388bet-text-dark: #333333;
    --page-388bet-bg-dark: #0A192F;
    --page-388bet-bg-light: #F0F2F5;
    --page-388bet-accent-color: #FF4500; /* A vibrant accent for calls to action */
}

.page-resources-388bet-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--page-388bet-text-dark);
    line-height: 1.6;
    background-color: var(--page-388bet-bg-light);
}

.page-resources-388bet-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-388bet-latest-promotions__hero-section {
    background: linear-gradient(135deg, var(--page-388bet-bg-dark) 0%, #1a2a44 100%);
    color: var(--page-388bet-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-388bet-latest-promotions__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-resources-388bet-latest-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-388bet-secondary-color);
}

.page-resources-388bet-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-resources-388bet-latest-promotions__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-388bet-latest-promotions__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-resources-388bet-latest-promotions__btn--primary {
    background-color: var(--page-388bet-secondary-color);
    color: var(--page-388bet-bg-dark);
    border: 2px solid var(--page-388bet-secondary-color);
}

.page-resources-388bet-latest-promotions__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-388bet-latest-promotions__btn--secondary {
    background-color: transparent;
    color: var(--page-388bet-secondary-color);
    border: 2px solid var(--page-388bet-secondary-color);
}

.page-resources-388bet-latest-promotions__btn--secondary:hover {
    background-color: var(--page-388bet-secondary-color);
    color: var(--page-388bet-bg-dark);
    transform: translateY(-2px);
}

.page-resources-388bet-latest-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-388bet-latest-promotions__hero-image-container {
    flex-shrink: 0;
}

.page-resources-388bet-latest-promotions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-resources-388bet-latest-promotions__section--intro {
    background-color: var(--page-388bet-bg-light);
}

.page-resources-388bet-latest-promotions__section--highlight {
    background-color: #f8f8f8;
}

.page-resources-388bet-latest-promotions__section--how-to {
    background-color: var(--page-388bet-bg-light);
}

.page-resources-388bet-latest-promotions__section--tips {
    background-color: #f8f8f8;
}

.page-resources-388bet-latest-promotions__section--faq {
    background-color: var(--page-388bet-bg-light);
}

.page-resources-388bet-latest-promotions__section--final-cta {
    background: linear-gradient(45deg, var(--page-388bet-primary-color) 0%, #1a2a44 100%);
    color: var(--page-388bet-text-light);
    text-align: center;
}

.page-resources-388bet-latest-promotions__section-title {
    font-size: 2.5em;
    color: var(--page-388bet-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-388bet-latest-promotions__section--final-cta .page-resources-388bet-latest-promotions__section-title {
    color: var(--page-388bet-secondary-color);
}

.page-resources-388bet-latest-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-388bet-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-388bet-latest-promotions__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-388bet-latest-promotions__section--final-cta .page-resources-388bet-latest-promotions__text {
    color: var(--page-388bet-text-light);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Promo Grid */
.page-resources-388bet-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-388bet-latest-promotions__promo-card {
    background-color: var(--page-388bet-text-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-388bet-latest-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-388bet-latest-promotions__promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-388bet-latest-promotions__promo-title {
    font-size: 1.6em;
    color: var(--page-388bet-primary-color);
    margin-bottom: 15px;
}

.page-resources-388bet-latest-promotions__promo-description {
    font-size: 1em;
    color: var(--page-388bet-text-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* How-To Steps */
.page-resources-388bet-latest-promotions__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-resources-388bet-latest-promotions__steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--page-388bet-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-388bet-latest-promotions__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    font-size: 2em;
    font-weight: bold;
    color: var(--page-388bet-secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
    background-color: var(--page-388bet-primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--page-388bet-text-light);
}

.page-resources-388bet-latest-promotions__step-title {
    font-size: 1.5em;
    color: var(--page-388bet-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-388bet-latest-promotions__step-description {
    font-size: 1em;
    color: var(--page-388bet-text-dark);
}

.page-resources-388bet-latest-promotions__step-description a {
    color: var(--page-388bet-primary-color);
    text-decoration: underline;
}

.page-resources-388bet-latest-promotions__step-description a:hover {
    color: var(--page-388bet-secondary-color);
}

.page-resources-388bet-latest-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Tips Section */
.page-resources-388bet-latest-promotions__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-resources-388bet-latest-promotions__tips-list li {
    background-color: var(--page-388bet-text-light);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    font-size: 1.1em;
    color: var(--page-388bet-text-dark);
}

.page-resources-388bet-latest-promotions__tips-list li strong {
    color: var(--page-388bet-primary-color);
}

.page-resources-388bet-latest-promotions__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-resources-388bet-latest-promotions__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-388bet-latest-promotions__faq-item {
    background-color: var(--page-388bet-text-light);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-resources-388bet-latest-promotions__faq-question {
    font-size: 1.3em;
    color: var(--page-388bet-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-388bet-latest-promotions__faq-answer {
    font-size: 1em;
    color: var(--page-388bet-text-dark);
}

/* Final CTA */
.page-resources-388bet-latest-promotions__final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-388bet-latest-promotions__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-resources-388bet-latest-promotions__hero-content {
        text-align: center;
    }

    .page-resources-388bet-latest-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-resources-388bet-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-388bet-latest-promotions__hero-actions {
        justify-content: center;
    }

    .page-resources-388bet-latest-promotions__section-title {
        font-size: 2em;
    }

    .page-resources-388bet-latest-promotions__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-388bet-latest-promotions__steps-list li {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-388bet-latest-promotions__steps-list li::before {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .page-resources-388bet-latest-promotions__hero-section {
        padding: 40px 15px;
    }

    .page-resources-388bet-latest-promotions__hero-title {
        font-size: 2em;
    }

    .page-resources-388bet-latest-promotions__section-title {
        font-size: 1.8em;
    }

    .page-resources-388bet-latest-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-388bet-latest-promotions__final-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-388bet-latest-promotions__hero-title {
        font-size: 1.8em;
    }

    .page-resources-388bet-latest-promotions__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-388bet-latest-promotions__section-title {
        font-size: 1.5em;
    }

    .page-resources-388bet-latest-promotions__btn {
        width: 100%;
    }

    .page-resources-388bet-latest-promotions__hero-actions {
        flex-direction: column;
    }
}