/* style/promotions-shbet-first-deposit.css */
:root {
    --page-promotions-shbet-first-deposit-primary-color: #0056B3;
    --page-promotions-shbet-first-deposit-secondary-color: #FFC107;
    --page-promotions-shbet-first-deposit-text-dark: #333;
    --page-promotions-shbet-first-deposit-text-light: #f8f8f8;
    --page-promotions-shbet-first-deposit-background-light: #ffffff;
    --page-promotions-shbet-first-deposit-background-dark: #004085;
    --page-promotions-shbet-first-deposit-accent-color: #ffa94c; /* Complementary to primary */
    --page-promotions-shbet-first-deposit-card-bg: #e0f2f7; /* Light variant of primary */
    --page-promotions-shbet-first-deposit-border-color: #cccccc;
}

.page-promotions-shbet-first-deposit {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
    background-color: var(--page-promotions-shbet-first-deposit-background-light);
}

.page-promotions-shbet-first-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-shbet-first-deposit__hero-section {
    background: linear-gradient(135deg, var(--page-promotions-shbet-first-deposit-primary-color) 0%, #007bff 100%);
    color: var(--page-promotions-shbet-first-deposit-text-light);
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.page-promotions-shbet-first-deposit__hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-shbet-first-deposit__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-promotions-shbet-first-deposit-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-shbet-first-deposit__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.page-promotions-shbet-first-deposit__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
    margin-top: 30px;
}

.page-promotions-shbet-first-deposit__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-promotions-shbet-first-deposit__section {
    padding: 60px 0;
    background-color: var(--page-promotions-shbet-first-deposit-background-light);
}

.page-promotions-shbet-first-deposit__section:nth-of-type(even) {
    background-color: #f0f8ff; /* A very light blue tint */
}

.page-promotions-shbet-first-deposit__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-shbet-first-deposit__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-promotions-shbet-first-deposit-secondary-color);
    border-radius: 2px;
}

.page-promotions-shbet-first-deposit__text {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
}

.page-promotions-shbet-first-deposit__text--center {
    text-align: center;
}

