/* style/hi88.css */

/* Biến CSS cho màu sắc */
:root {
    --page-hi88-primary-color: #003366;
    --page-hi88-secondary-color: #FFCC00;
    --page-hi88-text-dark: #333333;
    --page-hi88-text-light: #ffffff;
    --page-hi88-background-light: #f5f5f5;
    --page-hi88-background-dark: #002244;
}

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

.page-hi88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hi88__section {
    padding: 60px 0;
    text-align: center;
}

.page-hi88__section:nth-of-type(even) {
    background-color: var(--page-hi88-background-light);
}

.page-hi88__section:nth-of-type(odd) {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
}

.page-hi88__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--page-hi88-primary-color);
    position: relative;
    padding-bottom: 10px;
}

.page-hi88__section:nth-of-type(odd) .page-hi88__section-title {
    color: var(--page-hi88-secondary-color);
}

.page-hi88__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-hi88-secondary-color);
    border-radius: 2px;
}

.page-hi88__section:nth-of-type(odd) .page-hi88__section-title::after {
    background-color: var(--page-hi88-primary-color);
}

.page-hi88__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--page-hi88-primary-color);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__sub-title {
    color: var(--page-hi88-text-light);
}

.page-hi88__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hi88__section:nth-of-type(odd) .page-hi88__text-content {
    color: var(--page-hi88-text-light);
}

