
    /* General styles for the 77kibg88 page */
.page-77kibg88 {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fixed Floating Buttons */
.page-77kibg88__fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
}

.page-77kibg88__button {
    flex: 1;
    padding: 12px 15px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff; /* High contrast */
    box-sizing: border-box;
}

.page-77kibg88__button--register {
    background-color: #e94560; /* Reddish pink */
}

.page-77kibg88__button--register:hover {
    background-color: #d13a53;
    transform: translateY(-2px);
}

.page-77kibg88__button--login {
    background-color: #f08a5d; /* Orange */
}

.page-77kibg88__button--login:hover {
    background-color: #d87b52;
    transform: translateY(-2px);
}

/* Highlight text */
.page-77kibg88__highlight {
    color: #a8df65; /* Greenish yellow for highlight */
    font-weight: bold;
}

/* Section styling */
.page-77kibg88__hero-section,
.page-77kibg88__games-section,
.page-77kibg88__promo-section,
.page-77kibg88__about-section,
.page-77kibg88__faq-section,
.page-77kibg88__payments-section,
.page-77kibg88__providers-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.page-77kibg88__hero-section {
    padding-top: 10px; /* Assuming body has header offset */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Make hero section tall */
    background: linear-gradient(135deg, #1a1a2e 0%, #2c0e3a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-77kibg88__hero-content {
    max-width: 800px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-77kibg88__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #a8df65; /* High contrast */
    line-height: 1.2;
    font-weight: 700;
}

.page-77kibg88__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-77kibg88__hero-cta {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-77kibg88__hero-cta:hover {
    background-color: #d13a53;
    transform: translateY(-3px);
}

.page-77kibg88__hero-image-container {
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 0;
}

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

.page-77kibg88__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #a8df65; /* High contrast */
    font-weight: 700;
}

.page-77kibg88__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Game Grid */
.page-77kibg88__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

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

.page-77kibg88__game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-77kibg88__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
    width: 100%;
    min-height: 150px; /* Ensure minimum height for game images */
}

.page-77kibg88__game-title {
    font-size: 1.5em;
    color: #f08a5d; /* High contrast */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-77kibg88__game-text {
    font-size: 0.95em;
    color: #cccccc;
}

/* Promotions Section */
.page-77kibg88__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.page-77kibg88__promo-card {
    background-color: #2a2a4a;
    border-radius: 15px;
    padding-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-77kibg88__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-77kibg88__promo-image {
    max-width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover;
    width: 100%;
    min-height: 200px; /* Ensure minimum height for promo images */
}

.page-77kibg88__promo-title {
    font-size: 1.4em;
    color: #e94560; /* High contrast */
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 600;
}

.page-77kibg88__promo-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px;
}

.page-77kibg88__button--view-all {
    display: inline-block;
    background-color: #a8df65;
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-77kibg88__button--view-all:hover {
    background-color: #92c75a;
    transform: translateY(-2px);
}

/* About Section */
.page-77kibg88__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.page-77kibg88__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    width: 100%;
    max-width: 600px;
}

.page-77kibg88__about-text-container {
    max-width: 800px;
}

.page-77kibg88__about-text-container p {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1.05em;
}

/* FAQ Section */
.page-77kibg88__faq-list {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-77kibg88__faq-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-77kibg88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #3a3a5a; /* Slightly lighter for question */
    color: #a8df65; /* High contrast */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-77kibg88__faq-question:hover {
    background-color: #4a4a6a;
}

.page-77kibg88__faq-question-text {
    margin: 0;
    pointer-events: none; /* Crucial for click handler */
    color: inherit; /* Inherit color from parent */
    font-size: 1em; /* Reset h3 default font size */
    font-weight: inherit; /* Inherit font weight */
}

.page-77kibg88__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    pointer-events: none; /* Crucial for click handler */
    transition: transform 0.3s ease;
}

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

.page-77kibg88__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;
    color: #cccccc;
}

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

.page-77kibg88__faq-answer p {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.page-77kibg88__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-77kibg88__faq-answer a {
    color: #e94560;
    text-decoration: none;
}

.page-77kibg88__faq-answer a:hover {
    text-decoration: underline;
}

/* Payment & Providers Sections */
.page-77kibg88__payment-logos,
.page-77kibg88__provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.page-77kibg88__payment-link,
.page-77kibg88__provider-link {
    display: inline-block;
    background-color: #2a2a4a;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 140px; /* Fixed width for logos */
    height: 70px; /* Fixed height for logos */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.page-77kibg88__payment-link:hover,
.page-77kibg88__provider-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-77kibg88__payment-logo,
.page-77kibg88__provider-logo {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    width: auto; /* Allow image to scale within the fixed container */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-77kibg88__hero-title {
        font-size: 2.5em;
    }
    .page-77kibg88__section-title {
        font-size: 2em;
    }
    .page-77kibg88__game-grid,
    .page-77kibg88__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-77kibg88__fixed-buttons {
        gap: 10px;
        width: 95%;
        max-width: none;
    }
    .page-77kibg88__button {
        padding: 10px 12px;
        font-size: 1em;
    }

    .page-77kibg88__hero-section {
        min-height: 70vh;
        padding-top: 10px; /* Ensure consistency */
    }
    .page-77kibg88__hero-title {
        font-size: 2em;
    }
    .page-77kibg88__hero-description {
        font-size: 1em;
    }
    .page-77kibg88__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-77kibg88__section-title {
        font-size: 1.8em;
    }
    .page-77kibg88__section-description {
        font-size: 0.95em;
    }

    .page-77kibg88__game-grid,
    .page-77kibg88__promo-grid {
        grid-template-columns: 1fr; /* Single column layout for games/promos */
    }

    .page-77kibg88__game-item,
    .page-77kibg88__promo-card {
        padding: 20px;
    }

    .page-77kibg88__about-content {
        flex-direction: column;
        text-align: center;
    }

    .page-77kibg88__about-text-container p {
        font-size: 0.9em;
    }

    /* List item responsive requirements for game-grid, promo-grid, payment/provider logos */
    .page-77kibg88__game-item,
    .page-77kibg88__promo-card,
    .page-77kibg88__payment-link,
    .page-77kibg88__provider-link,
    .page-77kibg88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-77kibg88__game-grid,
    .page-77kibg88__promo-grid,
    .page-77kibg88__payment-logos,
    .page-77kibg88__provider-logos,
    .page-77kibg88__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-77kibg88__payment-link,
    .page-77kibg88__provider-link {
        width: calc(50% - 15px); /* Two logos per row with gap */
        height: 60px;
    }

    .page-77kibg88__faq-question {
        padding: 15px;
        font-size: 1em;
    }
    .page-77kibg88__faq-answer {
        padding: 0 15px;
    }
    .page-77kibg88__faq-item.active .page-77kibg88__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-77kibg88__hero-title {
        font-size: 1.8em;
    }
    .page-77kibg88__section-title {
        font-size: 1.5em;
    }
    .page-77kibg88__payment-link,
    .page-77kibg88__provider-link {
        width: calc(100% - 15px); /* Single logo per row */
    }
}
  