/* style/index-tx88-exclusive-promotions-overview.css */

.page-index-tx88-exclusive-promotions-overview {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #121F3A; /* Slightly lighter dark blue for body background */
    padding-bottom: 50px; /* Space for footer */
}

.page-index-tx88-exclusive-promotions-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-tx88-exclusive-promotions-overview__text-content strong {
    color: #FFD700;
}

/* Hero Section */
.page-index-tx88-exclusive-promotions-overview__hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #0D182E 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-tx88-exclusive-promotions-overview__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: 700;
    line-height: 1.2;
}

.page-index-tx88-exclusive-promotions-overview__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #CCCCCC;
}

.page-index-tx88-exclusive-promotions-overview__hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index-tx88-exclusive-promotions-overview__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-tx88-exclusive-promotions-overview__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text on gold */
}

.page-index-tx88-exclusive-promotions-overview__btn--primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-index-tx88-exclusive-promotions-overview__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
}

.page-index-tx88-exclusive-promotions-overview__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-index-tx88-exclusive-promotions-overview__btn--link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: normal;
    font-size: 1em;
    padding: 0;
    background: none;
    border: none;
}

.page-index-tx88-exclusive-promotions-overview__btn--link:hover {
    color: #e5c100;
    text-decoration: none;
}

.page-index-tx88-exclusive-promotions-overview__btn--sm {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-index-tx88-exclusive-promotions-overview__btn--lg {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-index-tx88-exclusive-promotions-overview__hero-image {
    max-width: 90%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-tx88-exclusive-promotions-overview__section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-tx88-exclusive-promotions-overview__section:nth-of-type(even) {
    background-color: #0D182E; /* Alternate dark blue */
}

.page-index-tx88-exclusive-promotions-overview__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-tx88-exclusive-promotions-overview__text-center {
    text-align: center;
}

.page-index-tx88-exclusive-promotions-overview__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

/* Why Choose Section */
.page-index-tx88-exclusive-promotions-overview__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-tx88-exclusive-promotions-overview__feature-item {
    background-color: #0D182E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-tx88-exclusive-promotions-overview__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-index-tx88-exclusive-promotions-overview__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-index-tx88-exclusive-promotions-overview__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-tx88-exclusive-promotions-overview__feature-item p {
    color: #CCCCCC;
    font-size: 1em;
}

/* Promotions Overview Section */
.page-index-tx88-exclusive-promotions-overview__promo-card {
    background-color: #0D182E;
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-tx88-exclusive-promotions-overview__promo-card:hover {
    transform: translateY(-5px);
}

.page-index-tx88-exclusive-promotions-overview__promo-card:nth-child(odd) {
    flex-direction: row;
}

.page-index-tx88-exclusive-promotions-overview__promo-card:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-tx88-exclusive-promotions-overview__promo-image {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.page-index-tx88-exclusive-promotions-overview__promo-content {
    width: 60%;
    padding: 40px;
}

.page-index-tx88-exclusive-promotions-overview__promo-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-tx88-exclusive-promotions-overview__promo-content p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

/* Guide Section */
.page-index-tx88-exclusive-promotions-overview__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-tx88-exclusive-promotions-overview__guide-item {
    background-color: #0D182E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-tx88-exclusive-promotions-overview__guide-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-index-tx88-exclusive-promotions-overview__guide-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-tx88-exclusive-promotions-overview__guide-item p {
    color: #CCCCCC;
    margin-bottom: 20px;
}

/* Game Types Section */
.page-index-tx88-exclusive-promotions-overview__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-tx88-exclusive-promotions-overview__game-item {
    background-color: #0D182E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-tx88-exclusive-promotions-overview__game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-index-tx88-exclusive-promotions-overview__game-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-tx88-exclusive-promotions-overview__game-item p {
    color: #CCCCCC;
}

/* Security & Support Section */
.page-index-tx88-exclusive-promotions-overview__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-tx88-exclusive-promotions-overview__info-item {
    background-color: #0D182E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-tx88-exclusive-promotions-overview__info-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-index-tx88-exclusive-promotions-overview__info-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-tx88-exclusive-promotions-overview__info-item p {
    color: #CCCCCC;
}

/* FAQ Section */
.page-index-tx88-exclusive-promotions-overview__faq-list {
    margin-top: 30px;
}

.page-index-tx88-exclusive-promotions-overview__faq-item {
    background-color: #0D182E;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-tx88-exclusive-promotions-overview__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-tx88-exclusive-promotions-overview__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-tx88-exclusive-promotions-overview__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-tx88-exclusive-promotions-overview__faq-answer {
    color: #CCCCCC;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-index-tx88-exclusive-promotions-overview__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px;
}

/* Final CTA Section */
.page-index-tx88-exclusive-promotions-overview__cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #e5c100 100%); /* Gold gradient */
    color: #1A2B4C;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

.page-index-tx88-exclusive-promotions-overview__cta-final .page-index-tx88-exclusive-promotions-overview__section-title {
    color: #1A2B4C;
}

.page-index-tx88-exclusive-promotions-overview__cta-final .page-index-tx88-exclusive-promotions-overview__section-title::after {
    background-color: #1A2B4C;
}

.page-index-tx88-exclusive-promotions-overview__cta-final .page-index-tx88-exclusive-promotions-overview__text-content {
    color: #333333;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-tx88-exclusive-promotions-overview__cta-final .page-index-tx88-exclusive-promotions-overview__btn--primary {
    background-color: #1A2B4C;
    color: #FFD700;
    border: 2px solid #1A2B4C;
}

.page-index-tx88-exclusive-promotions-overview__cta-final .page-index-tx88-exclusive-promotions-overview__btn--primary:hover {
    background-color: #0D182E;
    color: #FFD700;
    border-color: #0D182E;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-tx88-exclusive-promotions-overview__hero-title {
        font-size: 2.8em;
    }
    .page-index-tx88-exclusive-promotions-overview__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-tx88-exclusive-promotions-overview__section-title {
        font-size: 2.2em;
    }
    .page-index-tx88-exclusive-promotions-overview__promo-card {
        flex-direction: column !important;
    }
    .page-index-tx88-exclusive-promotions-overview__promo-image,
    .page-index-tx88-exclusive-promotions-overview__promo-content {
        width: 100%;
    }
    .page-index-tx88-exclusive-promotions-overview__promo-content {
        padding: 30px;
    }
    .page-index-tx88-exclusive-promotions-overview__info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-tx88-exclusive-promotions-overview__hero-title {
        font-size: 2.2em;
    }
    .page-index-tx88-exclusive-promotions-overview__hero-subtitle {
        font-size: 1em;
    }
    .page-index-tx88-exclusive-promotions-overview__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-tx88-exclusive-promotions-overview__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-index-tx88-exclusive-promotions-overview__section-title {
        font-size: 1.8em;
    }
    .page-index-tx88-exclusive-promotions-overview__features-grid,
    .page-index-tx88-exclusive-promotions-overview__guide-grid,
    .page-index-tx88-exclusive-promotions-overview__game-grid {
        grid-template-columns: 1fr;
    }
    .page-index-tx88-exclusive-promotions-overview__promo-title {
        font-size: 1.6em;
    }
    .page-index-tx88-exclusive-promotions-overview__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-tx88-exclusive-promotions-overview__hero-section {
        padding: 70px 0 30px;
    }
    .page-index-tx88-exclusive-promotions-overview__hero-title {
        font-size: 1.8em;
    }
    .page-index-tx88-exclusive-promotions-overview__section {
        padding: 40px 0;
    }
    .page-index-tx88-exclusive-promotions-overview__section-title {
        font-size: 1.5em;
    }
    .page-index-tx88-exclusive-promotions-overview__promo-content {
        padding: 20px;
    }
}