.page-promotions-shbet-first-deposit__text-link {
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-shbet-first-deposit__text-link:hover {
    text-decoration: underline;
    color: var(--page-promotions-shbet-first-deposit-secondary-color);
}

/* CTA Buttons */
.page-promotions-shbet-first-deposit__cta-button {
    display: inline-block;
    background-color: var(--page-promotions-shbet-first-deposit-secondary-color);
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--page-promotions-shbet-first-deposit-secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-shbet-first-deposit__cta-button:hover {
    background-color: #e6b000; /* Darker yellow */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-shbet-first-deposit__cta-button--secondary {
    background-color: var(--page-promotions-shbet-first-deposit-primary-color);
    color: var(--page-promotions-shbet-first-deposit-text-light);
    border-color: var(--page-promotions-shbet-first-deposit-primary-color);
}

.page-promotions-shbet-first-deposit__cta-button--secondary:hover {
    background-color: #004085; /* Darker blue */
    border-color: #004085;
}

.page-promotions-shbet-first-deposit__cta-button--tertiary {
    background-color: transparent;
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    border-color: var(--page-promotions-shbet-first-deposit-primary-color);
}

.page-promotions-shbet-first-deposit__cta-button--tertiary:hover {
    background-color: var(--page-promotions-shbet-first-deposit-primary-color);
    color: var(--page-promotions-shbet-first-deposit-text-light);
}

.page-promotions-shbet-first-deposit__inline-cta {
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-shbet-first-deposit__inline-cta:hover {
    color: var(--page-promotions-shbet-first-deposit-secondary-color);
}

/* Grid Container for Cards/Features */
.page-promotions-shbet-first-deposit__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Card Styling */
.page-promotions-shbet-first-deposit__card {
    background-color: var(--page-promotions-shbet-first-deposit-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-shbet-first-deposit__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-shbet-first-deposit__card-title {
    font-size: 1.5em;
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    margin-bottom: 15px;
}

.page-promotions-shbet-first-deposit__card-text {
    font-size: 1em;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
    flex-grow: 1;
}

.page-promotions-shbet-first-deposit__card-icon {
    width: 60px;
    height: 60px;
    margin-top: 20px;
    object-fit: contain;
}

.page-promotions-shbet-first-deposit__note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
    font-size: 0.95em;
}

/* How-To-Claim Steps */
.page-promotions-shbet-first-deposit__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-shbet-first-deposit__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 25px;
    background-color: var(--page-promotions-shbet-first-deposit-background-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-shbet-first-deposit__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-promotions-shbet-first-deposit-secondary-color);
    background-color: var(--page-promotions-shbet-first-deposit-primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-shbet-first-deposit__step-title {
    font-size: 1.8em;
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    margin-top: 5px;
    margin-bottom: 10px;
}

.page-promotions-shbet-first-deposit__step-description {
    font-size: 1.05em;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
}

.page-promotions-shbet-first-deposit__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Wagering Requirements */
.page-promotions-shbet-first-deposit__info-box {
    background-color: #fff3cd; /* Light yellow for info */
    border-left: 5px solid var(--page-promotions-shbet-first-deposit-secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-promotions-shbet-first-deposit__info-box-title {
    color: #856404; /* Darker yellow for text */
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions-shbet-first-deposit__info-box-text {
    color: #856404;
    font-size: 1.05em;
}

.page-promotions-shbet-first-deposit__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-shbet-first-deposit__checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
}

.page-promotions-shbet-first-deposit__checklist-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Why Shbet Section */
.page-promotions-shbet-first-deposit__feature-card {
    background-color: var(--page-promotions-shbet-first-deposit-background-light);
    border: 1px solid var(--page-promotions-shbet-first-deposit-border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-shbet-first-deposit__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-shbet-first-deposit__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-shbet-first-deposit__feature-title {
    font-size: 1.6em;
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    margin-bottom: 10px;
}

.page-promotions-shbet-first-deposit__feature-description {
    font-size: 1em;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
}

/* Responsible Gambling */
.page-promotions-shbet-first-deposit__card--responsible {
    background-color: #e6f7ff; /* Lighter blue for responsible gambling */
    border: 1px solid #91d5ff;
}

.page-promotions-shbet-first-deposit__card--responsible .page-promotions-shbet-first-deposit__card-title {
    color: #0050b3;
}

/* FAQ Section */
.page-promotions-shbet-first-deposit__faq-item {
    background-color: var(--page-promotions-shbet-first-deposit-background-light);
    border: 1px solid var(--page-promotions-shbet-first-deposit-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-shbet-first-deposit__faq-question {
    padding: 20px 25px;
    font-size: 1.25em;
    color: var(--page-promotions-shbet-first-deposit-primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions-shbet-first-deposit__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-promotions-shbet-first-deposit-secondary-color);
    transition: transform 0.3s ease;
}

.page-promotions-shbet-first-deposit__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-shbet-first-deposit__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
}

.page-promotions-shbet-first-deposit__faq-answer.active {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-promotions-shbet-first-deposit__faq-answer p {
    margin-bottom: 0;
    color: var(--page-promotions-shbet-first-deposit-text-dark);
}

/* Bottom Call to Action */
.page-promotions-shbet-first-deposit__call-to-action-bottom {
    background: linear-gradient(135deg, var(--page-promotions-shbet-first-deposit-primary-color) 0%, #007bff 100%);
    color: var(--page-promotions-shbet-first-deposit-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-promotions-shbet-first-deposit__call-to-action-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-promotions-shbet-first-deposit-secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-shbet-first-deposit__call-to-action-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-shbet-first-deposit__hero-section {
        flex-direction: column;
        padding: 60px 0;
    }

    .page-promotions-shbet-first-deposit__hero-content {
        order: 2;
    }

    .page-promotions-shbet-first-deposit__hero-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }

    .page-promotions-shbet-first-deposit__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-shbet-first-deposit__section-title {
        font-size: 2em;
    }

    .page-promotions-shbet-first-deposit__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-promotions-shbet-first-deposit__step-number {
        margin-bottom: 15px;
    }

    .page-promotions-shbet-first-deposit__call-to-action-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-shbet-first-deposit__hero-title {
        font-size: 2em;
    }

    .page-promotions-shbet-first-deposit__hero-description,
    .page-promotions-shbet-first-deposit__text {
        font-size: 1em;
    }

    .page-promotions-shbet-first-deposit__section-title {
        font-size: 1.8em;
    }

    .page-promotions-shbet-first-deposit__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-shbet-first-deposit__grid-container {
        grid-template-columns: 1fr;
    }

    .page-promotions-shbet-first-deposit__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-shbet-first-deposit__faq-answer.active {
        padding: 15px 20px;
    }

    .page-promotions-shbet-first-deposit__call-to-action-title {
        font-size: 1.8em;
    }

    .page-promotions-shbet-first-deposit__call-to-action-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-shbet-first-deposit__hero-section,
    .page-promotions-shbet-first-deposit__section,
    .page-promotions-shbet-first-deposit__call-to-action-bottom {
        padding: 40px 0;
    }

    .page-promotions-shbet-first-deposit__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-shbet-first-deposit__section-title {
        font-size: 1.6em;
    }

    .page-promotions-shbet-first-deposit__step-number {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }

    .page-promotions-shbet-first-deposit__step-title {
        font-size: 1.4em;
    }

    .page-promotions-shbet-first-deposit__call-to-action-title {
        font-size: 1.6em;
    }
}