
    .page-88nw {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-88nw__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-88nw__section-title {
        font-size: 2.5em;
        color: #e94560;
        text-align: center;
        margin-bottom: 40px;
        padding-top: 10px;
    }

    .page-88nw__text-content {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px auto;
        color: #cccccc;
    }

    .page-88nw__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        cursor: pointer;
        box-sizing: border-box;
    }

    .page-88nw__button--primary {
        background-color: #e94560;
        color: #ffffff;
        border: none;
    }

    .page-88nw__button--primary:hover {
        background-color: #c03a50;
        transform: translateY(-2px);
    }

    .page-88nw__button--secondary {
        background-color: transparent;
        color: #e94560;
        border: 2px solid #e94560;
    }

    .page-88nw__button--secondary:hover {
        background-color: #e94560;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .page-88nw__button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    .page-88nw__hero-section {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 10px;
    }

    .page-88nw__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        max-width: 100%;
    }

    .page-88nw__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 2;
    }

    .page-88nw__hero-content {
        position: relative;
        z-index: 3;
        color: #ffffff;
        max-width: 900px;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-88nw__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #ffffff;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-88nw__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-88nw__hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-88nw__fixed-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-88nw__fixed-button {
        display: block;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        color: #ffffff;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, background-color 0.3s ease;
        min-width: 100px;
        box-sizing: border-box;
    }

    .page-88nw__fixed-button--register {
        background-color: #e94560;
    }

    .page-88nw__fixed-button--register:hover {
        background-color: #c03a50;
        transform: translateY(-3px);
    }

    .page-88nw__fixed-button--login {
        background-color: #3f72af;
    }

    .page-88nw__fixed-button--login:hover {
        background-color: #305a8f;
        transform: translateY(-3px);
    }

    .page-88nw__about-section {
        padding: 60px 0;
        background-color: #24243e;
    }

    .page-88nw__about-features {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .page-88nw__feature-item {
        background-color: #1a1a2e;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-88nw__feature-item:hover {
        transform: translateY(-10px);
    }

    .page-88nw__feature-icon {
        width: 250px;
        height: auto;
        margin-bottom: 20px;
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px;
    }

    .page-88nw__feature-title {
        font-size: 1.8em;
        color: #e94560;
        margin-bottom: 15px;
    }

    .page-88nw__feature-description {
        color: #cccccc;
        font-size: 1em;
    }

    .page-88nw__games-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-88nw__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        justify-items: center;
    }

    .page-88nw__game-card {
        background-color: #24243e;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        text-align: center;
        max-width: 400px;
        width: 100%;
        box-sizing: border-box;
    }

    .page-88nw__game-card:hover {
        transform: translateY(-10px);
    }

    .page-88nw__game-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-88nw__game-title {
        font-size: 1.6em;
        color: #e94560;
        margin: 20px 15px 10px 15px;
    }

    .page-88nw__game-description {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 15px 20px 15px;
    }

    .page-88nw__promotions-section {
        padding: 60px 0;
        background-color: #24243e;
    }

    .page-88nw__promotion-list {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .page-88nw__promotion-item {
        background-color: #1a1a2e;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        text-align: center;
        flex: 1;
        min-width: 300px;
        max-width: 400px;
        box-sizing: border-box;
    }

    .page-88nw__promotion-item:hover {
        transform: translateY(-10px);
    }

    .page-88nw__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-88nw__promotion-title {
        font-size: 1.5em;
        color: #e94560;
        margin: 20px 15px 10px 15px;
    }

    .page-88nw__promotion-description {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 15px 20px 15px;
    }

    .page-88nw__providers-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-88nw__provider-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-88nw__provider-item {
        background-color: #2a2a4a;
        color: #ffffff;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-88nw__provider-item:hover {
        background-color: #3f72af;
    }

    .page-88nw__payment-section {
        padding: 60px 0;
        background-color: #24243e;
    }

    .page-88nw__payment-methods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-88nw__payment-item {
        background-color: #1a1a2e;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        flex: 0 0 auto;
        width: 180px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-88nw__payment-logo {
        width: 100%;
        height: auto;
        max-height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-88nw__payment-item p {
        color: #ffffff;
        font-weight: bold;
        margin: 0;
    }

    .page-88nw__faq-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-88nw__faq-list {
        max-width: 800px;
        margin: 40px auto 0 auto;
    }

    .page-88nw__faq-item {
        background-color: #24243e;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-88nw__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #2a2a4a;
        transition: background-color 0.3s ease;
    }

    .page-88nw__faq-question:hover {
        background-color: #3f72af;
    }

    .page-88nw__faq-title {
        margin: 0;
        font-size: 1.3em;
        color: #ffffff;
        pointer-events: none;
    }

    .page-88nw__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #e94560;
        line-height: 1;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .page-88nw__faq-item.active .page-88nw__faq-toggle {
        transform: rotate(45deg);
        color: #ffffff;
    }

    .page-88nw__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
        font-size: 1em;
        box-sizing: border-box;
    }

    .page-88nw__faq-item.active .page-88nw__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-88nw__cta-section {
        padding: 60px 0;
        background-color: #e94560;
        text-align: center;
    }

    .page-88nw__cta-section .page-88nw__section-title {
        color: #ffffff;
        margin-bottom: 20px;
    }

    .page-88nw__cta-section .page-88nw__text-content {
        color: #f0f0f0;
        margin-bottom: 40px;
    }

    .page-88nw__cta-section .page-88nw__button {
        background-color: #ffffff;
        color: #e94560;
        border: none;
    }

    .page-88nw__cta-section .page-88nw__button:hover {
        background-color: #f0f0f0;
        color: #c03a50;
    }

    @media (max-width: 1024px) {
        .page-88nw__hero-title {
            font-size: 3em;
        }
        .page-88nw__hero-description {
            font-size: 1.2em;
        }
        .page-88nw__section-title {
            font-size: 2em;
        }
        .page-88nw__game-categories {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-88nw__hero-section {
            height: 500px;
        }
        .page-88nw__hero-title {
            font-size: 2.5em;
        }
        .page-88nw__hero-description {
            font-size: 1.1em;
        }
        .page-88nw__section-title {
            font-size: 1.8em;
        }
        .page-88nw__text-content {
            font-size: 1em;
            margin-left: 15px;
            margin-right: 15px;
        }
        .page-88nw__hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        .page-88nw__button {
            width: 80%;
            margin: 0 auto;
        }
        .page-88nw__button--large {
            width: 90%;
        }

        .page-88nw__about-features,
        .page-88nw__promotion-list,
        .page-88nw__payment-methods {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .page-88nw__feature-item,
        .page-88nw__promotion-item,
        .page-88nw__payment-item {
            width: 100% !important;
            max-width: 90% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important;
        }

        .page-88nw__game-card {
            width: 100% !important;
            max-width: 90% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-88nw__provider-list {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .page-88nw__provider-item {
            width: 100% !important;
            max-width: 90% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            text-align: center;
        }

        .page-88nw__faq-list {
            margin-left: 15px;
            margin-right: 15px;
        }
        .page-88nw__faq-question {
            padding: 15px 20px;
        }
        .page-88nw__faq-title {
            font-size: 1.1em;
        }
        .page-88nw__faq-answer {
            padding: 15px 20px;
        }
        .page-88nw__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-88nw__fixed-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row;
            gap: 8px;
        }
        .page-88nw__fixed-button {
            padding: 8px 15px;
            font-size: 0.9em;
            min-width: unset;
            width: auto;
        }
    }

    @media (max-width: 480px) {
        .page-88nw__hero-title {
            font-size: 2em;
        }
        .page-88nw__hero-description {
            font-size: 1em;
        }
        .page-88nw__section-title {
            font-size: 1.5em;
        }
        .page-88nw__button {
            padding: 10px 20px;
            font-size: 0.95em;
        }
        .page-88nw__button--large {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-88nw__fixed-buttons {
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 30px);
            flex-direction: row;
            justify-content: space-around;
            gap: 10px;
        }
        .page-88nw__fixed-button {
            flex: 1;
            max-width: 48%;
        }
    }
  