
    /* CSS Styles for shbet80 page */
    :root {
        --page-shbet80__primary-color: #e44d26; /* A vibrant orange-red, good for action */
        --page-shbet80__secondary-color: #333;
        --page-shbet80__text-color: #333;
        --page-shbet80__light-text-color: #f8f8f8;
        --page-shbet80__background-light: #f4f4f4;
        --page-shbet80__background-dark: #2a2a2a;
        --page-shbet80__border-color: #ddd;
        --page-shbet80__accent-color: #ffcc00; /* Gold for highlights */
    }

    .page-shbet80 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-shbet80__text-color);
        background-color: var(--page-shbet80__background-light);
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Hero Section */
    .page-shbet80__hero-section {
        position: relative;
        width: 100%;
        background-color: var(--page-shbet80__background-dark);
        color: var(--page-shbet80__light-text-color);
        text-align: center;
        padding: 10px 0 40px; /* Added padding-top for fixed header */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-shbet80__hero-background {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: cover;
        opacity: 0.7;
        pointer-events: none;
    }

    .page-shbet80__hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 90%;
        max-width: 800px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

    .page-shbet80__hero-title {
        font-size: 2.5em;
        margin-bottom: 10px;
        color: var(--page-shbet80__accent-color);
    }

    .page-shbet80__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
        color: #fff;
    }

    .page-shbet80__cta-button {
        display: inline-block;
        background-color: var(--page-shbet80__primary-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-shbet80__cta-button:hover {
        background-color: #d63e18;
        transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-shbet80__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
        background-color: var(--page-shbet80__primary-color);
        color: var(--page-shbet80__light-text-color);
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 1em;
        line-height: 1.2;
        border: none;
        cursor: pointer;
    }

    .page-shbet80__floating-button:hover {
        background-color: #d63e18;
        transform: scale(1.05);
    }

    /* General Section Styling */
    .page-shbet80__section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
    }

    .page-shbet80__section-dark {
        background-color: var(--page-shbet80__background-dark);
        color: var(--page-shbet80__light-text-color);
    }

    .page-shbet80__section-title {
        font-size: 2em;
        color: var(--page-shbet80__primary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-shbet80__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--page-shbet80__accent-color);
        border-radius: 2px;
    }

    .page-shbet80__section-dark .page-shbet80__section-title {
        color: var(--page-shbet80__accent-color);
    }

    .page-shbet80__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    /* Game Categories */
    .page-shbet80__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-shbet80__game-card {
        background-color: var(--page-shbet80__background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
    }

    .page-shbet80__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

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

    .page-shbet80__game-card-title {
        font-size: 1.4em;
        color: var(--page-shbet80__primary-color);
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-shbet80__game-card-description {
        font-size: 0.95em;
        color: var(--page-shbet80__secondary-color);
        padding: 0 15px;
        margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-shbet80__promotion-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-shbet80__promotion-item {
        background-color: #fff;
        border: 1px solid var(--page-shbet80__border-color);
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: flex-start;
    }

    .page-shbet80__promotion-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 50%;
        background-color: var(--page-shbet80__primary-color);
        color: var(--page-shbet80__light-text-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8em;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .page-shbet80__promotion-content h3 {
        color: var(--page-shbet80__primary-color);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .page-shbet80__promotion-content p {
        margin-bottom: 10px;
        font-size: 0.95em;
    }

    /* How-to Guide */
    .page-shbet80__guide-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .page-shbet80__step-item {
        display: flex;
        align-items: center;
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-shbet80__step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        background-color: var(--page-shbet80__accent-color);
        color: var(--page-shbet80__text-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2em;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .page-shbet80__step-content h3 {
        color: var(--page-shbet80__primary-color);
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.2em;
    }

    .page-shbet80__step-content p {
        font-size: 0.9em;
        margin-bottom: 0;
    }

    /* Why Choose Us */
    .page-shbet80__advantage-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-shbet80__advantage-card {
        background-color: var(--page-shbet80__background-light);
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .page-shbet80__advantage-card:hover {
        transform: translateY(-5px);
    }

    .page-shbet80__advantage-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        display: block;
        max-width: 100%;
        height: auto;
    }

    .page-shbet80__advantage-card h3 {
        color: var(--page-shbet80__primary-color);
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .page-shbet80__advantage-card p {
        font-size: 0.95em;
        color: var(--page-shbet80__secondary-color);
    }

    /* FAQ Section */
    .page-shbet80__faq-section {
        background-color: #fff;
        padding: 40px 20px;
        margin: 0 auto 20px;
        max-width: 1200px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-shbet80__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-shbet80__faq-item {
        border-bottom: 1px solid var(--page-shbet80__border-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .page-shbet80__faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .page-shbet80__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 15px;
        background-color: var(--page-shbet80__background-light);
        border-radius: 5px;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-shbet80__faq-question:hover {
        background-color: #e9e9e9;
    }

    .page-shbet80__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-shbet80__text-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
    }

    .page-shbet80__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-shbet80__primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-shbet80__faq-item.active .page-shbet80__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        color: var(--page-shbet80__accent-color);
    }

    .page-shbet80__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #fcfcfc;
        border-top: 1px dashed var(--page-shbet80__border-color);
        border-radius: 0 0 5px 5px;
    }

    .page-shbet80__faq-item.active .page-shbet80__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important; /* Final padding when open */
        opacity: 1;
    }

    .page-shbet80__faq-answer p {
        margin: 0;
        font-size: 0.95em;
        color: var(--page-shbet80__secondary-color);
    }


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

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

        .page-shbet80__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-shbet80__floating-button {
            bottom: 15px;
            right: 15px;
            padding: 10px 20px;
            font-size: 0.9em;
        }

        .page-shbet80__section {
            padding: 30px 15px;
            margin-bottom: 15px;
        }

        .page-shbet80__section-title {
            font-size: 1.7em;
            margin-bottom: 25px;
        }

        .page-shbet80__text-content {
            font-size: 1em;
        }

        .page-shbet80__game-grid {
            grid-template-columns: 1fr;
        }

        .page-shbet80__game-card-title {
            font-size: 1.2em;
        }

        .page-shbet80__game-card-description {
            font-size: 0.9em;
        }

        .page-shbet80__promotion-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-shbet80__promotion-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }

        .page-shbet80__step-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .page-shbet80__step-number {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .page-shbet80__advantage-card {
            padding: 20px;
        }

        .page-shbet80__faq-question {
            padding: 10px;
        }

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

        .page-shbet80__faq-toggle {
            font-size: 1.5em;
        }

        .page-shbet80__faq-answer {
            padding: 0 10px;
        }

        .page-shbet80__faq-item.active .page-shbet80__faq-answer {
            padding: 15px 10px !important;
        }

        /* Image responsiveness */
        .page-shbet80 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .page-shbet80__hero-section {
            padding-top: 10px; /* Adjust for mobile fixed header */
        }
    }

    @media (max-width: 480px) {
        .page-shbet80__hero-content {
            padding: 15px;
        }
        .page-shbet80__hero-title {
            font-size: 1.5em;
        }
        .page-shbet80__hero-subtitle {
            font-size: 0.9em;
        }
        .page-shbet80__floating-button {
            font-size: 0.8em;
            padding: 8px 15px;
        }
    }
  