/* style/promotions-vip-exclusive-privileges.css */

:root {
    --five88-gold: #FFD700;
    --five88-dark-red: #8B0000;
    --five88-text-dark: #333333;
    --five88-text-light: #ffffff;
    --five88-bg-dark: #1a1a1a;
    --five88-bg-light-grey: #f0f0f0;
    --five88-border-color: #555;
}

.page-promotions-vip-exclusive-privileges {
    font-family: 'Arial', sans-serif;
    color: var(--five88-text-dark);
    background-color: var(--five88-bg-light-grey);
    line-height: 1.6;
}

.page-promotions-vip-exclusive-privileges__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-vip-exclusive-privileges__hero {
    background: linear-gradient(135deg, var(--five88-dark-red) 0%, #a00000 50%, var(--five88-dark-red) 100%);
    color: var(--five88-text-light);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-promotions-vip-exclusive-privileges__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-vip-exclusive-privileges__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--five88-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--five88-text-light);
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions-vip-exclusive-privileges__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.page-promotions-vip-exclusive-privileges__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-promotions-vip-exclusive-privileges__cta-button {
    display: inline-block;
    background-color: var(--five88-gold);
    color: var(--five88-dark-red);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--five88-gold);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive-privileges__cta-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
    color: var(--five88-dark-red);
}

.page-promotions-vip-exclusive-privileges__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions-vip-exclusive-privileges__section {
    padding: 60px 0;
    background-color: var(--five88-bg-light-grey);
}

.page-promotions-vip-exclusive-privileges__section:nth-of-type(even) {
    background-color: #e8e8e8;
}

.page-promotions-vip-exclusive-privileges__section-title {
    font-size: 2.5em;
    color: var(--five88-dark-red);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-vip-exclusive-privileges__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--five88-gold);
    border-radius: 2px;
}

.page-promotions-vip-exclusive-privileges__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--five88-text-dark);
}

.page-promotions-vip-exclusive-privileges__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-exclusive-privileges__feature-item {
    background-color: var(--five88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-exclusive-privileges__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--five88-gold);
}

.page-promotions-vip-exclusive-privileges__feature-title {
    font-size: 1.5em;
    color: var(--five88-dark-red);
    margin-bottom: 15px;
}

.page-promotions-vip-exclusive-privileges__feature-text {
    color: var(--five88-text-dark);
}

.page-promotions-vip-exclusive-privileges__vip-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-exclusive-privileges__vip-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Ensure table is readable on smaller screens */
}

.page-promotions-vip-exclusive-privileges__vip-table th,
.page-promotions-vip-exclusive-privileges__vip-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.page-promotions-vip-exclusive-privileges__vip-table thead th {
    background-color: var(--five88-dark-red);
    color: var(--five88-text-light);
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions-vip-exclusive-privileges__vip-table tbody tr:nth-child(odd) {
    background-color: var(--five88-text-light);
}

.page-promotions-vip-exclusive-privileges__vip-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-promotions-vip-exclusive-privileges__vip-table tbody tr:hover {
    background-color: #ffecc2;
}

.page-promotions-vip-exclusive-privileges__note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.page-promotions-vip-exclusive-privileges__exclusive-benefits .page-promotions-vip-exclusive-privileges__section-intro {
    margin-bottom: 60px;
}

.page-promotions-vip-exclusive-privileges__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-promotions-vip-exclusive-privileges__benefit-item {
    background-color: var(--five88-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-exclusive-privileges__benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--five88-gold);
}

.page-promotions-vip-exclusive-privileges__benefit-item h3 {
    font-size: 1.6em;
    color: var(--five88-dark-red);
    padding: 20px 20px 10px;
    margin-bottom: 0;
}

.page-promotions-vip-exclusive-privileges__benefit-item p {
    padding: 0 20px 20px;
    color: var(--five88-text-dark);
}

.page-promotions-vip-exclusive-privileges__how-to-join .page-promotions-vip-exclusive-privileges__section-intro {
    margin-bottom: 30px;
}

.page-promotions-vip-exclusive-privileges__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions-vip-exclusive-privileges__steps-list li {
    background-color: var(--five88-text-light);
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    position: relative;
    font-size: 1.1em;
    color: var(--five88-text-dark);
}

.page-promotions-vip-exclusive-privileges__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background-color: var(--five88-dark-red);
    color: var(--five88-text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-promotions-vip-exclusive-privileges__steps-list li strong {
    color: var(--five88-dark-red);
}

.page-promotions-vip-exclusive-privileges__steps-list li a {
    color: var(--five88-dark-red);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__steps-list li a:hover {
    color: var(--five88-gold);
}

.page-promotions-vip-exclusive-privileges__callout {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--five88-dark-red);
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-promotions-vip-exclusive-privileges__faq {
    background-color: var(--five88-bg-light-grey);
}

.page-promotions-vip-exclusive-privileges__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions-vip-exclusive-privileges__faq-item {
    background-color: var(--five88-text-light);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-vip-exclusive-privileges__faq-question {
    font-size: 1.3em;
    color: var(--five88-dark-red);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-vip-exclusive-privileges__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--five88-gold);
    transition: transform 0.3s ease;
}

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

.page-promotions-vip-exclusive-privileges__faq-answer {
    font-size: 1em;
    color: var(--five88-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-promotions-vip-exclusive-privileges__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

.page-promotions-vip-exclusive-privileges__cta-bottom {
    background: linear-gradient(45deg, var(--five88-gold), #e0b800);
    padding: 80px 0;
    text-align: center;
    color: var(--five88-dark-red);
}

.page-promotions-vip-exclusive-privileges__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--five88-dark-red);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-promotions-vip-exclusive-privileges__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4a0000;
}

.page-promotions-vip-exclusive-privileges__floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-promotions-vip-exclusive-privileges__floating-button {
    background-color: var(--five88-dark-red);
    color: var(--five88-gold);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--five88-gold);
}

.page-promotions-vip-exclusive-privileges__floating-button:hover {
    background-color: #a00000;
    transform: translateX(-5px);
    color: var(--five88-gold);
}

@media (max-width: 1024px) {
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 3em;
    }
    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive-privileges__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-privileges__hero {
        padding: 60px 0;
        flex-direction: column;
        gap: 20px;
    }
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-vip-exclusive-privileges__hero-description,
    .page-promotions-vip-exclusive-privileges__section-intro {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-privileges__section {
        padding: 40px 0;
    }
    .page-promotions-vip-exclusive-privileges__feature-grid,
    .page-promotions-vip-exclusive-privileges__benefit-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-exclusive-privileges__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-privileges__cta-text {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive-privileges__floating-menu {
        right: 10px;
        bottom: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .page-promotions-vip-exclusive-privileges__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive-privileges__vip-table th,
    .page-promotions-vip-exclusive-privileges__vip-table td {
        padding: 10px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-privileges__hero-description,
    .page-promotions-vip-exclusive-privileges__section-intro {
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive-privileges__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-privileges__steps-list li {
        padding: 20px;
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-privileges__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        margin-right: 15px;
    }
    .page-promotions-vip-exclusive-privileges__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive-privileges__cta-title {
        font-size: 1.6em;
    }
    .page-promotions-vip-exclusive-privileges__cta-text {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-privileges__floating-menu {
        flex-direction: row;
        justify-content: center;
        left: 10px;
        right: 10px;
    }
    .page-promotions-vip-exclusive-privileges__floating-button {
        flex: 1;
        max-width: 120px;
        font-size: 0.85em;
        padding: 8px 10px;
    }
}