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

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

.page-promotions-first-deposit-bonus-rules__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #004080 100%); /* Darker blue gradient for depth */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus-rules__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-promotions-first-deposit-bonus-rules__hero-title .highlight {
    color: #fff;
}

.page-promotions-first-deposit-bonus-rules__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-first-deposit-bonus-rules__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-promotions-first-deposit-bonus-rules__hero-section .page-promotions-first-deposit-bonus-rules__container {
    position: relative;
    z-index: 1;
}

.page-promotions-first-deposit-bonus-rules__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    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-rules__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

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

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

.page-promotions-first-deposit-bonus-rules__content-section {
    padding: 60px 0;
}

.page-promotions-first-deposit-bonus-rules__bg-alt {
    background-color: #e9ecef;
}

.page-promotions-first-deposit-bonus-rules__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-first-deposit-bonus-rules__section-title .highlight {
    color: #FFD700;
}

.page-promotions-first-deposit-bonus-rules__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
    text-align: justify;
}

.page-promotions-first-deposit-bonus-rules__text-block .highlight {
    font-weight: bold;
    color: #0A2463;
}

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

.page-promotions-first-deposit-bonus-rules__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus-rules__sub-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus-rules__sub-title .highlight {
    color: #FFD700;
}

.page-promotions-first-deposit-bonus-rules__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus-rules__image-centered {
    display: block;
    margin: 40px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-first-deposit-bonus-rules__step-list li {
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    font-size: 1.1em;
    color: #495057;
}

.page-promotions-first-deposit-bonus-rules__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0A2463; /* Dark blue step number */
    color: #FFD700; /* Gold text on dark blue */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus-rules__step-list strong {
    color: #0A2463;
}

.page-promotions-first-deposit-bonus-rules__link-inline {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-first-deposit-bonus-rules__link-inline:hover {
    color: #FFD700;
}

.page-promotions-first-deposit-bonus-rules__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.page-promotions-first-deposit-bonus-rules__comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table is wide enough on small screens */
}

.page-promotions-first-deposit-bonus-rules__comparison-table th,
.page-promotions-first-deposit-bonus-rules__comparison-table td {
    padding: 15px;
    border: 1px solid #dee2e6;
    text-align: left;
    color: #495057;
}

.page-promotions-first-deposit-bonus-rules__comparison-table th {
    background-color: #0A2463; /* Dark blue header */
    color: #FFD700; /* Gold text on dark blue */
    font-weight: bold;
    white-space: nowrap;
}

.page-promotions-first-deposit-bonus-rules__comparison-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-promotions-first-deposit-bonus-rules__comparison-table tbody tr:hover {
    background-color: #e0f2f7;
}

.page-promotions-first-deposit-bonus-rules__action-link {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus-rules__action-link:hover {
    background-color: #e6c200;
}

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

.page-promotions-first-deposit-bonus-rules__tip-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #495057;
}

.page-promotions-first-deposit-bonus-rules__tip-list li strong {
    color: #0A2463;
    font-size: 1.1em;
}

.page-promotions-first-deposit-bonus-rules__tip-list li .highlight {
    font-weight: bold;
    color: #0A2463;
}

.page-promotions-first-deposit-bonus-rules__cta-section {
    background: linear-gradient(45deg, #0A2463, #004080);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-first-deposit-bonus-rules__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-promotions-first-deposit-bonus-rules__cta-title .highlight {
    color: #fff;
}

.page-promotions-first-deposit-bonus-rules__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-first-deposit-bonus-rules__copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus-rules__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-first-deposit-bonus-rules__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-first-deposit-bonus-rules__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus-rules__sub-title {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit-bonus-rules__text-block {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus-rules__step-list li {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus-rules__hero-section {
        padding: 60px 0;
    }
    .page-promotions-first-deposit-bonus-rules__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus-rules__content-section {
        padding: 40px 0;
    }
    .page-promotions-first-deposit-bonus-rules__section-title {
        font-size: 1.6em;
    }
    .page-promotions-first-deposit-bonus-rules__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit-bonus-rules__step-list li {
        padding-left: 40px;
    }
    .page-promotions-first-deposit-bonus-rules__step-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus-rules__image-centered {
        max-width: 100%;
    }
    .page-promotions-first-deposit-bonus-rules__cta-section {
        padding: 60px 0;
    }
    .page-promotions-first-deposit-bonus-rules__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus-rules__hero-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus-rules__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus-rules__section-title {
        font-size: 1.4em;
    }
    .page-promotions-first-deposit-bonus-rules__sub-title {
        font-size: 1.2em;
    }
    .page-promotions-first-deposit-bonus-rules__text-block {
        font-size: 0.95em;
    }
    .page-promotions-first-deposit-bonus-rules__step-list li {
        font-size: 0.95em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-title {
        font-size: 1.6em;
    }
    .page-promotions-first-deposit-bonus-rules__cta-text {
        font-size: 0.95em;
    }
    .page-promotions-first-deposit-bonus-rules__comparison-table th,
    .page-promotions-first-deposit-bonus-rules__comparison-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus-rules__action-link {
        padding: 6px 10px;
        font-size: 0.8em;
    }
}