/* Hero Section */
.page-hi88__hero-section {
    background: linear-gradient(135deg, var(--page-hi88-primary-color), #004488);
    color: var(--page-hi88-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-hi88__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.page-hi88__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-hi88-secondary-color);
    line-height: 1.2;
}

.page-hi88__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-hi88__hero-description {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-hi88__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

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

.page-hi88__btn--primary {
    background-color: var(--page-hi88-secondary-color);
    color: var(--page-hi88-primary-color);
}

.page-hi88__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-hi88__btn--secondary {
    background-color: transparent;
    color: var(--page-hi88-secondary-color);
    border: 2px solid var(--page-hi88-secondary-color);
}

.page-hi88__btn--secondary:hover {
    background-color: var(--page-hi88-secondary-color);
    color: var(--page-hi88-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-hi88__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-hi88__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Feature Grid */
.page-hi88__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-hi88__feature-item {
    background-color: var(--page-hi88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__feature-item {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hi88__feature-item:hover {
    transform: translateY(-5px);
}

.page-hi88__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(10%) sepia(90%) saturate(2000%) hue-rotate(190deg) brightness(80%) contrast(100%); /* Adjust to primary color */
}

.page-hi88__section:nth-of-type(odd) .page-hi88__feature-icon {
    filter: invert(70%) sepia(90%) saturate(1000%) hue-rotate(10deg) brightness(120%) contrast(100%); /* Adjust to secondary color */
}

.page-hi88__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--page-hi88-primary-color);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__feature-title {
    color: var(--page-hi88-secondary-color);
}

/* Game Showcase */
.page-hi88__game-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-hi88__game-showcase--reverse {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .page-hi88__game-showcase {
        flex-direction: row;
        text-align: left;
    }
    .page-hi88__game-showcase--reverse {
        flex-direction: row-reverse;
    }
}

.page-hi88__game-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-hi88__game-details {
    flex: 1;
}

.page-hi88__game-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
}

.page-hi88__game-list li {
    background-color: var(--page-hi88-text-light);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-hi88-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__game-list li {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    border-left-color: var(--page-hi88-primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-hi88__game-list li strong {
    color: var(--page-hi88-primary-color);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__game-list li strong {
    color: var(--page-hi88-secondary-color);
}

/* Guide Section */
.page-hi88__step-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
}

.page-hi88__step-list li {
    background-color: var(--page-hi88-text-light);
    padding: 25px;
    margin-bottom: 15px;
    border-left: 6px solid var(--page-hi88-primary-color);
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__step-list li {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    border-left-color: var(--page-hi88-secondary-color);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.page-hi88__step-list li strong {
    color: var(--page-hi88-secondary-color);
    margin-right: 10px;
}

.page-hi88__section:nth-of-type(odd) .page-hi88__step-list li strong {
    color: var(--page-hi88-primary-color);
}

.page-hi88__payment-list {
    list-style: disc;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
    padding-left: 20px;
}

.page-hi88__payment-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Promo Section */
.page-hi88__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hi88__promo-item {
    background-color: var(--page-hi88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__promo-item {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hi88__promo-item:hover {
    transform: translateY(-5px);
}

.page-hi88__promo-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-hi88__promo-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--page-hi88-primary-color);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__promo-title {
    color: var(--page-hi88-secondary-color);
}

/* Security Section */
.page-hi88__security-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
}

.page-hi88__security-list li {
    background-color: var(--page-hi88-text-light);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-hi88-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--page-hi88-text-dark);
    font-size: 1.1em;
}

.page-hi88__section:nth-of-type(odd) .page-hi88__security-list li {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    border-left-color: var(--page-hi88-primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-hi88__security-list li strong {
    color: var(--page-hi88-primary-color);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__security-list li strong {
    color: var(--page-hi88-secondary-color);
}

/* Testimonials */
.page-hi88__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hi88__testimonial-item {
    background-color: var(--page-hi88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__testimonial-item {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hi88__quote {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__quote {
    color: var(--page-hi88-text-light);
}

.page-hi88__author {
    font-weight: bold;
    color: var(--page-hi88-primary-color);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__author {
    color: var(--page-hi88-secondary-color);
}

/* FAQ Section */
.page-hi88__faq-item {
    background-color: var(--page-hi88-text-light);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: var(--page-hi88-text-dark);
}

.page-hi88__section:nth-of-type(odd) .page-hi88__faq-item {
    background-color: var(--page-hi88-background-dark);
    color: var(--page-hi88-text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-hi88__faq-question {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--page-hi88-primary-color);
    cursor: pointer;
    position: relative;
}

.page-hi88__section:nth-of-type(odd) .page-hi88__faq-question {
    color: var(--page-hi88-secondary-color);
}

.page-hi88__faq-answer {
    font-size: 1.05em;
    padding-left: 10px;
    border-left: 3px solid var(--page-hi88-secondary-color);
    margin-top: 15px;
    display: block; /* Ensure answer is visible by default for static HTML */
}

.page-hi88__section:nth-of-type(odd) .page-hi88__faq-answer {
    border-left-color: var(--page-hi88-primary-color);
}

/* Call to Action Section */
.page-hi88__cta-section {
    background: linear-gradient(135deg, var(--page-hi88-secondary-color), #FFD700);
    color: var(--page-hi88-primary-color);
    padding: 80px 0;
    text-align: center;
}

.page-hi88__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-hi88-primary-color);
}

.page-hi88__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-hi88-primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hi88__hero-title {
        font-size: 3em;
    }
    .page-hi88__section-title {
        font-size: 2.2em;
    }
    .page-hi88__sub-title {
        font-size: 1.6em;
    }
    .page-hi88__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-hi88__hero-section {
        padding: 60px 0;
    }
    .page-hi88__hero-title {
        font-size: 2.5em;
    }
    .page-hi88__hero-subtitle {
        font-size: 1.2em;
    }
    .page-hi88__section {
        padding: 40px 0;
    }
    .page-hi88__section-title {
        font-size: 2em;
    }
    .page-hi88__sub-title {
        font-size: 1.4em;
    }
    .page-hi88__text-content, .page-hi88__btn {
        font-size: 1em;
    }
    .page-hi88__game-showcase, .page-hi88__game-showcase--reverse {
        flex-direction: column;
    }
    .page-hi88__game-image {
        max-width: 100%;
    }
    .page-hi88__cta-title {
        font-size: 2em;
    }
    .page-hi88__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-hi88__hero-title {
        font-size: 2em;
    }
    .page-hi88__hero-subtitle {
        font-size: 1em;
    }
    .page-hi88__section-title {
        font-size: 1.8em;
    }
    .page-hi88__sub-title {
        font-size: 1.2em;
    }
    .page-hi88__btn {
        padding: 12px 25px;
    }
    .page-hi88__feature-grid, .page-hi88__promo-grid, .page-hi88__testimonial-grid {
        grid-template-columns: 1fr;
    }
    .page-hi88__cta-title {
        font-size: 1.8em;
    }
    .page-hi88__cta-text {
        font-size: 1em;
    }
}