
    .page-zt9398 {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
}

.page-zt9398__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-zt9398__highlight {
    color: #ffcc00; /* Gold/yellow accent color */
}

.page-zt9398__section-title {
    font-size: 2.2em;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
    font-weight: bold;
}

.page-zt9398__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Brand Header */
.page-zt9398__brand-header {
    text-align: center;
    padding: 10px 0; /* Minimal padding-top as body handles offset */
    background-color: #222;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
}

.page-zt9398__brand-title {
    font-size: 2.8em;
    color: #ffcc00;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-zt9398__brand-slogan {
    font-size: 1.1em;
    color: #ccc;
    margin-top: 5px;
}

/* Hero Section */
.page-zt9398__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 40px;
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-zt9398__hero-content {
    padding: 20px 15px;
    max-width: 800px;
}

.page-zt9398__hero-title {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-zt9398__hero-description {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 30px;
}

.page-zt9398__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-zt9398__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
}

.page-zt9398__cta-button--primary {
    background-color: #ffcc00;
    color: #1a1a1a;
    border: 2px solid #ffcc00;
}

.page-zt9398__cta-button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-zt9398__cta-button--secondary {
    background-color: transparent;
    color: #ffcc00;
    border: 2px solid #ffcc00;
}

.page-zt9398__cta-button--secondary:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-zt9398__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 30px;
    box-sizing: border-box;
}

.page-zt9398__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* About Section */
.page-zt9398__about-section {
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #222;
    border-radius: 8px;
}

.page-zt9398__about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-zt9398__about-text {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 15px;
    text-align: justify;
}

/* Game Grid Section */
.page-zt9398__games-section {
    padding: 20px 0;
    margin-bottom: 40px;
}

.page-zt9398__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

.page-zt9398__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.page-zt9398__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-zt9398__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-zt9398__game-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin: 15px 10px 10px;
    font-weight: bold;
}

.page-zt9398__game-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 15px;
    flex-grow: 1; /* Allows description to take available space */
}

/* Promotions Section */
.page-zt9398__promotions-section {
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #222;
    border-radius: 8px;
}

.page-zt9398__promotion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

.page-zt9398__promotion-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.page-zt9398__promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-zt9398__promotion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-zt9398__promotion-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin: 15px 15px 10px;
    font-weight: bold;
}

.page-zt9398__promotion-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 15px;
}

/* Providers and Payments Sections */
.page-zt9398__providers-section,
.page-zt9398__payments-section {
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.page-zt9398__provider-grid,
.page-zt9398__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 15px;
    text-align: center;
}

.page-zt9398__provider-item,
.page-zt9398__payment-item {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    box-sizing: border-box;
}

.page-zt9398__provider-item:hover,
.page-zt9398__payment-item:hover {
    transform: translateY(-3px);
}

.page-zt9398__provider-logo,
.page-zt9398__payment-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
    filter: brightness(0.9); /* Slight adjustment, not color change */
    max-width: 100%;
    box-sizing: border-box;
}

.page-zt9398__provider-name,
.page-zt9398__payment-name {
    color: #ccc;
    font-size: 0.9em;
    font-weight: bold;
}

/* Why Choose Section */
.page-zt9398__why-choose-section {
    padding: 20px 0;
    margin-bottom: 40px;
}

.page-zt9398__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

.page-zt9398__feature-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

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

.page-zt9398__feature-icon {
    width: 120px; 
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

.page-zt9398__feature-title {
    font-size: 1.6em;
    color: #ffcc00;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-zt9398__feature-description {
    font-size: 1em;
    color: #ccc;
}

/* FAQ Section */
.page-zt9398__faq-section {
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #222;
    border-radius: 8px;
}

.page-zt9398__faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.page-zt9398__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    user-select: none;
    transition: background-color 0.3s ease;
}

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

.page-zt9398__faq-question-text {
    margin: 0;
    font-size: 1.1em;
    color: #ffcc00; /* Ensure good contrast for question text */
    pointer-events: none; /* Crucial for click event on parent */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-zt9398__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click event on parent */
    color: #ffcc00;
}

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

.page-zt9398__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    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: #ccc;
}

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

.page-zt9398__faq-answer p {
    margin: 0;
    font-size: 0.95em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Final Call to Action Section */
.page-zt9398__final-cta-section {
    text-align: center;
    padding: 40px 15px;
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-zt9398__final-cta-description {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

.page-zt9398__final-cta-button {
    padding: 16px 40px;
    font-size: 1.2em;
}

/* Floating Register/Login Buttons */
.page-zt9398__floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    box-sizing: border-box;
}

.page-zt9398__floating-button {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

.page-zt9398__floating-button--register {
    background-color: #ffcc00;
    color: #1a1a1a;
    border: 1px solid #ffcc00;
}

.page-zt9398__floating-button--register:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-zt9398__floating-button--login {
    background-color: #444;
    color: #fff;
    border: 1px solid #444;
}

.page-zt9398__floating-button--login:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-zt9398__brand-title {
        font-size: 2.2em;
    }

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

    .page-zt9398__hero-description {
        font-size: 1em;
    }

    .page-zt9398__cta-button {
        width: 100%;
        max-width: 250px;
    }

    .page-zt9398__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    /* List item responsive requirements for game grid, promotion list, provider grid, payment grid, why choose grid */
    .page-zt9398__game-grid,
    .page-zt9398__promotion-list,
    .page-zt9398__provider-grid,
    .page-zt9398__payment-grid,
    .page-zt9398__why-choose-grid {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        padding: 0 10px !important;
        gap: 20px !important;
    }

    .page-zt9398__game-card,
    .page-zt9398__promotion-item,
    .page-zt9398__provider-item,
    .page-zt9398__payment-item,
    .page-zt9398__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
    }

    /* Image responsiveness */
    .page-zt9398 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-zt9398__hero-image-wrapper,
    .page-zt9398__game-image,
    .page-zt9398__promotion-image,
    .page-zt9398__provider-logo,
    .page-zt9398__payment-logo,
    .page-zt9398__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .page-zt9398__floating-buttons {
        flex-direction: row; /* Keep as row */
        padding: 8px 0;
    }

    .page-zt9398__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 3px;
    }

    .page-zt9398__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-zt9398__faq-question-text {
        font-size: 1em;
    }

    .page-zt9398__faq-answer {
        padding: 0 15px;
    }

    .page-zt9398__faq-item.active .page-zt9398__faq-answer {
        padding: 15px !important;
    }
}

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

    .page-zt9398__hero-title {
        font-size: 1.5em;
    }

    .page-zt9398__section-title {
        font-size: 1.5em;
    }
}
  