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

.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey text for readability on dark background */
    background-color: #0A1931; /* Deep blue primary background */
    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%, #1a3a66 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-deposit-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.3em;
    color: #cccccc; /* Lighter grey for subtitle */
    margin-bottom: 40px;
}

.page-promotions-deposit-bonus__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold button */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

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

.page-promotions-deposit-bonus__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
    z-index: 1;
}

.page-promotions-deposit-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(5px);
    transform: scale(1.1);
}

.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
    background-color: #1a2a46; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-deposit-bonus__section p {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonus__intro .page-promotions-deposit-bonus__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-deposit-bonus__feature-item {
    background-color: #1a2a46; /* Dark blue background for feature cards */
    border: 1px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__feature-item:hover {
    transform: translateY(-10px);
}

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

.page-promotions-deposit-bonus__feature-item h3 {
    font-size: 1.5em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__feature-item p {
    font-size: 0.95em;
    color: #b0b0b0;
}

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

.page-promotions-deposit-bonus__bonus-card {
    background-color: #1a2a46;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-deposit-bonus__bonus-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

.page-promotions-deposit-bonus__bonus-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    padding: 25px 25px 15px;
    margin: 0;
}

.page-promotions-deposit-bonus__bonus-card p {
    color: #cccccc;
    font-size: 1em;
    padding: 0 25px;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__list {
    list-style: none;
    padding: 0 25px;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__list li {
    color: #f0f0f0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1em;
}

.page-promotions-deposit-bonus__list-icon {
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions-deposit-bonus__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-deposit-bonus__btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-promotions-deposit-bonus__how-to-claim {
    background-color: #0A1931;
}

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

.page-promotions-deposit-bonus__steps li {
    background-color: #1a2a46;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__steps li:hover {
    transform: translateY(-8px);
}

.page-promotions-deposit-bonus__step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-promotions-deposit-bonus__step-icon {
    width: 50px;
    height: 50px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(287deg) brightness(0%) contrast(100%); /* Make icon dark */
}

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

.page-promotions-deposit-bonus__steps li p {
    font-size: 1em;
    color: #b0b0b0;
}

.page-promotions-deposit-bonus__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-deposit-bonus__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-promotions-deposit-bonus__terms {
    background-color: #1a2a46;
}

.page-promotions-deposit-bonus__list--styled {
    list-style: none;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
    padding: 0;
}

.page-promotions-deposit-bonus__list--styled li {
    background-color: #0A1931;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #f0f0f0;
    font-size: 1.05em;
}

.page-promotions-deposit-bonus__list--styled li strong {
    color: #FFD700;
}

.page-promotions-deposit-bonus__list--styled .page-promotions-deposit-bonus__list-icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #FFD700;
}

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

.page-promotions-deposit-bonus__accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

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

.page-promotions-deposit-bonus__accordion-header {
    background-color: #FFD700;
    color: #0A1931;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-header:hover {
    background-color: #e6c200;
}

.page-promotions-deposit-bonus__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #0A1931;
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__accordion-content {
    padding: 0 25px;
    background-color: #2a3e5a; /* Slightly lighter blue for content */
    color: #cccccc;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-deposit-bonus__accordion-content.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 20px 25px;
}

.page-promotions-deposit-bonus__accordion-content p {
    margin-bottom: 15px;
    text-align: left;
}

.page-promotions-deposit-bonus__cta-bottom {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
    text-align: center;
}

.page-promotions-deposit-bonus__cta-title {
    font-size: 3em;
    color: #0A1931; /* Dark blue on gold background */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-deposit-bonus__cta-description {
    font-size: 1.2em;
    color: #333333; /* Dark grey for description on gold */
    margin-bottom: 40px;
}

.highlight {
    color: #FFD700;
}

.page-promotions-deposit-bonus__cta-bottom .highlight {
    color: #0A1931;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 3em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus__bonus-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-deposit-bonus__steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__hero-btn {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-promotions-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__features {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-deposit-bonus__feature-item {
        max-width: 90%;
    }
    .page-promotions-deposit-bonus__bonus-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus__cta-description {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__btn--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-promotions-deposit-bonus__accordion-header {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__accordion-content {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__hero-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__feature-item,
    .page-promotions-deposit-bonus__bonus-card,
    .page-promotions-deposit-bonus__steps li {
        padding: 20px;
    }
    .page-promotions-deposit-bonus__bonus-card h3 {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__steps li h3 {
        font-size: 1.4em;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__cta-description {
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__accordion-header {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__accordion-content {
        padding: 15px 20px;
    }
}