
    /* Biến màu sắc cơ bản */
:root {
    --page-98-77-primary-color: #e44d26; /* Màu cam đỏ */
    --page-98-77-secondary-color: #ffb800; /* Màu vàng cam */
    --page-98-77-dark-bg: #1a1a1a; /* Nền tối */
    --page-98-77-light-text: #f0f0f0; /* Chữ sáng */
    --page-98-77-gray-text: #cccccc; /* Chữ xám */
    --page-98-77-border-color: #333;
}

.page-98-77 {
    font-family: 'Arial', sans-serif;
    color: var(--page-98-77-light-text);
    background-color: var(--page-98-77-dark-bg);
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
}

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

.page-98-77__highlight {
    color: var(--page-98-77-primary-color);
}

.page-98-77__section-title {
    font-size: 2.5em;
    color: var(--page-98-77-light-text);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

/* Hero Section */
.page-98-77__hero-section {
    position: relative;
    background: url('[GALLERY:hero:1920x1080:betting,casino,mobile]') no-repeat center center/cover;
    color: var(--page-98-77-light-text);
    text-align: center;
    padding: 100px 20px 80px; /* Adjusted padding-top for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.page-98-77__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-98-77__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-98-77__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-98-77__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--page-98-77-gray-text);
}

.page-98-77__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-98-77__cta-button {
    background-color: var(--page-98-77-primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--page-98-77-primary-color);
    display: inline-block;
}

.page-98-77__cta-button:hover {
    background-color: #ff6a3c;
    transform: translateY(-3px);
}

.page-98-77__cta-button--secondary {
    background-color: transparent;
    border-color: var(--page-98-77-secondary-color);
    color: var(--page-98-77-secondary-color);
}

.page-98-77__cta-button--secondary:hover {
    background-color: var(--page-98-77-secondary-color);
    color: var(--page-98-77-dark-bg);
}

/* About Section */
.page-98-77__about-section {
    padding: 60px 0;
    background-color: #222;
}

.page-98-77__about-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--page-98-77-gray-text);
}

/* Products Section */
.page-98-77__products-section {
    padding: 60px 0;
    background-color: var(--page-98-77-dark-bg);
}

.page-98-77__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center; /* Center items in the grid */
}

.page-98-77__product-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px; /* Ensure items don't get too wide on large screens */
}

.page-98-77__product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-98-77__product-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 4px solid var(--page-98-77-primary-color);
    max-width: 100%;
    box-sizing: border-box;
}

.page-98-77__product-title {
    font-size: 1.8em;
    color: var(--page-98-77-secondary-color);
    margin: 20px 0 10px;
}

.page-98-77__product-description {
    font-size: 1em;
    color: var(--page-98-77-gray-text);
    padding: 0 15px;
}

/* Promotions Section */
.page-98-77__promotions-section {
    padding: 60px 0;
    background-color: #222;
}

.page-98-77__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.page-98-77__promotion-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
}

.page-98-77__promotion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-98-77__promotion-image {
    width: 100%;
    height: 280px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 4px solid var(--page-98-77-secondary-color);
    max-width: 100%;
    box-sizing: border-box;
}

.page-98-77__promotion-title {
    font-size: 1.6em;
    color: var(--page-98-77-primary-color);
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-98-77__promotion-description {
    font-size: 1em;
    color: var(--page-98-77-gray-text);
    padding: 0 15px 20px;
}

/* Providers Section */
.page-98-77__providers-section {
    padding: 60px 0;
    background-color: var(--page-98-77-dark-bg);
}

.page-98-77__provider-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.page-98-77__provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2a2a2a;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    max-width: 200px; /* Limit max width for individual items */
    box-sizing: border-box;
}

.page-98-77__provider-item:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-98-77__provider-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    max-width: 100%;
    box-sizing: border-box;
}

.page-98-77__provider-name {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--page-98-77-light-text);
    text-align: center;
}

/* Payments Section */
.page-98-77__payments-section {
    padding: 60px 0;
    background-color: #222;
}

.page-98-77__payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.page-98-77__payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2a2a2a;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    max-width: 180px;
    box-sizing: border-box;
}

.page-98-77__payment-item:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-98-77__payment-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    max-width: 100%;
    box-sizing: border-box;
}

.page-98-77__payment-name {
    font-size: 1em;
    font-weight: bold;
    color: var(--page-98-77-light-text);
    text-align: center;
}

/* FAQ Section */
.page-98-77__faq-section {
    padding: 60px 0;
    background-color: var(--page-98-77-dark-bg);
}

.page-98-77__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-98-77__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-98-77__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #3a3a3a;
    color: var(--page-98-77-light-text);
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-98-77__faq-question:hover {
    background-color: #4a4a4a;
}

.page-98-77__faq-question-text {
    margin: 0;
    flex-grow: 1;
    pointer-events: none; /* Prevents text from blocking click event */
    color: var(--page-98-77-secondary-color);
}

.page-98-77__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevents toggle icon from blocking click event */
    color: var(--page-98-77-primary-color);
}

.page-98-77__faq-item.active .page-98-77__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-98-77__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: #2a2a2a;
    color: var(--page-98-77-gray-text);
}

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

.page-98-77__faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

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

.page-98-77__floating-button {
    background-color: var(--page-98-77-primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-98-77__floating-button:hover {
    background-color: #ff6a3c;
    transform: translateY(-3px) translateX(-50%); /* Adjust for transformX */
}

.page-98-77__floating-button--login {
    background-color: var(--page-98-77-secondary-color);
}

.page-98-77__floating-button--login:hover {
    background-color: #ffd24d;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-98-77__hero-title {
        font-size: 3em;
    }
    .page-98-77__hero-description {
        font-size: 1.2em;
    }
    .page-98-77__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-98-77__hero-section {
        padding: 80px 15px 60px;
        min-height: 50vh;
    }
    .page-98-77__hero-title {
        font-size: 2.5em;
    }
    .page-98-77__hero-description {
        font-size: 1em;
    }
    .page-98-77__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-98-77__cta-button {
        width: 80%;
        margin: 0 auto;
    }
    .page-98-77__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-98-77__product-grid, .page-98-77__promotion-grid {
        grid-template-columns: 1fr;
    }

    /* List items mobile responsiveness */
    .page-98-77__provider-list, .page-98-77__payment-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .page-98-77__provider-item, .page-98-77__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 5px;
    }

    .page-98-77__provider-name, .page-98-77__payment-name {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-98-77__provider-logo, .page-98-77__payment-logo {
        width: 60px;
        height: 60px;
    }

    .page-98-77__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-98-77__faq-answer {
        padding: 0 20px;
    }
    .page-98-77__faq-item.active .page-98-77__faq-answer {
        padding: 15px 20px !important;
    }
    .page-98-77__faq-toggle {
        font-size: 1.5em;
    }

    .page-98-77__floating-buttons {
        width: 90%;
        gap: 10px;
    }
    .page-98-77__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
    }
    .page-98-77__floating-button:hover {
        transform: translateY(-3px) translateX(0); /* Adjust for flex item */
    }
}

@media (max-width: 480px) {
    .page-98-77__hero-title {
        font-size: 2em;
    }
    .page-98-77__hero-description {
        font-size: 0.9em;
    }
    .page-98-77__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-98-77__section-title {
        font-size: 1.5em;
    }
    .page-98-77__floating-buttons {
        bottom: 15px;
        gap: 8px;
    }
    .page-98-77__floating-button {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    .page-98-77__product-image, .page-98-77__promotion-image {
        height: 200px;
    }
}
  