
    /* General styling for the page */
.page-78ber {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-bottom: 100px; /* Space for floating buttons */
    padding-top: 10px; /* Small padding top, assuming body has header offset */
}

/* Section styling */
.page-78ber__section-title {
    font-size: 2.2em;
    color: #e94560; /* Accent color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-78ber__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

/* Hero Section */
.page-78ber__hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #e94560;
}

.page-78ber__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-78ber__hero-title {
    font-size: 3em;
    color: #f0f0f0;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-78ber__hero-description {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-78ber__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Games Section */
.page-78ber__feature-games {
    padding: 60px 20px;
    background-color: #0f3460;
}

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

.page-78ber__game-item {
    background-color: #2c2c54;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-78ber__game-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-78ber__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-78ber__game-title {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-78ber__game-text {
    font-size: 1em;
    color: #cccccc;
}

/* Promotions Section */
.page-78ber__promotions-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

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

.page-78ber__promo-item {
    background-color: #2c2c54;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px;
    text-align: center;
}

.page-78ber__promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-78ber__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-78ber__promo-title {
    font-size: 1.6em;
    color: #f0f0f0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-78ber__promo-text {
    font-size: 1em;
    color: #cccccc;
}

/* App Download Section */
.page-78ber__app-download {
    padding: 60px 20px;
    background-color: #0f3460;
    text-align: center;
}

.page-78ber__download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-78ber__download-btn {
    background-color: #e94560;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-78ber__download-btn:hover {
    background-color: #c93550;
    transform: translateY(-3px);
}

.page-78ber__app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-78ber__faq-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-78ber__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-78ber__faq-item {
    background-color: #2c2c54;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-78ber__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #3f3f74;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-78ber__faq-question:hover {
    background-color: #4a4a8c;
}

.page-78ber__faq-question-title {
    font-size: 1.3em;
    color: #f0f0f0;
    margin: 0;
    font-weight: 600;
    pointer-events: none; /* Prevents click event on h3 itself */
}

.page-78ber__faq-toggle {
    font-size: 1.8em;
    color: #e94560;
    font-weight: bold;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevents click event on toggle itself */
}

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

.page-78ber__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding matches question sides */
    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;
    font-size: 1em;
}

.page-78ber__faq-item.active .page-78ber__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important; /* Ensure content padding */
    opacity: 1;
}

.page-78ber__faq-answer p {
    margin: 0;
}

/* Floating Buttons */
.page-78ber__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: calc(100% - 40px); /* Adjust width for padding */
    max-width: 400px;
    box-sizing: border-box;
}

.page-78ber__float-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: none; /* Ensure button has no default border */
}

.page-78ber__float-btn--register {
    background-color: #e94560; /* Red accent */
    color: #ffffff;
}

.page-78ber__float-btn--register:hover {
    background-color: #c93550;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}

.page-78ber__float-btn--login {
    background-color: #3f3f74; /* Darker accent */
    color: #ffffff;
}

.page-78ber__float-btn--login:hover {
    background-color: #4a4a8c;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-78ber__section-title {
        font-size: 1.8em;
    }

    .page-78ber__hero-title {
        font-size: 2.2em;
    }

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

    .page-78ber__game-grid,
    .page-78ber__promo-list {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    /* List item specific responsive requirements */
    .page-78ber__game-item,
    .page-78ber__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Slightly reduced padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .page-78ber__game-item p,
    .page-78ber__promo-item p {
        word-break: break-word !important;
    }

    /* Container for lists */
    .page-78ber__game-grid,
    .page-78ber__promo-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding to match outer sections */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-78ber__download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-78ber__download-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-78ber__faq-question {
        padding: 15px 20px;
    }

    .page-78ber__faq-question-title {
        font-size: 1.1em;
    }

    .page-78ber__faq-answer {
        padding: 0 20px;
    }

    .page-78ber__faq-item.active .page-78ber__faq-answer {
        padding: 15px 20px !important;
    }

    .page-78ber__floating-buttons {
        width: calc(100% - 30px); /* Smaller padding on mobile */
        gap: 10px;
        bottom: 15px;
    }
    .page-78ber__float-btn {
        padding: 12px 15px;
        font-size: 1em;
    }

    .page-78ber {
        padding-bottom: 80px; /* Adjust for smaller floating buttons */
    }
}

@media (max-width: 480px) {
    .page-78ber__hero-title {
        font-size: 1.8em;
    }
    .page-78ber__section-title {
        font-size: 1.5em;
    }
    .page-78ber__game-title, .page-78ber__promo-title {
        font-size: 1.4em;
    }
}
  