
    /* General page styling */
.page-678-be {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on some elements */
}

.page-678-be__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
}

.page-678-be__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-678-be__highlight {
    color: #f0a500;
    font-weight: bold;
}

/* Hero Section */
.page-678-be__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px 20px; /* 10px top for header offset, then standard padding */
    min-height: 70vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1c);
}

.page-678-be__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-678-be__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 50px; /* Ensure content is below any potential sticky header */
}

.page-678-be__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-678-be__hero-description {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-678-be__hero-button,
.page-678-be__cta-button {
    display: inline-block;
    background-color: #f0a500;
    color: #1a1a2e;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-678-be__hero-button:hover,
.page-678-be__cta-button:hover {
    background-color: #ffc107;
    transform: translateY(-3px);
}

/* About Section */
.page-678-be__about-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

/* Features Section */
.page-678-be__features-section {
    padding: 60px 20px;
    background-color: #0f0f1c;
}

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

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

.page-678-be__feature-item:hover {
    transform: translateY(-10px);
}

.page-678-be__feature-icon {
    width: 200px; /* Minimum size requirement */
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-678-be__feature-title {
    font-size: 1.5em;
    color: #f0a500;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-678-be__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* Games Section */
.page-678-be__games-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

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

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

.page-678-be__game-card:hover {
    transform: translateY(-10px);
}

.page-678-be__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    max-width: 100%; /* Ensure responsiveness */
}

.page-678-be__game-title {
    font-size: 1.4em;
    color: #f0a500;
    margin: 15px 10px 5px 10px;
    font-weight: bold;
}

.page-678-be__game-description {
    font-size: 0.95em;
    color: #e0e0e0;
    padding: 0 10px 20px 10px;
}

/* FAQ Section */
.page-678-be__faq-section {
    padding: 60px 20px;
    background-color: #0f0f1c;
}

.page-678-be__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-678-be__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3b3b6b;
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-678-be__faq-question:hover {
    background-color: #4c4c82;
}

.page-678-be__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #f0a500;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-678-be__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click event */
    color: #ffffff;
}

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

.page-678-be__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #e0e0e0;
}

.page-678-be__faq-item.active .page-678-be__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-678-be__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Add some spacing if multiple paragraphs */
}

/* CTA Section */
.page-678-be__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #1a1a2e;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-678-be__hero-title {
        font-size: 3em;
    }
    .page-678-be__hero-description {
        font-size: 1.2em;
    }
    .page-678-be__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-678-be__hero-section {
        padding-top: 10px;
        min-height: 60vh;
    }
    .page-678-be__hero-content {
        margin-top: 30px;
    }
    .page-678-be__hero-title {
        font-size: 2.2em;
    }
    .page-678-be__hero-description {
        font-size: 1.1em;
    }
    .page-678-be__hero-button,
    .page-678-be__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-678-be__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-678-be__text-content {
        font-size: 1em;
        padding: 0 15px;
    }
    .page-678-be__features-grid,
    .page-678-be__games-grid {
        grid-template-columns: 1fr; /* Stack items */
        padding: 0 15px; /* Add padding to container */
    }

    .page-678-be__feature-item,
    .page-678-be__game-card {
        margin: 0 auto; /* Center single column items */
        max-width: 400px; /* Limit width for single column */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* List item specific responsiveness for FAQ */
    .page-678-be__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-678-be__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-678-be__faq-question {
        padding: 15px 20px;
    }
    .page-678-be__faq-title {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-678-be__faq-answer {
        padding: 0 20px;
    }
    .page-678-be__faq-item.active .page-678-be__faq-answer {
        padding: 15px 20px !important;
    }

    /* Image responsiveness */
    .page-678-be__hero-image,
    .page-678-be__feature-icon,
    .page-678-be__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-678-be__hero-title {
        font-size: 1.8em;
    }
    .page-678-be__hero-description {
        font-size: 1em;
    }
    .page-678-be__section-title {
        font-size: 1.6em;
    }
    .page-678-be__hero-button,
    .page-678-be__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-678-be__feature-title,
    .page-678-be__game-title {
        font-size: 1.3em;
    }
    .page-678-be__faq-title {
        font-size: 1em;
    }
}
  