
    .page-97win97 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8f8f8;
        padding-top: 10px; /* Small top padding, body already has header offset */
        overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
    }

    .page-97win97__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .page-97win97__section-title {
        font-size: 2.5em;
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 700;
    }

    .page-97win97__text-content {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }

    .page-97win97__image-center {
        text-align: center;
        margin-bottom: 30px;
    }

    .page-97win97__image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .page-97win97__button {
        display: inline-block;
        padding: 12px 25px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        border-radius: 30px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        text-decoration: none;
        color: #fff; /* Default color for buttons */
    }

    .page-97win97__button--primary {
        background-color: #e44d26; /* A vibrant red/orange */
    }

    .page-97win97__button--primary:hover {
        background-color: #ff6f40;
        transform: translateY(-2px);
    }

    .page-97win97__button--action {
        background-color: #28a745; /* Green for action */
    }

    .page-97win97__button--action:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    .page-97win97__center-button {
        text-align: center;
        margin-top: 40px;
    }

    /* Hero Section */
    .page-97win97__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #e44d26, #f2921a); /* Gradient background */
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        margin-bottom: 30px;
    }

    .page-97win97__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-97win97__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: 800;
        line-height: 1.2;
        color: #fff; /* Ensure good contrast */
    }

    .page-97win97__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        line-height: 1.5;
        color: #f0f0f0; /* Slightly lighter for readability */
    }

    .page-97win97__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-97win97__hero-button {
        padding: 15px 35px;
        font-size: 1.2em;
        font-weight: bold;
        border-radius: 30px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #fff;
    }

    .page-97win97__hero-button--primary {
        background-color: #007bff; /* Blue */
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    }

    .page-97win97__hero-button--primary:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
    }

    .page-97win97__hero-button--secondary {
        background-color: transparent;
        border: 2px solid #fff;
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    }

    .page-97win97__hero-button--secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
    }

    .page-97win97__hero-image-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 800px; /* Limit image width */
        text-align: center;
    }

    .page-97win97__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    /* Games Section */
    .page-97win97__games-section {
        background-color: #fff;
        padding: 60px 0;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-97win97__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-97win97__game-item {
        background-color: #f0f0f0;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-97win97__game-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .page-97win97__game-title {
        font-size: 1.8em;
        color: #e44d26;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-97win97__game-description {
        font-size: 1em;
        color: #555;
    }

    /* Promotions Section */
    .page-97win97__promotions-section {
        background-color: #fefefe;
        padding: 60px 0;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-97win97__promotion-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-97win97__promotion-item {
        background-color: #fff;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        border: 1px solid #eee;
    }

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

    .page-97win97__promotion-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .page-97win97__promotion-title {
        font-size: 1.6em;
        color: #e44d26;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-97win97__promotion-description {
        font-size: 1em;
        color: #555;
    }

    /* Mobile Experience Section */
    .page-97win97__mobile-experience-section {
        background-color: #fff;
        padding: 60px 0;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-97win97__mobile-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .page-97win97__mobile-feature-item {
        text-align: center;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }

    .page-97win97__mobile-icon {
        width: 200px; /* Enforce minimum size */
        height: auto;
        max-width: 100%;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .page-97win97__mobile-feature-title {
        font-size: 1.5em;
        color: #1a1a1a;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-97win97__mobile-feature-description {
        font-size: 1em;
        color: #555;
    }


    /* FAQ Section */
    .page-97win97__faq-section {
        background-color: #fefefe;
        padding: 60px 0;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-97win97__faq-list {
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-97win97__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }

    .page-97win97__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #e44d26; /* Question background */
        color: #fff;
        font-weight: bold;
        font-size: 1.2em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-97win97__faq-question:hover {
        background-color: #ff6f40;
    }

    .page-97win97__faq-question-title {
        margin: 0;
        font-size: 1.1em; /* Adjusted for better hierarchy */
        color: #fff;
        pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-97win97__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon interfering with click */
    }

    .page-97win97__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #f9f9f9;
        color: #333;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }

    .page-97win97__faq-answer p {
        padding: 0;
        margin: 0;
        font-size: 1em;
        line-height: 1.6;
    }

    .page-97win97__faq-item.active .page-97win97__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to accommodate content */
        padding: 20px 25px !important;
        opacity: 1;
    }

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

    /* Call to Action Section */
    .page-97win97__cta-section {
        background-color: #e44d26;
        color: #fff;
        padding: 60px 0;
        text-align: center;
        border-radius: 15px;
        margin-bottom: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-97win97__cta-section .page-97win97__section-title {
        color: #fff;
    }

    .page-97win97__cta-section .page-97win97__text-content {
        color: #f0f0f0;
    }

    .page-97win97__cta-section .page-97win97__button--primary {
        background-color: #007bff; /* Blue for CTA button */
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    }

    .page-97win97__cta-section .page-97win97__button--primary:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
    }


    /* Floating Register/Login Buttons */
    .page-97win97__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-97win97__floating-button {
        display: block;
        padding: 12px 25px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        border-radius: 30px;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-97win97__floating-button--register {
        background-color: #e44d26; /* Red/Orange for Register */
    }

    .page-97win97__floating-button--register:hover {
        background-color: #ff6f40;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-97win97__floating-button--login {
        background-color: #007bff; /* Blue for Login */
    }

    .page-97win97__floating-button--login:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .page-97win97__hero-title {
            font-size: 3em;
        }
        .page-97win97__hero-description {
            font-size: 1.2em;
        }
    }

    @media (max-width: 768px) {
        .page-97win97__hero-section {
            padding: 40px 15px;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
        }
        .page-97win97__hero-title {
            font-size: 2.5em;
        }
        .page-97win97__hero-description {
            font-size: 1.1em;
        }
        .page-97win97__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-97win97__hero-button {
            width: 80%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-97win97__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

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

        .page-97win97__game-categories,
        .page-97win97__promotion-list,
        .page-97win97__mobile-features {
            grid-template-columns: 1fr; /* Stack items on mobile */
            gap: 20px;
        }

        /* List item specific responsive requirements */
        .page-97win97__game-item,
        .page-97win97__promotion-item,
        .page-97win97__mobile-feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
        }
        .page-97win97__game-description,
        .page-97win97__promotion-description,
        .page-97win97__mobile-feature-description,
        .page-97win97__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Images responsive */
        .page-97win97__image,
        .page-97win97__hero-image,
        .page-97win97__game-image,
        .page-97win97__promotion-image,
        .page-97win97__mobile-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-97win97__image-center,
        .page-97win97__hero-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-97win97__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-97win97__faq-question-title {
            font-size: 1em;
        }
        .page-97win97__faq-answer {
            padding: 0 20px;
        }
        .page-97win97__faq-item.active .page-97win97__faq-answer {
            padding: 15px 20px !important;
        }

        .page-97win97__floating-buttons {
            flex-direction: row; /* Side-by-side on mobile */
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
            width: calc(100% - 30px); /* Adjust width to fit screen */
            justify-content: space-around;
            gap: 10px;
        }
        .page-97win97__floating-button {
            flex: 1; /* Distribute space evenly */
            padding: 10px 15px;
            font-size: 1em;
            border-radius: 25px;
        }
    }

    @media (max-width: 480px) {
        .page-97win97__hero-title {
            font-size: 2em;
        }
        .page-97win97__hero-description {
            font-size: 0.95em;
        }
        .page-97win97__hero-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-97win97__section-title {
            font-size: 1.8em;
        }
        .page-97win97__faq-question {
            font-size: 1em;
        }
        .page-97win97__faq-question-title {
            font-size: 0.95em;
        }
    }
  