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

/* Base styles for the page content */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Main brand color */
    line-height: 1.6;
}

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

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 49, 0) 70%);
    animation: pulse-glow 15s infinite alternate;
    z-index: 0;
}

@keyframes pulse-glow {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-promotions-deposit-bonus__hero .page-promotions-deposit-bonus__container {
    position: relative;
    z-index: 1;
}

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

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

.page-promotions-deposit-bonus__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-deposit-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-deposit-bonus__btn--primary {
    background-color: #FFD700; /* Gold accent */
    color: #0A1931; /* Dark text on gold */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-deposit-bonus__btn--primary:hover {
    background-color: #e0b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-deposit-bonus__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-deposit-bonus__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-deposit-bonus__section:last-of-type {
    border-bottom: none;
}

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

.page-promotions-deposit-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-deposit-bonus__introduction p,
.page-promotions-deposit-bonus__how-to-claim p,
.page-promotions-deposit-bonus__terms p,
.page-promotions-deposit-bonus__cta p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-deposit-bonus__introduction strong,
.page-promotions-deposit-bonus__how-to-claim strong,
.page-promotions-deposit-bonus__terms strong,
.page-promotions-deposit-bonus__benefits strong {
    color: #FFD700;
}

.page-promotions-deposit-bonus__image-full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-deposit-bonus__bonus-card {
    background-color: #1a2a47; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-deposit-bonus__bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-deposit-bonus__bonus-card p {
    color: #c0c0c0;
    font-size: 1em;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__bonus-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #d0d0d0;
}

.page-promotions-deposit-bonus__bonus-card ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-deposit-bonus__bonus-card ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-promotions-deposit-bonus__card-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
}

.page-promotions-deposit-bonus__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions-deposit-bonus__steps li {
    background-color: #1a2a47;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background-color: #FFD700;
    color: #0A1931;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-promotions-deposit-bonus__steps li strong {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__steps li p {
    color: #c0c0c0;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__steps li a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-deposit-bonus__steps li a:hover {
    color: #e0b800;
}

.page-promotions-deposit-bonus__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__terms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__term-item {
    background-color: #1a2a47;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__term-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__term-item p {
    color: #c0c0c0;
    font-size: 1em;
    text-align: justify;
}

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

.page-promotions-deposit-bonus__benefits-list li {
    background-color: #1a2a47;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__benefits-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonus__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions-deposit-bonus__benefits-list h4 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__benefits-list p {
    color: #c0c0c0;
    font-size: 1em;
    text-align: center;
}

.page-promotions-deposit-bonus__faq {
    background-color: #0A1931;
}

.page-promotions-deposit-bonus__accordion-item {
    background-color: #1a2a47;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__accordion-title {
    color: #FFD700;
    font-size: 1.3em;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-title:hover {
    background-color: #2c3e5e;
}

.page-promotions-deposit-bonus__accordion-title::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #c0c0c0;
}

.page-promotions-deposit-bonus__accordion-content p {
    padding-bottom: 20px;
    margin-bottom: 0;
    text-align: justify;
}

.page-promotions-deposit-bonus__accordion-content.active {
    max-height: 500px; /* Adjust based on content */
    padding-top: 10px;
    padding-bottom: 20px;
}

.page-promotions-deposit-bonus__cta {
    background: linear-gradient(90deg, #0A1931, #2c3e5e); /* Dark gradient for CTA */
    text-align: center;
    padding: 70px 0;
}

.page-promotions-deposit-bonus__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-deposit-bonus__cta-note {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-top: 25px;
}

.highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@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;
    }
    .page-promotions-deposit-bonus__bonus-card,
    .page-promotions-deposit-bonus__term-item,
    .page-promotions-deposit-bonus__benefits-list li {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        padding: 60px 0;
    }
    .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-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-deposit-bonus__btn--large {
        width: 100%;
        max-width: 300px;
    }
    .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__introduction p,
    .page-promotions-deposit-bonus__how-to-claim p,
    .page-promotions-deposit-bonus__terms p,
    .page-promotions-deposit-bonus__cta p {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__bonus-grid,
    .page-promotions-deposit-bonus__terms-list,
    .page-promotions-deposit-bonus__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__steps li {
        padding: 20px;
    }
    .page-promotions-deposit-bonus__steps li strong {
        font-size: 1.3em;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__bonus-card,
    .page-promotions-deposit-bonus__term-item,
    .page-promotions-deposit-bonus__benefits-list li {
        padding: 20px;
    }
    .page-promotions-deposit-bonus__card-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__accordion-title {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-deposit-bonus__accordion-content {
        padding: 0 20px;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2em;
    }
}