
    /* CSS cho trang Tài Xỉu Sunwin */
    :root {
        --page-sunwins-primary-color: #e60000; /* Đỏ mạnh */
        --page-sunwins-secondary-color: #ffdd00; /* Vàng sáng */
        --page-sunwins-background-dark: #1a1a1a;
        --page-sunwins-text-light: #f0f0f0;
        --page-sunwins-text-dark: #333333;
        --page-sunwins-card-background: #2a2a2a;
        --page-sunwins-border-color: #444444;
        --page-sunwins-button-hover: #cc0000;
        --page-sunwins-floating-bg: #007bff; /* Xanh dương cho nút nổi */
        --page-sunwins-floating-hover: #0056b3;
    }

    .page-sunwins {
        font-family: 'Arial', sans-serif;
        color: var(--page-sunwins-text-light);
        background-color: var(--page-sunwins-background-dark);
        line-height: 1.6;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    .page-sunwins-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-sunwins-hero {
        position: relative;
        overflow: hidden;
        padding: 60px 20px 20px; /* Padding top để tránh header */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 450px; /* Chiều cao tối thiểu cho banner */
        background-color: #000;
    }

    .page-sunwins-hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        object-fit: contain; /* Giữ nguyên tỷ lệ, không bị kéo dãn */
        max-height: 300px; /* Giới hạn chiều cao để text ở dưới */
    }

    .page-sunwins-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--page-sunwins-text-light);
        margin-top: 20px; /* Đảm bảo text nằm dưới ảnh */
        padding: 0 15px;
    }

    .page-sunwins-title {
        font-size: 2.2em;
        color: var(--page-sunwins-secondary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: bold;
    }

    .page-sunwins-subtitle {
        font-size: 1.8em;
        color: var(--page-sunwins-primary-color);
        margin-bottom: 25px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-sunwins-hero p {
        font-size: 1.1em;
        margin-bottom: 25px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-sunwins-button {
        display: inline-block;
        background-color: var(--page-sunwins-primary-color);
        color: var(--page-sunwins-text-light);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-sunwins-button:hover {
        background-color: var(--page-sunwins-button-hover);
        transform: translateY(-2px);
    }

    .page-sunwins-hero-cta {
        font-size: 1.2em;
        padding: 15px 30px;
        background-color: var(--page-sunwins-secondary-color);
        color: var(--page-sunwins-text-dark);
    }

    .page-sunwins-hero-cta:hover {
        background-color: #e0c000;
        color: var(--page-sunwins-text-dark);
    }

    .page-sunwins-intro,
    .page-sunwins-download,
    .page-sunwins-strategy,
    .page-sunwins-transactions,
    .page-sunwins-providers,
    .page-sunwins-other-games,
    .page-sunwins-faq {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-sunwins-intro p,
    .page-sunwins-strategy p,
    .page-sunwins-transactions p,
    .page-sunwins-faq p {
        margin-bottom: 20px;
        font-size: 1em;
    }

    .page-sunwins-intro a,
    .page-sunwins-strategy a,
    .page-sunwins-transactions a,
    .page-sunwins-faq a {
        color: var(--page-sunwins-secondary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-sunwins-intro a:hover,
    .page-sunwins-strategy a:hover,
    .page-sunwins-transactions a:hover,
    .page-sunwins-faq a:hover {
        color: var(--page-sunwins-primary-color);
        text-decoration: underline;
    }

    .page-sunwins-highlight {
        color: var(--page-sunwins-secondary-color);
    }

    .page-sunwins-download-grid,
    .page-sunwins-grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    @media (min-width: 600px) {
        .page-sunwins-download-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        .page-sunwins-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    .page-sunwins-card,
    .page-sunwins-feature-item,
    .page-sunwins-game-card {
        background-color: var(--page-sunwins-card-background);
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-sunwins-card-image,
    .page-sunwins-icon,
    .page-sunwins-game-image {
        max-width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: contain;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-sunwins-card h3,
    .page-sunwins-feature-item h3,
    .page-sunwins-game-card h3 {
        font-size: 1.3em;
        color: var(--page-sunwins-secondary-color);
        margin-bottom: 10px;
    }
    .page-sunwins-card h3 a,
    .page-sunwins-feature-item h3 a,
    .page-sunwins-game-card h3 a {
        color: var(--page-sunwins-secondary-color);
        text-decoration: none;
    }
    .page-sunwins-card h3 a:hover,
    .page-sunwins-feature-item h3 a:hover,
    .page-sunwins-game-card h3 a:hover {
        color: var(--page-sunwins-primary-color);
        text-decoration: underline;
    }

    .page-sunwins-list {
        list-style: none;
        padding: 0;
        margin: 20px auto;
        max-width: 700px;
        text-align: left;
    }

    .page-sunwins-list li {
        background-color: var(--page-sunwins-card-background);
        border-left: 5px solid var(--page-sunwins-primary-color);
        margin-bottom: 10px;
        padding: 15px 20px;
        border-radius: 5px;
        font-size: 1.05em;
    }

    .page-sunwins-list li a {
        color: var(--page-sunwins-text-light);
        text-decoration: none;
    }
    .page-sunwins-list li a:hover {
        color: var(--page-sunwins-secondary-color);
        text-decoration: underline;
    }

    .page-sunwins-provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-sunwins-provider-logo {
        max-width: 90%;
        height: auto;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(80%) brightness(120%);
        transition: filter 0.3s ease, transform 0.3s ease;
    }

    .page-sunwins-provider-logo:hover {
        filter: grayscale(0%) brightness(100%);
        transform: scale(1.1);
    }

    .page-sunwins-faq-item {
        background-color: var(--page-sunwins-card-background);
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 20px;
        text-align: left;
    }

    .page-sunwins-faq-item h3 {
        color: var(--page-sunwins-secondary-color);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.2em;
    }
    .page-sunwins-faq-item h3 a {
        color: var(--page-sunwins-secondary-color);
        text-decoration: none;
    }
    .page-sunwins-faq-item h3 a:hover {
        color: var(--page-sunwins-primary-color);
        text-decoration: underline;
    }

    .page-sunwins-faq-item p {
        color: var(--page-sunwins-text-light);
        font-size: 0.95em;
    }

    /* Floating Login Button */
    .page-sunwins-floating-login {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: calc(100% - 40px);
        max-width: 400px;
    }

    .page-sunwins-floating-button {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background-color: var(--page-sunwins-floating-bg);
        color: var(--page-sunwins-text-light);
        text-align: center;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-sunwins-floating-button:hover {
        background-color: var(--page-sunwins-floating-hover);
        transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-sunwins-title {
            font-size: 1.8em;
        }
        .page-sunwins-subtitle {
            font-size: 1.5em;
        }
        .page-sunwins-hero {
            padding-top: 80px; /* Tăng padding để tránh header trên di động */
            min-height: 400px;
        }
        .page-sunwins-hero-image {
            max-height: 250px;
        }
        .page-sunwins-section {
            padding: 30px 15px;
        }
        .page-sunwins-download-grid,
        .page-sunwins-grid-3 {
            grid-template-columns: 1fr;
        }
        .page-sunwins-floating-login {
            bottom: 15px;
            width: calc(100% - 30px);
        }
        .page-sunwins-floating-button {
            font-size: 1em;
            padding: 12px 15px;
        }
    }

    @media (max-width: 480px) {
        .page-sunwins-title {
            font-size: 1.6em;
        }
        .page-sunwins-subtitle {
            font-size: 1.3em;
        }
        .page-sunwins-hero-image {
            max-height: 200px;
        }
    }
  