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

.page-promotions-deposit-bonuses {
    background-color: var(--background); /* Body background from shared.css, this is for page specific sections */
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions-deposit-bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-deposit-bonuses__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* body handles padding-top from header, only small top padding here */
    background-color: var(--deep-green);
    overflow: hidden;
}

.page-promotions-deposit-bonuses__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonuses__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions-deposit-bonuses__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.page-promotions-deposit-bonuses__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-deposit-bonuses__description {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 30px;
}

.page-promotions-deposit-bonuses__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonuses__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions-deposit-bonuses__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions-deposit-bonuses__introduction-section,
.page-promotions-deposit-bonuses__types-section,
.page-promotions-deposit-bonuses__how-to-claim-section,
.page-promotions-deposit-bonuses__terms-section,
.page-promotions-deposit-bonuses__tips-section,
.page-promotions-deposit-bonuses__faq-section,
.page-promotions-deposit-bonuses__call-to-action-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions-deposit-bonuses__introduction-section p,
.page-promotions-deposit-bonuses__how-to-claim-section p,
.page-promotions-deposit-bonuses__terms-section p,
.page-promotions-deposit-bonuses__tips-section p,
.page-promotions-deposit-bonuses__call-to-action-section p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-promotions-deposit-bonuses__introduction-section a,
.page-promotions-deposit-bonuses__how-to-claim-section a,
.page-promotions-deposit-bonuses__terms-section a,
.page-promotions-deposit-bonuses__tips-section a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-promotions-deposit-bonuses__introduction-section a:hover,
.page-promotions-deposit-bonuses__how-to-claim-section a:hover,
.page-promotions-deposit-bonuses__terms-section a:hover,
.page-promotions-deposit-bonuses__tips-section a:hover {
    color: var(--gold-color);
}

.page-promotions-deposit-bonuses__btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.page-promotions-deposit-bonuses__btn-secondary:hover {
    background: var(--main-color);
    color: var(--text-main);
}

.page-promotions-deposit-bonuses__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-deposit-bonuses__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonuses__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-deposit-bonuses__card-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-promotions-deposit-bonuses__card p {
    color: var(--text-secondary);
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonuses__card-button {
    display: inline-block;
    background: var(--main-color);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-promotions-deposit-bonuses__card-button:hover {
    background-color: var(--secondary-color);
}

.page-promotions-deposit-bonuses__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__step-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__step-title {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions-deposit-bonuses__step-list li p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.page-promotions-deposit-bonuses__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-promotions-deposit-bonuses__feature-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__feature-icon {
    width: 200px; /* Min size 200x200 */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonuses__feature-title {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions-deposit-bonuses__feature-item p {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 0;
}

.page-promotions-deposit-bonuses__btn-primary {
    display: inline-block;
    background: var(--main-color);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-promotions-deposit-bonuses__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__tip-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__tip-title {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions-deposit-bonuses__tip-list li p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.page-promotions-deposit-bonuses__faq-list {
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-main);
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-promotions-deposit-bonuses__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-deposit-bonuses__faq-item summary:hover {
    color: var(--gold-color);
}

.page-promotions-deposit-bonuses__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--glow-color);
}

.page-promotions-deposit-bonuses__faq-item[open] .page-promotions-deposit-bonuses__faq-toggle {
    content: '−';
}

.page-promotions-deposit-bonuses__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-secondary);
    font-size: 1em;
}

.page-promotions-deposit-bonuses__call-to-action-section {
    text-align: center;
    padding-bottom: 80px;
}

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

/* All images base responsive styles */
.page-promotions-deposit-bonuses img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* All button base responsive styles */
.page-promotions-deposit-bonuses__cta-button,
.page-promotions-deposit-bonuses__btn-primary,
.page-promotions-deposit-bonuses__btn-secondary,
.page-promotions-deposit-bonuses a[class*="button"],
.page-promotions-deposit-bonuses a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Mobile specific overrides */
@media (max-width: 768px) {
    .page-promotions-deposit-bonuses {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-promotions-deposit-bonuses__container {
        padding: 0 15px;
    }

    .page-promotions-deposit-bonuses__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-promotions-deposit-bonuses__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-promotions-deposit-bonuses__description {
        font-size: 1em;
    }

    .page-promotions-deposit-bonuses__cta-button,
    .page-promotions-deposit-bonuses__btn-primary,
    .page-promotions-deposit-bonuses__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-deposit-bonuses__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-deposit-bonuses__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-promotions-deposit-bonuses__introduction-section,
    .page-promotions-deposit-bonuses__types-section,
    .page-promotions-deposit-bonuses__how-to-claim-section,
    .page-promotions-deposit-bonuses__terms-section,
    .page-promotions-deposit-bonuses__tips-section,
    .page-promotions-deposit-bonuses__faq-section,
    .page-promotions-deposit-bonuses__call-to-action-section {
        padding: 40px 0;
    }

    .page-promotions-deposit-bonuses__card-grid,
    .page-promotions-deposit-bonuses__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-deposit-bonuses__card,
    .page-promotions-deposit-bonuses__step-list li,
    .page-promotions-deposit-bonuses__feature-item,
    .page-promotions-deposit-bonuses__tip-list li,
    .page-promotions-deposit-bonuses__faq-item {
        padding: 20px;
    }

    .page-promotions-deposit-bonuses__card-image {
        height: 180px;
    }

    /* Force responsive for all images */
    .page-promotions-deposit-bonuses img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Force responsive for all sections/containers that hold images/content */
    .page-promotions-deposit-bonuses__section,
    .page-promotions-deposit-bonuses__card,
    .page-promotions-deposit-bonuses__container,
    .page-promotions-deposit-bonuses__hero-section,
    .page-promotions-deposit-bonuses__hero-image-wrapper,
    .page-promotions-deposit-bonuses__introduction-section,
    .page-promotions-deposit-bonuses__types-section,
    .page-promotions-deposit-bonuses__how-to-claim-section,
    .page-promotions-deposit-bonuses__terms-section,
    .page-promotions-deposit-bonuses__tips-section,
    .page-promotions-deposit-bonuses__faq-section,
    .page-promotions-deposit-bonuses__call-to-action-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Buttons specific mobile styles */
    .page-promotions-deposit-bonuses__cta-button,
    .page-promotions-deposit-bonuses__btn-primary,
    .page-promotions-deposit-bonuses__btn-secondary,
    .page-promotions-deposit-bonuses a[class*="button"],
    .page-promotions-deposit-bonuses a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Button groups or multiple buttons */
    .page-promotions-deposit-bonuses__button-group,
    .page-promotions-deposit-bonuses__cta-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}