
    /* General styling for the page */
    .page-98win {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light text on dark background */
        background-color: #1a1a2e; /* Dark blue/purple background */
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-98win__section {
        padding: 20px 15px;
        margin-bottom: 20px;
        background-color: #2a2a4a; /* Slightly lighter dark background for sections */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-98win__section-title {
        color: #ffd700; /* Gold for main titles */
        text-align: center;
        margin-bottom: 25px;
        font-size: 1.8em;
        font-weight: bold;
        line-height: 1.3;
    }

    .page-98win__main-title {
        color: #ffffff; /* White for the very main title */
        text-align: center;
        font-size: 2.5em;
        margin-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    }

    .page-98win__banner-slogan {
        color: #e0e0e0;
        text-align: center;
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    /* Banner Section */
    .page-98win__banner-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
        background-color: #0d0d1a; /* Even darker for banner background */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 250px; /* Ensure some height even if image is small */
    }

    .page-98win__banner-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 300px; /* Max height for mobile banner */
        margin: 0 auto; /* Centered banner image */
    }

    .page-98win__banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
        z-index: 10;
        padding: 15px;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
        border-radius: 8px;
        box-sizing: border-box; /* Include padding in width */
    }

    /* Floating Buttons */
    .page-98win__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(42, 42, 74, 0.95); /* Semi-transparent dark background */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .page-98win__btn {
        display: block;
        width: 45%;
        padding: 12px 10px;
        border-radius: 50px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }

    .page-98win__btn--register {
        background-color: #ff416c; /* Pinkish red */
        color: #ffffff;
        border: 2px solid #ff416c;
    }

    .page-98win__btn--register:hover {
        background-color: #e6395e;
        transform: translateY(-2px);
    }

    .page-98win__btn--login {
        background-color: #ffd700; /* Gold */
        color: #1a1a2e; /* Dark text for contrast */
        border: 2px solid #ffd700;
    }

    .page-98win__btn--login:hover {
        background-color: #e0be00;
        transform: translateY(-2px);
    }

    .page-98win__btn--large {
        width: 80%; /* Wider for CTA */
        margin: 20px auto 0;
        font-size: 1.2em;
        padding: 15px 20px;
        background-color: #ff416c; /* Same as register */
        color: #ffffff;
        border: 2px solid #ff416c;
    }

    .page-98win__btn--large:hover {
        background-color: #e6395e;
        transform: translateY(-2px);
    }

    /* Game Grid */
    .page-98win__game-grid {
        display: grid;
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        padding: 0 10px;
    }

    .page-98win__game-card {
        background-color: #3a3a5a; /* Darker background for cards */
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 15px;
    }

    .page-98win__game-image {
        width: 100%;
        height: 180px; /* Fixed height for consistency */
        object-fit: cover;
        margin-bottom: 10px;
        display: block;
    }

    .page-98win__game-title {
        font-size: 1.3em;
        margin: 10px 0;
    }

    .page-98win__game-title a {
        color: #8aff8a; /* Light green for links */
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-98win__game-title a:hover {
        color: #6aff6a;
        text-decoration: underline;
    }

    .page-98win__game-card p {
        font-size: 0.95em;
        padding: 0 15px;
        color: #c0c0c0;
    }

    /* Why Choose Us Section */
    .page-98win__features-grid {
        display: grid;
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        padding: 0 10px;
    }

    .page-98win__feature-item {
        background-color: #3a3a5a;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-98win__feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
    }

    .page-98win__feature-item h3 {
        color: #ffd700;
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .page-98win__feature-item p {
        font-size: 0.9em;
        color: #c0c0c0;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
        .page-98win__section {
            padding: 30px 40px;
        }

        .page-98win__section-title {
            font-size: 2.2em;
        }

        .page-98win__main-title {
            font-size: 3.5em;
        }

        .page-98win__banner-image {
            max-height: 400px;
        }

        .page-98win__banner-content {
            width: 70%;
            padding: 25px;
        }

        .page-98win__floating-buttons {
            width: auto;
            left: auto;
            right: 20px;
            bottom: 20px;
            flex-direction: column;
            gap: 10px;
            padding: 15px;
            border-radius: 10px;
        }

        .page-98win__btn {
            width: 180px; /* Fixed width for desktop floating buttons */
            font-size: 1.1em;
        }

        .page-98win__game-grid {
            grid-template-columns: repeat(2, 1fr); /* Two columns for tablet */
            padding: 0 20px;
        }

        .page-98win__game-image {
            height: 200px;
        }

        .page-98win__features-grid {
            grid-template-columns: repeat(2, 1fr); /* Two columns for tablet */
            padding: 0 20px;
        }
    }

    @media (min-width: 1024px) {
        .page-98win__section {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 40px 60px;
        }

        .page-98win__banner-image {
            max-height: 500px;
        }

        .page-98win__banner-content {
            width: 60%;
        }

        .page-98win__game-grid {
            grid-template-columns: repeat(4, 1fr); /* Four columns for desktop */
            padding: 0;
        }

        .page-98win__game-image {
            height: 220px;
        }

        .page-98win__features-grid {
            grid-template-columns: repeat(4, 1fr); /* Four columns for desktop */
            padding: 0;
        }
    }
  