/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus h1,
.page-promotions-first-deposit-bonus h2,
.page-promotions-first-deposit-bonus h3 {
    color: #FFD700; /* Accent color for headings */
    text-align: center;
    margin-bottom: 25px;
}

.page-promotions-first-deposit-bonus h1 {
    font-size: 2.8em;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus h2 {
    font-size: 2.2em;
    margin-top: 60px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block;
}

.page-promotions-first-deposit-bonus h3 {
    font-size: 1.8em;
    color: #e5dfd3;
}

.page-promotions-first-deposit-bonus p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-first-deposit-bonus .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.05em;
    text-align: center;
}

.page-promotions-first-deposit-bonus .btn-primary {
    background-color: #FFD700; /* Accent color */
    color: #1A202C; /* Dark text for accent background */
    border: 2px solid #FFD700;
}

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

.page-promotions-first-deposit-bonus .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-promotions-first-deposit-bonus .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus .btn-text-link {
    color: #FFD700;
    text-decoration: underline;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 10px 0;
    display: block;
    text-align: left;
}

.page-promotions-first-deposit-bonus .btn-text-link:hover {
    color: #e6c200;
    text-decoration: none;
}

.page-promotions-first-deposit-bonus .btn-lg {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-first-deposit-bonus .hero-section {
    background: linear-gradient(135deg, #1A202C, #3a475e);
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-first-deposit-bonus .hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus .hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-promotions-first-deposit-bonus .hero-content h1 {
    text-align: left;
    font-size: 3.5em;
    line-height: 1.2;
    margin-top: 0;
    color: #FFD700;
}

.page-promotions-first-deposit-bonus .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e5dfd3;
    text-align: left;
}

.page-promotions-first-deposit-bonus .cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus .hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-first-deposit-bonus .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions-first-deposit-bonus section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-promotions-first-deposit-bonus section:nth-of-type(even) {
    background-color: #2D3748; /* Slightly lighter dark for contrast */
}

.page-promotions-first-deposit-bonus .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* How to Claim Section */
.page-promotions-first-deposit-bonus .how-to-claim-section ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-promotions-first-deposit-bonus .how-to-claim-section ol li {
    margin-bottom: 40px;
    position: relative;
    padding-left: 80px;
}

.page-promotions-first-deposit-bonus .how-to-claim-section ol li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A202C;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus .how-to-claim-section ol li h3 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-promotions-first-deposit-bonus .how-to-claim-section ol li p {
    text-align: left;
}

/* Terms & Conditions Section */
.page-promotions-first-deposit-bonus .terms-conditions-section ul {
    list-style: none;
    padding: 0;
}

.page-promotions-first-deposit-bonus .terms-conditions-section ul li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus .terms-conditions-section ul li strong {
    color: #FFD700;
}

/* Why nohu78 Section */
.page-promotions-first-deposit-bonus .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus .feature-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus .feature-item:hover {
    transform: translateY(-5px);
    background-color: #3a475e;
}

.page-promotions-first-deposit-bonus .feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-first-deposit-bonus .feature-item p {
    font-size: 1em;
    text-align: center;
}

/* FAQ Section */
.page-promotions-first-deposit-bonus .faq-item {
    background-color: #2D3748;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus .faq-item h3 {
    cursor: pointer;
    padding: 20px;
    margin: 0;
    background-color: #3a475e;
    color: #FFD700;
    text-align: left;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus .faq-item h3.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-first-deposit-bonus .faq-item p {
    padding: 0 20px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    text-align: left;
}

.page-promotions-first-deposit-bonus .faq-item h3.active + p {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px;
}

/* Final CTA Section */
.page-promotions-first-deposit-bonus .cta-final-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #3a475e, #1A202C);
}

.page-promotions-first-deposit-bonus .cta-final-section h2 {
    color: #FFD700;
    font-size: 2.5em;
}

.page-promotions-first-deposit-bonus .cta-final-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-first-deposit-bonus .hero-content,
    .page-promotions-first-deposit-bonus .hero-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-promotions-first-deposit-bonus .hero-content h1 {
        font-size: 2.8em;
        text-align: center;
    }

    .page-promotions-first-deposit-bonus .hero-content p {
        text-align: center;
    }

    .page-promotions-first-deposit-bonus .cta-group {
        justify-content: center;
    }

    .page-promotions-first-deposit-bonus .hero-image {
        margin-top: 30px;
    }

    .page-promotions-first-deposit-bonus h1 {
        font-size: 2.5em;
    }

    .page-promotions-first-deposit-bonus h2 {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit-bonus h3 {
        font-size: 1.5em;
    }

    .page-promotions-first-deposit-bonus .how-to-claim-section ol li {
        padding-left: 60px;
    }

    .page-promotions-first-deposit-bonus .how-to-claim-section ol li::before {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus .hero-content h1 {
        font-size: 2.2em;
    }

    .page-promotions-first-deposit-bonus .hero-content p {
        font-size: 1em;
    }

    .page-promotions-first-deposit-bonus .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions-first-deposit-bonus .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-promotions-first-deposit-bonus h1 {
        font-size: 2em;
    }

    .page-promotions-first-deposit-bonus h2 {
        font-size: 1.6em;
    }

    .page-promotions-first-deposit-bonus .features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-first-deposit-bonus .cta-final-section h2 {
        font-size: 2em;
    }

    .page-promotions-first-deposit-bonus .cta-final-section p {
        font-size: 1em;
    }

    .page-promotions-first-deposit-bonus .faq-item h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus .hero-content h1 {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit-bonus .hero-content p {
        font-size: 0.95em;
    }

    .page-promotions-first-deposit-bonus .cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-promotions-first-deposit-bonus .btn-secondary {
        margin-left: 0;
    }

    .page-promotions-first-deposit-bonus h1 {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit-bonus h2 {
        font-size: 1.4em;
    }

    .page-promotions-first-deposit-bonus .how-to-claim-section ol li {
        padding-left: 50px;
    }

    .page-promotions-first-deposit-bonus .how-to-claim-section ol li::before {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-promotions-first-deposit-bonus .cta-final-section h2 {
        font-size: 1.8em;
    }
}