/* style/promotions-deposit-offers.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Burgundy Red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --bg-light: #f9f9f9;
    --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    --card-bg-light: #ffffff;
    --border-color: #e0e0e0;
}

.page-promotions-deposit-offers {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark); /* Inherited from shared.css, just for clarity */
    line-height: 1.6;
}

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

.page-promotions-deposit-offers__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions-deposit-offers__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-promotions-deposit-offers__card {
    background-color: var(--card-bg-dark);
    color: var(--text-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-deposit-offers__section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-offers__section-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Section */
.page-promotions-deposit-offers__hero-section {
    position: relative;
    padding: 120px 0 80px 0; /* Initial padding, --header-offset will be handled by shared.css on body or overridden if necessary */
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a0000 100%);
    padding-top: var(--header-offset, 120px);
}

.page-promotions-deposit-offers__main-title {
    font-size: 56px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-offers__hero-description {
    font-size: 22px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
    line-height: 1.7;
}

.page-promotions-deposit-offers__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-promotions-deposit-offers__cta-button {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    word-wrap: normal;
}

.page-promotions-deposit-offers__btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.page-promotions-deposit-offers__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-offers__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions-deposit-offers__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-offers__hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose Section */
.page-promotions-deposit-offers__why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.page-promotions-deposit-offers__feature-item {
    text-align: center;
    padding: 30px;
}

.page-promotions-deposit-offers__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-deposit-offers__feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-deposit-offers__feature-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
}

/* Types of Offers Section */
.page-promotions-deposit-offers__types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a0000 100%);
}

.page-promotions-deposit-offers__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-promotions-deposit-offers__offer-card {
    text-align: left;
    overflow: hidden;
    padding: 0;
    background-color: var(--card-bg-dark);
}

.page-promotions-deposit-offers__offer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.page-promotions-deposit-offers__offer-content {
    padding: 25px;
}

.page-promotions-deposit-offers__offer-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-deposit-offers__offer-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 20px;
}

.page-promotions-deposit-offers__offer-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-offers__offer-button:hover {
    background: #e6c200;
}

/* How to Claim Section */
.page-promotions-deposit-offers__how-to-claim-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.page-promotions-deposit-offers__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-promotions-deposit-offers__step-item {
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg-dark);
}

.page-promotions-deposit-offers__step-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.page-promotions-deposit-offers__step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-deposit-offers__step-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
}

.page-promotions-deposit-offers__step-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-deposit-offers__step-text a:hover {
    text-decoration: underline;
}

.page-promotions-deposit-offers__cta-center {
    text-align: center;
}

/* Terms & Conditions Section */
.page-promotions-deposit-offers__terms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a0000 100%);
}

.page-promotions-deposit-offers__terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions-deposit-offers__terms-item {
    background-color: var(--card-bg-dark);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px;
}

.page-promotions-deposit-offers__terms-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions-deposit-offers__terms-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.85;
}

/* Payment Methods Section */
.page-promotions-deposit-offers__payment-methods-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.page-promotions-deposit-offers__payment-item {
    text-align: center;
    padding: 30px;
}

.page-promotions-deposit-offers__payment-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-deposit-offers__payment-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-deposit-offers__payment-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
}

.page-promotions-deposit-offers__payment-note {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-top: 40px;
    opacity: 0.9;
}

/* FAQ Section */
.page-promotions-deposit-offers__faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #3a0000 100%);
}

.page-promotions-deposit-offers__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-deposit-offers__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--card-bg-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-deposit-offers__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions-deposit-offers__faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.page-promotions-deposit-offers__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);
    pointer-events: none;
}

.page-promotions-deposit-offers__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-promotions-deposit-offers__faq-item.active .page-promotions-deposit-offers__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-promotions-deposit-offers__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    color: var(--text-light);
}

.page-promotions-deposit-offers__faq-item.active .page-promotions-deposit-offers__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 10px 10px;
}

/* Final CTA Section */
.page-promotions-deposit-offers__cta-final-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-dark);
}

.page-promotions-deposit-offers__btn-large {
    padding: 20px 60px;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-deposit-offers__main-title {
        font-size: 48px;
    }
    .page-promotions-deposit-offers__hero-description {
        font-size: 20px;
    }
    .page-promotions-deposit-offers__section-title {
        font-size: 32px;
    }
    .page-promotions-deposit-offers__section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-offers__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 60px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions-deposit-offers__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions-deposit-offers__main-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .page-promotions-deposit-offers__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-promotions-deposit-offers__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        padding-left: 0;
        padding-right: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-deposit-offers__cta-button {
        padding: 15px 30px;
        font-size: 18px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-deposit-offers__section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .page-promotions-deposit-offers__section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .page-promotions-deposit-offers__feature-grid, 
    .page-promotions-deposit-offers__offer-grid, 
    .page-promotions-deposit-offers__steps-grid, 
    .page-promotions-deposit-offers__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-deposit-offers__feature-item, 
    .page-promotions-deposit-offers__offer-card, 
    .page-promotions-deposit-offers__step-item, 
    .page-promotions-deposit-offers__terms-item, 
    .page-promotions-deposit-offers__payment-item {
        padding: 20px;
    }

    .page-promotions-deposit-offers__offer-image {
        height: 200px;
    }

    .page-promotions-deposit-offers__offer-content {
        padding: 20px;
    }

    .page-promotions-deposit-offers__offer-title {
        font-size: 22px;
    }

    .page-promotions-deposit-offers__step-number {
        font-size: 40px;
    }

    .page-promotions-deposit-offers__step-title {
        font-size: 20px;
    }

    .page-promotions-deposit-offers__terms-heading {
        font-size: 20px;
    }

    .page-promotions-deposit-offers__payment-title {
        font-size: 20px;
    }

    .page-promotions-deposit-offers__faq-question {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .page-promotions-deposit-offers__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-promotions-deposit-offers__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-promotions-deposit-offers__faq-answer {
        padding: 0 20px;
    }
    
    .page-promotions-deposit-offers__faq-item.active .page-promotions-deposit-offers__faq-answer {
        padding: 15px 20px !important;
    }

    .page-promotions-deposit-offers__btn-large {
        padding: 18px 40px;
        font-size: 20px;
    }

    /* Global image responsiveness for mobile */
    .page-promotions-deposit-offers img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions-deposit-offers__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    .page-promotions-deposit-offers__feature-icon,
    .page-promotions-deposit-offers__offer-image,
    .page-promotions-deposit-offers__payment-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Ensure containers prevent overflow */
    .page-promotions-deposit-offers__hero-section,
    .page-promotions-deposit-offers__why-choose-section,
    .page-promotions-deposit-offers__types-section,
    .page-promotions-deposit-offers__how-to-claim-section,
    .page-promotions-deposit-offers__terms-section,
    .page-promotions-deposit-offers__payment-methods-section,
    .page-promotions-deposit-offers__faq-section,
    .page-promotions-deposit-offers__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-offers__main-title {
        font-size: 32px;
    }
    .page-promotions-deposit-offers__section-title {
        font-size: 24px;
    }
    .page-promotions-deposit-offers__cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .page-promotions-deposit-offers__btn-large {
        font-size: 18px;
        padding: 15px 30px;
    }
    .page-promotions-deposit-offers__faq-question h3 {
        font-size: 15px;
    }
}