/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-first-deposit-bonus__hero-section {
    background: linear-gradient(135deg, #003366 0%, #0a4f94 100%); /* Deeper blue gradient */
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.page-promotions-first-deposit-bonus__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-first-deposit-bonus__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus__cta-button--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-promotions-first-deposit-bonus__cta-button--secondary:hover {
    background-color: #0a4f94;
    border-color: #e6b800;
}

.page-promotions-first-deposit-bonus__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promotions-first-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 60px;
}

.page-promotions-first-deposit-bonus__intro-section, 
.page-promotions-first-deposit-bonus__how-to-claim, 
.page-promotions-first-deposit-bonus__bonus-details, 
.page-promotions-first-deposit-bonus__benefits-section, 
.page-promotions-first-deposit-bonus__eligible-games, 
.page-promotions-first-deposit-bonus__terms-conditions, 
.page-promotions-first-deposit-bonus__faq-section, 
.page-promotions-first-deposit-bonus__why-okking, 
.page-promotions-first-deposit-bonus__final-cta {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__intro-section:nth-of-type(odd),
.page-promotions-first-deposit-bonus__how-to-claim:nth-of-type(odd),
.page-promotions-first-deposit-bonus__eligible-games:nth-of-type(odd),
.page-promotions-first-deposit-bonus__faq-section:nth-of-type(odd),
.page-promotions-first-deposit-bonus__final-cta:nth-of-type(odd) {
    background-color: #e6eff7; /* Light variant of main color */
}

.page-promotions-first-deposit-bonus__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444444;
}

.page-promotions-first-deposit-bonus__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__image-center {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__steps-list li {
    background-color: #f0f8ff;
    border-left: 5px solid #FFCC00;
    margin-bottom: 15px;
    padding: 20px 20px 20px 60px;
    position: relative;
    font-size: 1.1em;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__steps-list li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #003366;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

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

.page-promotions-first-deposit-bonus__detail-item {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #FFCC00;
}

.page-promotions-first-deposit-bonus__detail-item h3 {
    color: #003366;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__detail-item p {
    font-size: 1.05em;
    color: #555;
}

.page-promotions-first-deposit-bonus__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__benefits-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.page-promotions-first-deposit-bonus__benefits-list li:before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-size: 1.2em;
}

.page-promotions-first-deposit-bonus__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__game-item {
    background-color: #fcfcfc;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-bottom: 4px solid #003366;
    transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus__game-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 3px solid #FFCC00;
}

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

.page-promotions-first-deposit-bonus__game-item p {
    font-size: 1em;
    color: #666;
}

.page-promotions-first-deposit-bonus__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__terms-list li {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #444;
}

.page-promotions-first-deposit-bonus__faq-items {
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__faq-question {
    padding: 18px 25px;
    background-color: #003366;
    color: #ffffff;
    font-size: 1.2em;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-question:hover {
    background-color: #0a4f94;
}

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

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

.page-promotions-first-deposit-bonus__faq-answer {
    padding: 15px 25px;
    font-size: 1.05em;
    color: #555;
    display: none;
    border-top: 1px solid #e0e0e0;
}

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

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

.page-promotions-first-deposit-bonus__features-list li {
    background-color: #f0f8ff;
    padding: 20px;
    border-left: 4px solid #FFCC00;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__features-list li strong {
    color: #003366;
}

.page-promotions-first-deposit-bonus__final-cta {
    text-align: center;
    padding: 80px 0;
    background-color: #003366;
    color: #ffffff;
    border-radius: 0;
    box-shadow: none;
}

.page-promotions-first-deposit-bonus__final-cta .page-promotions-first-deposit-bonus__section-title {
    color: #FFCC00;
    font-size: 3em;
}

.page-promotions-first-deposit-bonus__final-cta .page-promotions-first-deposit-bonus__text-content {
    color: #e0e0e0;
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit-bonus__details-grid, .page-promotions-first-deposit-bonus__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero-section {
        padding: 60px 0;
    }
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__text-content {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__steps-list li {
        padding: 15px 15px 15px 50px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__steps-list li:before {
        width: 25px;
        height: 25px;
        font-size: 1em;
        left: 10px;
    }
    .page-promotions-first-deposit-bonus__detail-item h3, .page-promotions-first-deposit-bonus__game-item h3 {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-first-deposit-bonus__faq-answer {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-promotions-first-deposit-bonus__final-cta .page-promotions-first-deposit-bonus__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero-section {
        padding: 40px 0;
    }
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus__details-grid, .page-promotions-first-deposit-bonus__game-categories, .page-promotions-first-deposit-bonus__features-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit-bonus__final-cta .page-promotions-first-deposit-bonus__section-title {
        font-size: 2em;
    }
}