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

/* Biến CSS */
:root {
    --page-promotions-first-deposit-bonus-primary-color: #1A2C50;
    --page-promotions-first-deposit-bonus-accent-color: #FFD700;
    --page-promotions-first-deposit-bonus-text-light: #F8F8F8;
    --page-promotions-first-deposit-bonus-text-dark: #1A2C50;
    --page-promotions-first-deposit-bonus-bg-light: #F0F2F5;
    --page-promotions-first-deposit-bonus-bg-dark: #121F38;
}

.page-promotions-first-deposit-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-first-deposit-bonus-text-dark);
    background-color: var(--page-promotions-first-deposit-bonus-bg-light);
}

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: linear-gradient(135deg, var(--page-promotions-first-deposit-bonus-primary-color) 0%, #3a5c9c 100%);
    color: var(--page-promotions-first-deposit-bonus-text-light);
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
}

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

.page-promotions-first-deposit-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-promotions-first-deposit-bonus-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-promotions-first-deposit-bonus__hero-button {
    display: inline-block;
    background-color: var(--page-promotions-first-deposit-bonus-accent-color);
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-first-deposit-bonus__hero-button:hover {
    background-color: #E6B800;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* Main Content Section */
.page-promotions-first-deposit-bonus__main-content {
    padding: 60px 0;
}

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

.page-promotions-first-deposit-bonus__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-promotions-first-deposit-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-promotions-first-deposit-bonus-accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-first-deposit-bonus__main-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-promotions-first-deposit-bonus__inline-link {
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-first-deposit-bonus__inline-link:hover {
    color: var(--page-promotions-first-deposit-bonus-accent-color);
}

/* Features Grid */
.page-promotions-first-deposit-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-promotions-first-deposit-bonus__feature-item {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-first-deposit-bonus__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-first-deposit-bonus__feature-item h3 {
    font-size: 1.5em;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    margin-bottom: 15px;
}

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

/* Lists */
.page-promotions-first-deposit-bonus__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-first-deposit-bonus__list li {
    margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__steps-list {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-first-deposit-bonus__steps-list li {
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
}

.page-promotions-first-deposit-bonus__steps-list li span {
    font-weight: normal;
    color: #555;
}

/* Table */
.page-promotions-first-deposit-bonus__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-first-deposit-bonus__promo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-promotions-first-deposit-bonus__promo-table th,
.page-promotions-first-deposit-bonus__promo-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.page-promotions-first-deposit-bonus__promo-table th {
    background-color: var(--page-promotions-first-deposit-bonus-primary-color);
    color: var(--page-promotions-first-deposit-bonus-text-light);
    font-weight: bold;
    font-size: 1.1em;
}

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

.page-promotions-first-deposit-bonus__promo-table tbody tr:hover {
    background-color: #F0F0F0;
}

/* Formula */
.page-promotions-first-deposit-bonus__formula {
    background-color: var(--page-promotions-first-deposit-bonus-bg-dark);
    color: var(--page-promotions-first-deposit-bonus-accent-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Images within content */
.page-promotions-first-deposit-bonus__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

/* FAQ Section */
.page-promotions-first-deposit-bonus__faq-container {
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-promotions-first-deposit-bonus__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.3em;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-first-deposit-bonus__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-promotions-first-deposit-bonus-accent-color);
    transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus__faq-answer {
    font-size: 1.05em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-first-deposit-bonus__faq-answer.open {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* Contact Us */
.page-promotions-first-deposit-bonus__contact-us {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--page-promotions-first-deposit-bonus-bg-dark);
    color: var(--page-promotions-first-deposit-bonus-text-light);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__contact-us p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--page-promotions-first-deposit-bonus-text-light);
}

.page-promotions-first-deposit-bonus__contact-link {
    color: var(--page-promotions-first-deposit-bonus-accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-first-deposit-bonus__contact-link:hover {
    color: #E6B800;
    text-decoration: underline;
}

/* Call to Action */
.page-promotions-first-deposit-bonus__call-to-action {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-promotions-first-deposit-bonus__button--primary {
    background-color: var(--page-promotions-first-deposit-bonus-accent-color);
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    border-color: var(--page-promotions-first-deposit-bonus-accent-color);
}

.page-promotions-first-deposit-bonus__button--primary:hover {
    background-color: #E6B800;
    border-color: #E6B800;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__button--secondary {
    background-color: transparent;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    border-color: var(--page-promotions-first-deposit-bonus-primary-color);
}

.page-promotions-first-deposit-bonus__button--secondary:hover {
    background-color: var(--page-promotions-first-deposit-bonus-primary-color);
    color: var(--page-promotions-first-deposit-bonus-accent-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit-bonus__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__main-content {
        padding: 40px 0;
    }
    .page-promotions-first-deposit-bonus__container {
        padding: 0 15px;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-promotions-first-deposit-bonus__main-content p,
    .page-promotions-first-deposit-bonus__list,
    .page-promotions-first-deposit-bonus__steps-list {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__promo-table th,
    .page-promotions-first-deposit-bonus__promo-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-first-deposit-bonus__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions-first-deposit-bonus__contact-us {
        padding: 30px 20px;
    }
    .page-promotions-first-deposit-bonus__contact-us p {
        font-size: 1.05em;
    }
    .page-promotions-first-deposit-bonus__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit-bonus__promo-table {
        min-width: 100%;
    }
    .page-promotions-first-deposit-bonus__button {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }
}