
    /* General Styling for 6ff Bet Page */
.page-6ff-bet {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
    padding-top: 10px; /* Small top padding for visual separation from header, relying on body padding for actual offset */
}

.page-6ff-bet__section-title {
    font-size: 2.5em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-6ff-bet__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
    color: #555;
}

/* Buttons */
.page-6ff-bet__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-6ff-bet__button--primary {
    background-color: #ffcc00; /* Yellow */
    color: #1a1a1a;
}

.page-6ff-bet__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-6ff-bet__button--secondary {
    background-color: transparent;
    color: #ffcc00;
    border: 2px solid #ffcc00;
}

.page-6ff-bet__button--secondary:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Hero Section */
.page-6ff-bet__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height for mobile-first */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    min-height: 400px; /* Minimum height */
}

.page-6ff-bet__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-6ff-bet__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-6ff-bet__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-6ff-bet__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-6ff-bet__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.page-6ff-bet__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Floating Buttons */
.page-6ff-bet__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-6ff-bet__floating-button {
    background-color: #ffcc00; /* Yellow */
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.page-6ff-bet__floating-button:hover {
    transform: translateY(-3px);
}

.page-6ff-bet__floating-button--register {
    background-color: #007bff; /* Blue */
    color: #fff;
}

.page-6ff-bet__floating-button--register:hover {
    background-color: #0056b3;
}


/* About Section */
.page-6ff-bet__about-section {
    padding: 60px 20px;
    background-color: #fff;
}

.page-6ff-bet__image-container--center {
    text-align: center;
    margin-top: 30px;
}

.page-6ff-bet__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensure padding/border is included */
}

/* Games Section */
.page-6ff-bet__games-section {
    padding: 60px 20px;
    background-color: #f0f2f5;
}

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

.page-6ff-bet__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-6ff-bet__game-card:hover {
    transform: translateY(-5px);
}

.page-6ff-bet__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.page-6ff-bet__game-card-title {
    font-size: 1.5em;
    color: #1a1a1a;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-6ff-bet__game-card-text {
    font-size: 1em;
    color: #555;
    padding: 0 15px 20px 15px;
}

/* Promotions Section */
.page-6ff-bet__promotions-section {
    padding: 60px 20px;
    background-color: #fff;
}

.page-6ff-bet__promo-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-6ff-bet__promo-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-6ff-bet__promo-item:hover {
    transform: translateY(-5px);
}

.page-6ff-bet__promo-image {
    width: 100%;
    height: 250px; /* Consistent height */
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.page-6ff-bet__promo-title {
    font-size: 1.4em;
    color: #1a1a1a;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-6ff-bet__promo-text {
    font-size: 0.95em;
    color: #555;
    padding: 0 15px 20px 15px;
}

/* Why Choose Section */
.page-6ff-bet__why-choose-section {
    padding: 60px 20px;
    background-color: #f0f2f5;
}

.page-6ff-bet__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-6ff-bet__why-choose-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
}

.page-6ff-bet__why-choose-icon {
    width: 80px; /* Min 200x200 but this is an icon, let's use 300x300 for placeholder */
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.page-6ff-bet__why-choose-heading {
    font-size: 1.3em;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-6ff-bet__why-choose-text {
    font-size: 0.95em;
    color: #555;
}

/* Providers Section */
.page-6ff-bet__providers-section {
    padding: 60px 20px;
    background-color: #fff;
}

.page-6ff-bet__subsection-title {
    font-size: 2em;
    color: #1a1a1a;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-6ff-bet__logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    align-items: center;
    justify-items: center;
}

.page-6ff-bet__logo {
    max-width: 100%;
    height: 100px; /* Consistent height for logos */
    object-fit: contain;
    padding: 10px;
    background-color: #f0f2f5;
    border-radius: 8px;
    box-sizing: border-box;
}

/* FAQ Section */
.page-6ff-bet__faq-section {
    padding: 60px 20px;
    background-color: #f0f2f5;
}

.page-6ff-bet__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-6ff-bet__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-6ff-bet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #ffcc00; /* Yellow for question background */
    color: #1a1a1a;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.page-6ff-bet__faq-question:hover {
    background-color: #e6b800;
}

.page-6ff-bet__faq-heading {
    margin: 0;
    font-size: 1.2em;
    pointer-events: none; /* Prevent text from blocking click */
    color: #1a1a1a; /* Ensure good contrast */
}

.page-6ff-bet__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent icon from blocking click */
    color: #1a1a1a; /* Ensure good contrast */
}

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

.page-6ff-bet__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: #555;
    background-color: #fff;
}

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

.page-6ff-bet__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Space between answer text and bottom of div */
}


/* Call to Action Section */
.page-6ff-bet__cta-section {
    padding: 60px 20px;
    background-color: #007bff; /* Blue */
    color: #fff;
    text-align: center;
}

.page-6ff-bet__cta-section .page-6ff-bet__section-title {
    color: #fff;
    padding-top: 0;
}

.page-6ff-bet__cta-section .page-6ff-bet__section-description {
    color: #e0e0e0;
}

.page-6ff-bet__cta-section .page-6ff-bet__button {
    background-color: #ffcc00; /* Yellow */
    color: #1a1a1a;
    border: none;
}

.page-6ff-bet__cta-section .page-6ff-bet__button:hover {
    background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-6ff-bet__hero-title {
        font-size: 2.5em;
    }

    .page-6ff-bet__hero-subtitle {
        font-size: 1.2em;
    }

    .page-6ff-bet__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-6ff-bet__section-title {
        font-size: 2em;
        padding-top: 30px;
    }

    .page-6ff-bet__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-6ff-bet__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    /* List items for mobile */
    .page-6ff-bet__game-categories,
    .page-6ff-bet__promo-list,
    .page-6ff-bet__why-choose-grid,
    .page-6ff-bet__logos-grid {
        grid-template-columns: 1fr; /* Stack items */
        padding: 0 15px; /* Add horizontal padding to containers */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-6ff-bet__game-card,
    .page-6ff-bet__promo-item,
    .page-6ff-bet__why-choose-item,
    .page-6ff-bet__logo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding to prevent content being too wide */
    }
    
    .page-6ff-bet__logo {
        height: auto; /* Allow logos to scale height */
        max-height: 80px; /* Cap max height for logos */
        padding: 10px;
    }

    .page-6ff-bet__game-card-image,
    .page-6ff-bet__promo-image,
    .page-6ff-bet__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-6ff-bet__faq-question {
        padding: 15px 20px;
    }

    .page-6ff-bet__faq-heading {
        font-size: 1.1em;
    }

    .page-6ff-bet__faq-answer {
        padding: 0 20px;
    }

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

    /* Ensure text wrapping */
    .page-6ff-bet__game-card-text,
    .page-6ff-bet__promo-text,
    .page-6ff-bet__why-choose-text,
    .page-6ff-bet__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6ff-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .page-6ff-bet__floating-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-6ff-bet__hero-title {
        font-size: 2em;
    }

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

    .page-6ff-bet__section-title {
        font-size: 1.8em;
    }
}
  