
    .page-p-789 {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for fixed buttons */
}

/* Fixed Nav Offset: Assuming body handles the main offset, this is just for visual spacing */
.page-p-789__hero-section {
    padding-top: 10px; /* Small decorative top padding */
}

.page-p-789__section-title {
    text-align: center;
    color: #ffcc00; /* Gold accent */
    font-size: 2.5em;
    margin-bottom: 40px;
    padding-top: 20px;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

.page-p-789__main-title {
    text-align: center;
    color: #ffcc00;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

.page-p-789__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    border-bottom: 5px solid #ffcc00;
}

.page-p-789__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
}

.page-p-789__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-p-789__hero-cta {
    margin-top: 20px;
}

.page-p-789__download-button {
    display: inline-block;
    background-color: #007bff; /* Blue accent */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-p-789__download-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-p-789__hero-image-container {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 40px;
}

.page-p-789__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-p-789__features-section {
    padding: 60px 20px;
    background-color: #24243e;
}

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

.page-p-789__feature-item {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-p-789__feature-item:hover {
    transform: translateY(-5px);
}

.page-p-789__feature-icon {
    max-width: 200px; /* Min size is 200x200 */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure responsiveness */
}

.page-p-789__feature-title {
    color: #ffcc00;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-p-789__feature-description {
    color: #cccccc;
    font-size: 1.05em;
}

.page-p-789__games-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-p-789__games-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #cccccc;
}

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

.page-p-789__game-card {
    background-color: #24243e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-p-789__game-card:hover {
    transform: translateY(-5px);
}

.page-p-789__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    max-width: 100%; /* Ensure responsiveness */
}

.page-p-789__game-title {
    color: #ffcc00;
    font-size: 1.5em;
    margin: 20px 0 10px;
}

.page-p-789__game-description {
    color: #cccccc;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-p-789__promo-section {
    padding: 60px 20px;
    background-color: #24243e;
}

.page-p-789__promo-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-p-789__promo-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}

.page-p-789__promo-text {
    flex: 1;
    color: #cccccc;
    font-size: 1.1em;
}

.page-p-789__promo-text p {
    margin-bottom: 15px;
}

.page-p-789__promo-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
    box-sizing: border-box; /* Crucial for list items */
}

.page-p-789__promo-list li {
    margin-bottom: 10px;
    box-sizing: border-box; /* Crucial for list items */
    word-wrap: break-word !important; /* Ensure content wraps */
    overflow-wrap: break-word !important; /* Ensure content wraps */
}

.page-p-789__promo-button {
    display: inline-block;
    background-color: #ffcc00; /* Gold accent */
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-p-789__promo-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

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

.page-p-789__faq-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-p-789__faq-item {
    background-color: #24243e;
    border-bottom: 1px solid #3a3a5e;
}

.page-p-789__faq-item:last-child {
    border-bottom: none;
}

.page-p-789__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    color: #ffcc00;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-p-789__faq-question:hover {
    background-color: #3a3a5e;
}

.page-p-789__faq-question-text {
    margin: 0;
    flex-grow: 1;
    pointer-events: none; /* Prevent h3 from blocking click on parent div */
    color: inherit; /* Ensure color is inherited from parent question */
}

.page-p-789__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click on parent div */
}

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

.page-p-789__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;
    color: #cccccc;
    font-size: 1.05em;
}

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

.page-p-789__faq-answer p {
    margin: 0;
}

/* Fixed Register/Login Buttons */
.page-p-789__fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: rgba(26, 26, 46, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    box-sizing: border-box;
}

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

.page-p-789__register-button {
    background-color: #ffcc00;
    color: #1a1a2e;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.4);
}

.page-p-789__register-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-p-789__login-button {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.page-p-789__login-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-p-789__main-title {
        font-size: 2em;
    }

    .page-p-789__section-title {
        font-size: 2em;
    }

    .page-p-789__hero-content {
        margin-bottom: 20px;
    }

    .page-p-789__hero-description {
        font-size: 1em;
    }

    .page-p-789__download-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .page-p-789__features-grid,
    .page-p-789__games-grid {
        grid-template-columns: 1fr;
    }

    .page-p-789__promo-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-p-789__promo-image {
        max-width: 100%;
    }

    .page-p-789__promo-text {
        font-size: 1em;
        text-align: center;
    }

    .page-p-789__promo-list {
        margin-left: 0 !important;
        padding-left: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: left;
    }

    .page-p-789__promo-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Adjust if needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-p-789__fixed-buttons {
        padding: 8px 0;
    }

    .page-p-789__fixed-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 5px;
    }

    /* Images responsiveness for mobile */
    .page-p-789__hero-image,
    .page-p-789__feature-icon,
    .page-p-789__game-image,
    .page-p-789__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-p-789__hero-image-container,
    .page-p-789__promo-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* FAQ Mobile adjustments */
    .page-p-789__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-p-789__faq-answer {
        padding: 0 20px;
        font-size: 1em;
    }

    .page-p-789__faq-item.active .page-p-789__faq-answer {
        padding: 15px 20px !important;
    }
}

@media (max-width: 480px) {
    .page-p-789__main-title {
        font-size: 1.8em;
    }
    .page-p-789__section-title {
        font-size: 1.8em;
    }
    .page-p-789__fixed-button {
        font-size: 0.9em;
        padding: 8px 0;
    }
    .page-p-789__faq-question {
        font-size: 1em;
    }
}
  