
    /* Base styles for the page */
.page-fc-68 {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
}

.page-fc-68__section-title {
    font-size: 2.5em;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-fc-68__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ffd700;
    margin: 10px auto 0;
}

/* Hero Section */
.page-fc-68__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* 10px top for decoration, body handles main offset */
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.page-fc-68__hero-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fc-68__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.page-fc-68__hero-image:hover {
    transform: scale(1.02);
}

.page-fc-68__hero-content {
    max-width: 900px;
    width: 100%;
    z-index: 2;
}

.page-fc-68__main-title {
    font-size: 3.2em;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fc-68__hero-description {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fc-68__hero-button {
    display: inline-block;
    background-color: #ffd700;
    color: #1a1a1a;
    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;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fc-68__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* About Section */
.page-fc-68__about-section {
    padding: 60px 20px;
    background-color: #222222;
    text-align: center;
}

.page-fc-68__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.page-fc-68__about-text {
    flex: 1;
    max-width: 700px;
}

.page-fc-68__about-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-fc-68__about-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fc-68__about-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Game Categories Section */
.page-fc-68__games-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

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

.page-fc-68__game-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fc-68__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-fc-68__game-card-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-fc-68__game-card-title {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fc-68__game-card-description {
    font-size: 1em;
    color: #b0b0b0;
    padding: 0 15px;
}

/* Promotions Section */
.page-fc-68__promotions-section {
    padding: 60px 20px;
    background-color: #222222;
}

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

.page-fc-68__promo-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fc-68__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-fc-68__promo-card-image {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-fc-68__promo-card-title {
    font-size: 1.4em;
    color: #ffd700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fc-68__promo-card-description {
    font-size: 1em;
    color: #b0b0b0;
    padding: 0 15px;
}

/* Call to Action Button (general) */
.page-fc-68__cta-section {
    text-align: center;
    margin-top: 40px;
}

.page-fc-68__cta-button {
    display: inline-block;
    background-color: #00aaff; /* A contrasting blue for secondary CTA */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fc-68__cta-button:hover {
    background-color: #0088cc;
    transform: translateY(-3px);
}

/* Game Providers Section */
.page-fc-68__providers-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.page-fc-68__provider-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-fc-68__provider-item {
    background-color: #2c2c2c;
    color: #ffd700;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
    word-wrap: break-word; /* Ensure text wraps */
}

.page-fc-68__provider-item:hover {
    background-color: #ffd700;
    color: #1a1a1a;
}

/* Payment Methods Section */
.page-fc-68__payments-section {
    padding: 60px 20px;
    background-color: #222222;
    text-align: center;
}

.page-fc-68__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-fc-68__payment-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px; /* Ensure sufficient height */
}

.page-fc-68__payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-fc-68__payment-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
    display: block;
    object-fit: contain;
}

.page-fc-68__payment-item p {
    color: #f0f0f0;
    font-weight: bold;
    font-size: 1.1em;
}

/* FAQ Section */
.page-fc-68__faq-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.page-fc-68__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-fc-68__faq-item {
    background-color: #2c2c2c;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-fc-68__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3a3a3a;
    transition: background-color 0.3s ease;
}

.page-fc-68__faq-question:hover {
    background-color: #4a4a4a;
}

.page-fc-68__faq-question-title {
    font-size: 1.25em;
    color: #f0f0f0;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-fc-68__faq-toggle {
    font-size: 1.8em;
    color: #ffd700;
    margin-left: 20px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click on parent div */
}

.page-fc-68__faq-item.active .page-fc-68__faq-toggle {
    transform: rotate(45deg);
}

.page-fc-68__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-fc-68__faq-item.active .page-fc-68__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

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

/* Final Call to Action Section */
.page-fc-68__final-cta-section {
    padding: 60px 20px;
    background-color: #2c2c2c;
    text-align: center;
}

.page-fc-68__final-cta-description {
    font-size: 1.2em;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-fc-68__final-cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fc-68__final-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
}

/* Floating Register/Login Buttons */
.page-fc-68__floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    gap: 10px;
    box-sizing: border-box;
}

.page-fc-68__floating-button {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #1a1a1a; /* Default to dark text */
    max-width: 48%; /* To ensure two buttons fit with a gap */
    box-sizing: border-box;
}

.page-fc-68__floating-register {
    background-color: #ffd700;
}

.page-fc-68__floating-register:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-fc-68__floating-login {
    background-color: #00aaff; /* A distinct color for login */
    color: #ffffff; /* White text for blue button */
}

.page-fc-68__floating-login:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (min-width: 769px) {
    .page-fc-68__about-content {
        flex-direction: row;
        text-align: left;
    }

    .page-fc-68__about-text {
        padding-right: 40px;
    }

    .page-fc-68__hero-section {
        padding: 10px 40px 80px;
    }

    .page-fc-68__main-title {
        font-size: 4em;
    }

    .page-fc-68__hero-description {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-fc-68__section-title {
        font-size: 2em;
    }

    .page-fc-68__main-title {
        font-size: 2.5em;
    }

    .page-fc-68__hero-description {
        font-size: 1.1em;
    }

    .page-fc-68__hero-button,
    .page-fc-68__cta-button,
    .page-fc-68__final-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-fc-68__game-grid,
    .page-fc-68__promo-grid,
    .page-fc-68__payment-grid {
        grid-template-columns: 1fr;
    }

    .page-fc-68__game-card-image,
    .page-fc-68__promo-card-image {
        height: 180px; /* Adjust height for smaller screens */
    }

    /* List item mobile responsiveness */
    .page-fc-68__provider-list,
    .page-fc-68__payment-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-fc-68__provider-item,
    .page-fc-68__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-fc-68__floating-buttons {
        padding: 8px 10px;
        gap: 8px;
    }

    .page-fc-68__floating-button {
        padding: 10px 0;
        font-size: 1em;
    }

    .page-fc-68__faq-question {
        padding: 15px 20px;
    }

    .page-fc-68__faq-question-title {
        font-size: 1.1em;
    }

    .page-fc-68__faq-toggle {
        font-size: 1.5em;
    }

    .page-fc-68__faq-answer {
        padding: 0 20px;
    }

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