
    :root {
    --primary-color: #e44d26; /* A vibrant orange/red */
    --secondary-color: #333;
    --accent-color: #ffd700; /* Gold for highlights */
    --background-dark: #1a1a1a;
    --background-light: #2c2c2c;
    --text-light: #ffffff;
    --text-dark: #e0e0e0;
    --border-color: #555;
    --button-hover-color: #ff6a00;
}

.page-33hello88 {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-dark);
    line-height: 1.6;
    padding-top: 10px; /* Small padding top, assuming body padding-top is handled by shared.css */
}

/* Hero Section */
.page-33hello88__hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px 60px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.page-33hello88__brand-title {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.page-33hello88__hero-slogan {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-33hello88__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-33hello88__register-button,
.page-33hello88__login-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-33hello88__register-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-33hello88__register-button:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-3px);
}

.page-33hello88__login-button {
    background-color: var(--background-light);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.page-33hello88__login-button:hover {
    background-color: #444;
    transform: translateY(-3px);
}

/* Floating Buttons */
.page-33hello88__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-33hello88__floating-register,
.page-33hello88__floating-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    min-width: 100px; /* Ensure buttons have a minimum width */
}

.page-33hello88__floating-register {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.page-33hello88__floating-register:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-2px);
}

.page-33hello88__floating-login {
    background-color: var(--background-light);
    border: 1px solid var(--accent-color);
}

.page-33hello88__floating-login:hover {
    background-color: #444;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-33hello88__section-title {
    font-size: 2.5em;
    color: var(--accent-color);
    text-align: center;
    margin: 60px 0 30px;
    padding-bottom: 10px;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

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

.page-33hello88__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 15px;
    color: var(--text-dark);
}

/* About Section */
.page-33hello88__about-section {
    padding: 40px 20px;
    background-color: var(--background-dark);
    text-align: center;
}

.page-33hello88__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
}

/* Games Section */
.page-33hello88__games-section {
    padding: 40px 20px;
    background-color: var(--background-light);
}

.page-33hello88__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-33hello88__game-item {
    background-color: var(--background-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-33hello88__game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-33hello88__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-33hello88__game-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin: 20px 15px 10px;
}

.page-33hello88__game-description {
    font-size: 0.95em;
    color: var(--text-dark);
    padding: 0 15px;
}

/* Promotions Section */
.page-33hello88__promotions-section {
    padding: 40px 20px;
    background-color: var(--background-dark);
}

.page-33hello88__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-33hello88__promo-item {
    background-color: var(--background-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-33hello88__promo-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-33hello88__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-33hello88__promo-title {
    font-size: 1.5em;
    color: var(--accent-color);
    margin: 20px 15px 10px;
}

.page-33hello88__promo-description {
    font-size: 0.95em;
    color: var(--text-dark);
    padding: 0 15px 20px;
}

.page-33hello88__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-33hello88__cta-bottom p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Features Section */
.page-33hello88__features-section {
    padding: 40px 20px;
    background-color: var(--background-light);
}

.page-33hello88__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-33hello88__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.page-33hello88__feature-icon {
    width: 120px; /* Adjusted size for feature icons */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-33hello88__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-33hello88__feature-description {
    font-size: 0.9em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-33hello88__faq-section {
    padding: 40px 20px;
    background-color: var(--background-dark);
}

.page-33hello88__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-33hello88__faq-item {
    background-color: var(--background-light);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-33hello88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-33hello88__faq-question:hover {
    background-color: #444;
}

.page-33hello88__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: var(--accent-color);
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-33hello88__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    pointer-events: none; /* Prevent span from blocking click */
    transition: transform 0.3s ease;
}

.page-33hello88__faq-item.active .page-33hello88__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
    color: var(--text-light);
}

.page-33hello88__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    background-color: var(--background-dark);
    color: var(--text-dark);
}

.page-33hello88__faq-item.active .page-33hello88__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-33hello88__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* Call to Action Section */
.page-33hello88__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-light);
    border-top: 2px solid var(--primary-color);
}

.page-33hello88__main-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

.page-33hello88__main-cta-button:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-33hello88__brand-title {
        font-size: 3em;
    }
    .page-33hello88__hero-slogan {
        font-size: 1.3em;
    }
    .page-33hello88__section-title {
        font-size: 2em;
    }
    .page-33hello88__game-grid,
    .page-33hello88__promo-list,
    .page-33hello88__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .page-33hello88__floating-buttons {
        gap: 10px;
        bottom: 15px;
    }
    .page-33hello88__floating-register,
    .page-33hello88__floating-login {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 90px;
    }
}

@media (max-width: 768px) {
    .page-33hello88__hero-section {
        padding: 60px 15px 40px;
    }
    .page-33hello88__brand-title {
        font-size: 2.5em;
    }
    .page-33hello88__hero-slogan {
        font-size: 1.1em;
    }
    .page-33hello88__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-33hello88__register-button,
    .page-33hello88__login-button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-33hello88__section-title {
        font-size: 1.8em;
        margin: 40px 0 25px;
    }
    .page-33hello88__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-33hello88__game-grid,
    .page-33hello88__promo-list,
    .page-33hello88__features-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 20px;
    }

    /* List item responsive requirements */
    .page-33hello88__game-item,
    .page-33hello88__promo-item,
    .page-33hello88__feature-item,
    .page-33hello88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-33hello88__game-item .page-33hello88__game-image,
    .page-33hello88__promo-item .page-33hello88__promo-image,
    .page-33hello88__feature-item .page-33hello88__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin: 0 auto !important; /* Center images */
        display: block !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-33hello88__game-description,
    .page-33hello88__promo-description,
    .page-33hello88__feature-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-33hello88__floating-buttons {
        gap: 10px;
        bottom: 10px;
        width: calc(100% - 40px); /* Adjust width to account for padding */
        max-width: 300px; /* Limit width for small screens */
    }
    .page-33hello88__floating-register,
    .page-33hello88__floating-login {
        flex-grow: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
    }
    .page-33hello88__main-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-33hello88__faq-question {
        padding: 15px 20px;
    }
    .page-33hello88__faq-title {
        font-size: 1.1em;
    }
    .page-33hello88__faq-answer {
        padding: 0 20px;
    }
    .page-33hello88__faq-item.active .page-33hello88__faq-answer {
        padding: 15px 20px !important;
    }
}

@media (max-width: 480px) {
    .page-33hello88__brand-title {
        font-size: 2em;
    }
    .page-33hello88__hero-slogan {
        font-size: 1em;
    }
    .page-33hello88__section-title {
        font-size: 1.6em;
    }
    .page-33hello88__floating-buttons {
        width: calc(100% - 20px);
        max-width: 280px;
    }
    .page-33hello88__floating-register,
    .page-33hello88__floating-login {
        font-size: 0.85em;
        padding: 8px 12px;
    }
}
  