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

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

/* Hero Section */
.page-promotions-deposit-bonus .hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue for hero */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-promotions-deposit-bonus .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* General Section Styling */
.page-promotions-deposit-bonus section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus section:nth-of-type(even) {
    background-color: #f0f4f8; /* Light blue-grey for alternating sections */
}

.page-promotions-deposit-bonus .section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-promotions-deposit-bonus p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 1.5em;
    color: #555;
}

.page-promotions-deposit-bonus strong {
    color: #003366;
}

/* Buttons */
.page-promotions-deposit-bonus .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-promotions-deposit-bonus .btn-primary {
    background-color: #FFD700;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-deposit-bonus .btn-secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-promotions-deposit-bonus .btn-secondary:hover {
    background-color: #002244;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 51, 102, 0.5);
}

.page-promotions-deposit-bonus .btn-outline {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-promotions-deposit-bonus .btn-outline:hover {
    background-color: #003366;
    color: #fff;
}

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

/* Content Images */
.page-promotions-deposit-bonus .content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus .content-image-small {
    max-width: 600px;
}

.page-promotions-deposit-bonus .content-image-medium {
    max-width: 700px;
}

.page-promotions-deposit-bonus .content-image-cta {
    max-width: 900px;
    margin-top: 50px;
}

/* Bonus Types Section */
.page-promotions-deposit-bonus .bonus-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-left: 5px solid #003366;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.page-promotions-deposit-bonus .bonus-item ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-top: 15px;
    color: #666;
}

.page-promotions-deposit-bonus .bonus-item ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

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

.page-promotions-deposit-bonus ol li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.6;
    color: #444;
}

.page-promotions-deposit-bonus ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus ol li a {
    color: #003366;
    text-decoration: underline;
}

.page-promotions-deposit-bonus ol li a:hover {
    color: #FFD700;
}

/* Terms & Conditions / FAQ */
.page-promotions-deposit-bonus .faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-deposit-bonus .faq-question {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus .faq-answer {
    color: #555;
    font-size: 1.05em;
}

.page-promotions-deposit-bonus .important-note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
    color: #664d03;
    font-weight: bold;
}

/* Tips Section */
.page-promotions-deposit-bonus .tips-section ul {
    list-style: none;
    padding: 0;
}

.page-promotions-deposit-bonus .tips-section ul li {
    background-color: #fdfdfd;
    border-left: 4px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #444;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

/* Call to Action Section */
.page-promotions-deposit-bonus .cta-section {
    background: linear-gradient(45deg, #003366 0%, #004d99 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
}

.page-promotions-deposit-bonus .cta-section .section-title {
    color: #FFD700;
}

.page-promotions-deposit-bonus .cta-section .section-title::after {
    background-color: #fff;
}

.page-promotions-deposit-bonus .cta-section p {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus .hero-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus .hero-subtitle,
    .page-promotions-deposit-bonus p,
    .page-promotions-deposit-bonus .bonus-item ul li,
    .page-promotions-deposit-bonus ol li,
    .page-promotions-deposit-bonus .faq-answer,
    .page-promotions-deposit-bonus .tips-section ul li {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus .section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus .bonus-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus .faq-question {
        font-size: 1.3em;
    }
    .page-promotions-deposit-bonus .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus .hero-section {
        padding: 80px 0;
    }
    .page-promotions-deposit-bonus .hero-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus .hero-subtitle {
        font-size: 0.95em;
    }
    .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 .bonus-item {
        padding: 20px;
    }
    .page-promotions-deposit-bonus .bonus-title {
        font-size: 1.3em;
    }
    .page-promotions-deposit-bonus ol li {
        padding-left: 50px;
    }
    .page-promotions-deposit-bonus ol li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus .faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus .hero-section {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus .hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus .section-title {
        font-size: 1.6em;
    }
    .page-promotions-deposit-bonus .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-promotions-deposit-bonus .btn-large {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus .content-image {
        margin: 20px auto;
    }
}