/* style/hi88.css */
.page-hi88 {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A192F;
    line-height: 1.6;
}

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

/* Hero Section */
.page-hi88__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F 0%, #1a3a5e 100%); /* Darker gradient for depth */
    color: #FFFFFF;
}

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

.page-hi88__hero .page-hi88__container {
    position: relative;
    z-index: 1;
}

.page-hi88__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hi88__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #E0E0E0;
}

.page-hi88__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-hi88__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark Blue */
}

.page-hi88__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-hi88__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-hi88__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Sections */
.page-hi88__section {
    padding: 80px 0;
    background-color: #0A192F;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-hi88__section:last-of-type {
    border-bottom: none;
}

.page-hi88__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-hi88__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-hi88__sub-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-hi88__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-hi88__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-hi88__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-hi88__list li::before {
    content: '✓'; /* Checkmark for list items */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-hi88__list--promos li::before, .page-hi88__list--transactions li::before, .page-hi88__list--service li::before, .page-hi88__list--benefits li::before {
    content: '★'; /* Star for special lists */
    color: #FFD700;
}

.page-hi88__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-hi88__actions-inline {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hi88__hero-title {
        font-size: 2.5em;
    }

    .page-hi88__hero-subtitle {
        font-size: 1.2em;
    }

    .page-hi88__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-hi88__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-hi88__section-title {
        font-size: 2em;
    }

    .page-hi88__sub-title {
        font-size: 1.6em;
    }

    .page-hi88__paragraph, .page-hi88__list li {
        font-size: 1em;
    }

    .page-hi88__section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .page-hi88__hero-title {
        font-size: 2em;
    }

    .page-hi88__hero-subtitle {
        font-size: 1em;
    }

    .page-hi88__hero-actions {
        gap: 10px;
    }

    .page-hi88__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-hi88__section-title {
        font-size: 1.8em;
    }

    .page-hi88__sub-title {
        font-size: 1.4em;
    }

    .page-hi88__paragraph, .page-hi88__list li {
        font-size: 0.95em;
    }

    .page-hi88__actions-inline {
        flex-direction: column;
    }
}