
    .page-76win {
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f8f8f8;
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll from padding */
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* General Section Styling */
    .page-76win__section-title {
        text-align: center;
        color: #0056b3; /* Dark blue, good contrast */
        font-size: 2.2em;
        margin-bottom: 40px;
        padding: 0 15px;
        word-wrap: break-word; /* Ensure title wraps */
        overflow-wrap: break-word;
    }
    @media (max-width: 768px) {
        .page-76win__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
    }

    /* Hero Section */
    .page-76win__hero-section {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:betting,casino,76win]') no-repeat center center/cover;
        color: #fff;
        text-align: center;
        padding: 80px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
        position: relative;
        padding-top: 10px; /* Small decorative padding, relying on body for main offset */
    }
    .page-76win__hero-content {
        max-width: 900px;
        width: 100%;
    }
    .page-76win__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: #ffd700; /* Gold color for brand */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 40px;
        color: #eee;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__hero-cta-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    }
    .page-76win__hero-button {
        display: inline-block;
        background-color: #007bff; /* Blue */
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none; /* Ensure no default button border */
        cursor: pointer; /* Indicate clickability */
    }
    .page-76win__hero-button:hover {
        background-color: #0056b3;
    }
    .page-76win__hero-button--secondary {
        background-color: #28a745; /* Green */
    }
    .page-76win__hero-button--secondary:hover {
        background-color: #218838;
    }

    @media (max-width: 768px) {
        .page-76win__hero-section {
            padding: 60px 15px;
            min-height: 300px;
        }
        .page-76win__hero-title {
            font-size: 2.2em;
        }
        .page-76win__hero-subtitle {
            font-size: 1.2em;
        }
        .page-76win__hero-button {
            width: 100%;
            max-width: 250px;
        }
        .page-76win__hero-cta-group {
            flex-direction: column;
            align-items: center;
        }
    }

    /* Game Categories Section */
    .page-76win__games-section,
    .page-76win__promo-section,
    .page-76win__why-choose-us,
    .page-76win__news-section,
    .page-76win__faq-section,
    .page-76win__final-cta-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-76win__game-grid,
    .page-76win__promo-grid,
    .page-76win__features-grid,
    .page-76win__news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-76win__game-item,
    .page-76win__promo-item,
    .page-76win__feature-item,
    .page-76win__news-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* For responsive list item */
    }
    .page-76win__game-item:hover,
    .page-76win__promo-item:hover,
    .page-76win__feature-item:hover,
    .page-76win__news-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-76win__game-image,
    .page-76win__promo-image,
    .page-76win__feature-icon,
    .page-76win__news-image {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%; /* For responsive images */
        object-fit: cover;
    }
    .page-76win__game-image {
        height: 200px; /* Fixed height for consistency */
    }
    .page-76win__promo-image,
    .page-76win__news-image {
        height: 220px;
    }
    .page-76win__feature-icon {
        height: 150px; /* Adjust height for icons, min 200x200px is for placeholder, actual display can be smaller */
        width: 150px;
        margin: 20px auto 10px;
        object-fit: contain; /* Ensure full icon is visible */
    }

    .page-76win__game-title,
    .page-76win__promo-title,
    .page-76win__feature-title,
    .page-76win__news-title {
        font-size: 1.4em;
        color: #0056b3;
        margin: 15px 15px 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__game-description,
    .page-76win__promo-description,
    .page-76win__feature-description,
    .page-76win__news-excerpt {
        font-size: 0.95em;
        color: #555;
        padding: 0 15px 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-76win__promo-read-more,
    .page-76win__news-read-more {
        display: inline-block;
        background-color: #6c757d; /* Grey */
        color: #fff;
        padding: 8px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        font-size: 0.9em;
        cursor: default; /* Not a link, so default cursor */
        user-select: none; /* Prevent selection */
    }
    .page-76win__promo-read-more:hover,
    .page-76win__news-read-more:hover {
        background-color: #5a6268;
    }

    .page-76win__news-content {
        padding: 0 15px;
        text-align: left; /* Align news text left */
    }
    .page-76win__news-date {
        font-size: 0.85em;
        color: #888;
        margin-bottom: 10px;
    }

    @media (max-width: 768px) {
        .page-76win__games-section,
        .page-76win__promo-section,
        .page-76win__why-choose-us,
        .page-76win__news-section,
        .page-76win__faq-section,
        .page-76win__final-cta-section {
            padding: 40px 15px;
        }
        .page-76win__game-grid,
        .page-76win__promo-grid,
        .page-76win__features-grid,
        .page-76win__news-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
        }
        .page-76win__game-item,
        .page-76win__promo-item,
        .page-76win__feature-item,
        .page-76win__news-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important; /* Adjust padding if needed, but ensure box-sizing */
            box-sizing: border-box !important;
        }
        .page-76win__game-title,
        .page-76win__promo-title,
        .page-76win__feature-title,
        .page-76win__news-title {
            font-size: 1.2em;
        }
        .page-76win__game-description,
        .page-76win__promo-description,
        .page-76win__feature-description,
        .page-76win__news-excerpt {
            font-size: 0.9em;
        }
        .page-76win__game-image,
        .page-76win__promo-image,
        .page-76win__feature-icon,
        .page-76win__news-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-76win__news-content {
            padding: 0 10px;
        }
    }

    /* FAQ Section */
    .page-76win__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }
    .page-76win__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box; /* For responsive list item */
    }
    .page-76win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        font-size: 1.1em;
        font-weight: bold;
        color: #0056b3;
        cursor: pointer;
        user-select: none;
        background-color: #f0f8ff; /* Light blue background for questions */
        transition: background-color 0.3s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__faq-question:hover {
        background-color: #e0f2ff;
    }
    .page-76win__faq-question-text {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click event on parent div */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent div */
    }
    .page-76win__faq-item.active .page-76win__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
    }
    .page-76win__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #333;
        font-size: 0.95em;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__faq-item.active .page-76win__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .page-76win__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-76win__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-76win__faq-answer {
            padding: 0 15px;
            font-size: 0.9em;
        }
        .page-76win__faq-item.active .page-76win__faq-answer {
            padding: 15px !important;
        }
    }

    /* Final CTA Section */
    .page-76win__final-cta-section {
        text-align: center;
        background-color: #007bff;
        color: #fff;
        padding: 80px 20px;
    }
    .page-76win__final-cta-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-76win__final-cta-button {
        display: inline-block;
        background-color: #ffc107; /* Yellow */
        color: #333;
        padding: 15px 40px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    .page-76win__final-cta-button:hover {
        background-color: #e0a800;
    }
    @media (max-width: 768px) {
        .page-76win__final-cta-section {
            padding: 50px 15px;
        }
        .page-76win__final-cta-description {
            font-size: 1.1em;
        }
        .page-76win__final-cta-button {
            width: 100%;
            max-width: 280px;
        }
    }
  