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

/* Base section styling */
.page-6fg__section-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    padding: 0 15px;
}

.page-6fg__button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.page-6fg__button--primary {
    background-color: #e94560; /* Accent color */
    color: #ffffff;
}

.page-6fg__button--primary:hover {
    background-color: #d6314f;
    transform: translateY(-2px);
}

.page-6fg__button--secondary {
    background-color: #3a3a5a;
    color: #e0e0e0;
    border: 1px solid #5a5a7a;
}

.page-6fg__button--secondary:hover {
    background-color: #4a4a6a;
    transform: translateY(-2px);
}

/* Hero Section */
.page-6fg__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 10px; /* Small top padding, assuming body has header offset */
    box-sizing: border-box;
}

.page-6fg__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    max-width: 100%; /* Responsive image */
}

.page-6fg__hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 90%;
    box-sizing: border-box;
}

.page-6fg__hero-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-6fg__hero-subtitle {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-6fg__hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.page-6fg__about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-6fg__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-6fg__about-content p {
    font-size: 1.1em;
    text-align: left;
    max-width: 800px;
}

.page-6fg__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    width: 100%; /* Ensure it takes full width of its container */
}

/* Games Section */
.page-6fg__games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-6fg__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.page-6fg__game-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.page-6fg__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-6fg__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    max-width: 100%; /* Responsive image */
}

.page-6fg__game-title {
    color: #e94560;
    font-size: 1.4em;
    margin: 15px 10px 10px;
}

.page-6fg__game-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 15px 20px;
    flex-grow: 1; /* Pushes content to bottom */
}

/* Promotions Section */
.page-6fg__promotions-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-6fg__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
}

.page-6fg__promo-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.page-6fg__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-6fg__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
}

.page-6fg__promo-title {
    color: #ffffff;
    font-size: 1.3em;
    margin: 15px 15px 10px;
}

.page-6fg__promo-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 15px;
    flex-grow: 1;
}

.page-6fg__promo-link {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px;
    transition: background-color 0.3s ease;
}

.page-6fg__promo-link:hover {
    background-color: #d6314f;
}

/* Floating Buttons */
.page-6fg__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
    background-color: rgba(42, 42, 74, 0.9); /* Semi-transparent dark background */
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    justify-content: center;
    max-width: 90%;
    box-sizing: border-box;
}

.page-6fg__button--floating {
    padding: 10px 20px;
    font-size: 1.1em;
    min-width: 120px;
    background-color: #e94560;
    color: #ffffff;
}

.page-6fg__button--floating:hover {
    background-color: #d6314f;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-6fg__faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-6fg__faq-container {
    background-color: #2a2a4a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-6fg__faq-item {
    border-bottom: 1px solid #3a3a5a;
}

.page-6fg__faq-item:last-child {
    border-bottom: none;
}

.page-6fg__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-6fg__faq-question:hover {
    background-color: #3a3a5a;
}

.page-6fg__faq-question h3 {
    color: #ffffff;
    font-size: 1.1em;
    margin: 0;
    pointer-events: none; /* Crucial for click event on parent */
}

.page-6fg__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #e94560;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click event on parent */
}

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

.page-6fg__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding matches question */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

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

.page-6fg__faq-answer p {
    margin: 0;
    color: #c0c0c0;
    font-size: 0.95em;
}

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

    .page-6fg__hero-subtitle {
        font-size: 1em;
    }

    .page-6fg__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-6fg__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-6fg__about-section,
    .page-6fg__games-section,
    .page-6fg__promotions-section,
    .page-6fg__faq-section {
        padding: 40px 15px;
    }

    .page-6fg__game-grid,
    .page-6fg__promo-list {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-6fg__game-item,
    .page-6fg__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-6fg__game-description,
    .page-6fg__promo-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fg__promo-image,
    .page-6fg__game-image {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        object-fit: cover; /* Maintain aspect ratio */
    }

    .page-6fg__floating-buttons {
        width: calc(100% - 40px); /* Adjust width for padding */
        bottom: 15px;
        gap: 10px;
        padding: 8px 15px;
    }

    .page-6fg__button--floating {
        flex: 1 1 auto; /* Allow buttons to grow/shrink */
        font-size: 1em;
        min-width: unset;
        width: 100% !important; /* Force full width within flex item */
        box-sizing: border-box !important;
    }

    .page-6fg__faq-question {
        padding: 15px 15px;
    }

    .page-6fg__faq-question h3 {
        font-size: 1em;
    }

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

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