/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-promotions-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #1A2E4E 0%, #3a5c8e 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.page-promotions-deposit-bonus__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(100px);
}

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

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-deposit-bonus__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-promotions-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* General Section Styling */
.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #1A2E4E; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-promotions-deposit-bonus__sub-title {
    font-size: 1.8em;
    color: #1A2E4E;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

/* Buttons */
.page-promotions-deposit-bonus__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A2E4E; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__btn:hover {
    background-color: #e5c100; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-promotions-deposit-bonus__btn--primary {
    background-color: #FFD700;
    color: #1A2E4E;
}

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

.page-promotions-deposit-bonus__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

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

.page-promotions-deposit-bonus__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-deposit-bonus__card-title {
    font-size: 1.8em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__card-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-deposit-bonus__card-note {
    font-style: italic;
    color: #777;
    font-size: 0.95em;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Lists */
.page-promotions-deposit-bonus__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.page-promotions-deposit-bonus__list li {
    font-size: 1em;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-deposit-bonus__list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.1em;
}

.page-promotions-deposit-bonus__list--styled li::before {
    content: '•';
    color: #1A2E4E;
    font-weight: bold;
    font-size: 1.5em;
    top: -3px;
}

/* Image Full Width */
.page-promotions-deposit-bonus__image-full-width {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__image-small {
    display: block;
    margin: 30px auto;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* How to Claim Section */
.page-promotions-deposit-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__step-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__step-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__step-icon {
    width: 60px;
    height: 60px;
    background-color: #1A2E4E; /* Dark blue */
    color: #FFD700; /* Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__step-title {
    font-size: 1.5em;
    color: #1A2E4E;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__step-text {
    font-size: 1em;
    color: #666;
}

.page-promotions-deposit-bonus__step-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

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

/* FAQ Section */
.page-promotions-deposit-bonus__faq-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus__faq-question {
    font-size: 1.3em;
    color: #1A2E4E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    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 {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-promotions-deposit-bonus__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Why Choose Section */
.page-promotions-deposit-bonus__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__why-choose-item {
    text-align: center;
    padding: 30px;
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__why-choose-item:hover {
    transform: translateY(-5px);
}

.page-promotions-deposit-bonus__why-choose-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-deposit-bonus__why-choose-title {
    font-size: 1.6em;
    color: #1A2E4E;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__why-choose-text {
    font-size: 1em;
    color: #666;
}

/* Call to Action Section */
.page-promotions-deposit-bonus__cta {
    background-color: #1A2E4E; /* Dark blue */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-promotions-deposit-bonus__cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__cta-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__hero-image-wrapper {
        margin-top: 30px;
    }
    .page-promotions-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-deposit-bonus__content-grid, .page-promotions-deposit-bonus__steps-grid, .page-promotions-deposit-bonus__why-choose-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__cta-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-deposit-bonus__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__card, .page-promotions-deposit-bonus__step-card, .page-promotions-deposit-bonus__why-choose-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__cta-subtitle {
        font-size: 1em;
    }
}