/* style/promotions-deposit-bonus.css */

/* Base styles for the page content wrapper */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Deep midnight blue */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

/* Section styling */
.page-promotions-deposit-bonus__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-deposit-bonus__section:nth-child(even) {
    background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
}

/* Headings */
.page-promotions-deposit-bonus__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-deposit-bonus__feature-title,
.page-promotions-deposit-bonus__promo-title,
.page-promotions-deposit-bonus__step-title,
.page-promotions-deposit-bonus__term-title,
.page-promotions-deposit-bonus__tip-title,
.page-promotions-deposit-bonus__faq-question {
    font-size: 1.8em;
    color: #f5e6d0; /* Light text for subtitles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #1a2a47;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question:hover {
    background-color: #2c3e5e;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-deposit-bonus__faq-answer {
    text-align: left;
    padding: 10px 20px 20px;
    background-color: #1a2a47;
    border-radius: 0 0 8px 8px;
    margin-top: -10px; /* Overlap with question for smooth transition */
    display: none; /* Hidden by default */
    overflow: hidden;
}

.page-promotions-deposit-bonus__faq-answer.active {
    display: block;
}


/* Paragraphs */
.page-promotions-deposit-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Buttons */
.page-promotions-deposit-bonus__hero-cta,
.page-promotions-deposit-bonus__promo-cta,
.page-promotions-deposit-bonus__step-cta,
.page-promotions-deposit-bonus__final-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-promotions-deposit-bonus__hero-cta:hover,
.page-promotions-deposit-bonus__promo-cta:hover,
.page-promotions-deposit-bonus__step-cta:hover,
.page-promotions-deposit-bonus__final-cta:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* Text links within content */
.page-promotions-deposit-bonus__text-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-deposit-bonus__text-link:hover {
    color: #e6c200;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Gradient background */
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__hero-content {
    z-index: 1;
    position: relative;
    max-width: 900px;
}

.page-promotions-deposit-bonus__hero-image {
    position: absolute;
    bottom: -50px;
    right: -100px;
    opacity: 0.3;
    z-index: 0;
}

.page-promotions-deposit-bonus__hero-img {
    width: 600px; /* Adjust size as needed */
    height: auto;
    object-fit: contain;
    transform: rotate(10deg);
}


/* Features Grid */
.page-promotions-deposit-bonus__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-deposit-bonus__feature-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-deposit-bonus__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

/* Promo Card Grid */
.page-promotions-deposit-bonus__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-deposit-bonus__promo-card {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-deposit-bonus__promo-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__promo-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #cccccc;
}

/* Steps (Ordered List) */
.page-promotions-deposit-bonus__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-deposit-bonus__step-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 90px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: #FFD700;
    color: #0A192F;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
}

.page-promotions-deposit-bonus__process-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Terms List */
.page-promotions-deposit-bonus__term-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-deposit-bonus__term-list li {
    background-color: #1a2a47;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-bonus__term-list li p {
    color: #cccccc;
}

.page-promotions-deposit-bonus__terms-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Tips List */
.page-promotions-deposit-bonus__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.page-promotions-deposit-bonus__tip-list li {
    background-color: #1a2a47;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-promotions-deposit-bonus__tip-list li p {
    color: #cccccc;
}

/* FAQ Section */
.page-promotions-deposit-bonus__faq {
    text-align: left;
}

.page-promotions-deposit-bonus__faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-deposit-bonus__faq-answer {
    color: #cccccc;
    font-size: 0.95em;
}

/* Final CTA Section */
.page-promotions-deposit-bonus__cta-final {
    background: linear-gradient(45deg, #0A192F, #FFD700); /* Another gradient for emphasis */
    padding: 80px 20px;
    border-radius: 15px;
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__cta-final .page-promotions-deposit-bonus__section-title,
.page-promotions-deposit-bonus__cta-final p {
    color: #0A192F; /* Dark text on brighter background */
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.page-promotions-deposit-bonus__cta-final .page-promotions-deposit-bonus__section-title::after {
    background-color: #0A192F;
}

.page-promotions-deposit-bonus__cta-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 80%;
    max-width: 700px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__hero-image {
        display: none; /* Hide large image on smaller screens */
    }
    .page-promotions-deposit-bonus__features,
    .page-promotions-deposit-bonus__promo-grid,
    .page-promotions-deposit-bonus__tip-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__step-item {
        padding-left: 30px;
        padding-top: 60px;
    }
    .page-promotions-deposit-bonus__step-item::before {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__hero-cta,
    .page-promotions-deposit-bonus__promo-cta,
    .page-promotions-deposit-bonus__step-cta,
    .page-promotions-deposit-bonus__final-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__feature-title,
    .page-promotions-deposit-bonus__promo-title,
    .page-promotions-deposit-bonus__step-title,
    .page-promotions-deposit-bonus__term-title,
    .page-promotions-deposit-bonus__tip-title,
    .page-promotions-deposit-bonus__faq-question {
        font-size: 1.5em;
    }
}