:root {
    --page-28betvip-primary-color: #2563eb;
    --page-28betvip-secondary-color: #64748b;
    --page-28betvip-text-color-dark: #333333;
    --page-28betvip-text-color-light: #ffffff;
    --page-28betvip-bg-light: #f8f9fa;
    --page-28betvip-bg-white: #ffffff;
    --page-28betvip-border-color: #e0e0e0;
}

.page-28betvip {
    font-family: 'Arial', sans-serif;
    color: var(--page-28betvip-text-color-dark);
    line-height: 1.6;
    background-color: var(--page-28betvip-bg-white);
}

.page-28betvip__hero-section {
    text-align: center;
    padding: 10px 0 40px;
    background: linear-gradient(180deg, var(--page-28betvip-bg-light), var(--page-28betvip-bg-white));
    max-width: 100%;
    box-sizing: border-box;
}

.page-28betvip__hero-image-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-28betvip__hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-28betvip__hero-content {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 15px;
}

.page-28betvip__main-title {
    font-size: clamp(24px, 4vw, 42px);
    color: var(--page-28betvip-primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-28betvip__hero-description {
    font-size: 18px;
    color: var(--page-28betvip-text-color-dark);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-28betvip__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-28betvip__btn-primary,
.page-28betvip__btn-secondary,
.page-28betvip__game-btn,
.page-28betvip__promo-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-28betvip__btn-primary {
    background-color: var(--page-28betvip-primary-color);
    color: var(--page-28betvip-text-color-light);
    border: 2px solid var(--page-28betvip-primary-color);
}

.page-28betvip__btn-primary:hover {
    background-color: #1a4dbe;
    border-color: #1a4dbe;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.page-28betvip__btn-secondary {
    background-color: var(--page-28betvip-bg-white);
    color: var(--page-28betvip-primary-color);
    border: 2px solid var(--page-28betvip-primary-color);
}

.page-28betvip__btn-secondary:hover {
    background-color: var(--page-28betvip-primary-color);
    color: var(--page-28betvip-text-color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.page-28betvip__section-title {
    font-size: clamp(22px, 3.5vw, 36px);
    color: var(--page-28betvip-primary-color);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    padding: 0 15px;
}

.page-28betvip__section-description {
    font-size: 17px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 15px;
    color: var(--page-28betvip-secondary-color);
}

.page-28betvip__games-overview,
.page-28betvip__why-choose-us,
.page-28betvip__registration-guide,
.page-28betvip__promotions,
.page-28betvip__about-trust,
.page-28betvip__contact-us {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-28betvip__game-grid,
.page-28betvip__features-grid,
.page-28betvip__guide-steps,
.page-28betvip__promo-cards,
.page-28betvip__trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.page-28betvip__game-card,
.page-28betvip__feature-card,
.page-28betvip__step-item,
.page-28betvip__promo-card,
.page-28betvip__trust-item {
    background-color: var(--page-28betvip-bg-white);
    border: 1px solid var(--page-28betvip-border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-28betvip__game-card:hover,
.page-28betvip__feature-card:hover,
.page-28betvip__step-item:hover,
.page-28betvip__promo-card:hover,
.page-28betvip__trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-28betvip__game-card img,
.page-28betvip__feature-card img,
.page-28betvip__step-item img,
.page-28betvip__promo-card img,
.page-28betvip__trust-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

.page-28betvip__game-title,
.page-28betvip__feature-title,
.page-28betvip__step-title,
.page-28betvip__promo-title,
.page-28betvip__trust-title {
    font-size: 22px;
    color: var(--page-28betvip-primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-28betvip__game-text,
.page-28betvip__feature-text,
.page-28betvip__step-text,
.page-28betvip__promo-text,
.page-28betvip__trust-text {
    font-size: 16px;
    color: var(--page-28betvip-text-color-dark);
    margin-bottom: 20px;
}

.page-28betvip__game-btn {
    background-color: var(--page-28betvip-primary-color);
    color: var(--page-28betvip-text-color-light);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
}

.page-28betvip__game-btn:hover {
    background-color: #1a4dbe;
}

.page-28betvip__cta-button-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-28betvip__contact-info {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.page-28betvip__contact-info p {
    margin-bottom: 10px;
}

.page-28betvip__contact-info a {
    color: var(--page-28betvip-primary-color);
    text-decoration: none;
}

.page-28betvip__contact-info a:hover {
    text-decoration: underline;
}

/* Floating Button */
.page-28betvip__floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.page-28betvip__floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff4d4d; /* Nổi bật hơn */
    color: var(--page-28betvip-text-color-light);
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-28betvip__floating-button a:hover {
    background-color: #e60000;
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-28betvip__hero-image-container {
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-28betvip__game-grid,
    .page-28betvip__features-grid,
    .page-28betvip__guide-steps,
    .page-28betvip__promo-cards,
    .page-28betvip__trust-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-28betvip__btn-primary,
    .page-28betvip__btn-secondary,
    .page-28betvip__game-btn,
    .page-28betvip__promo-btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .page-28betvip__floating-button {
        bottom: 15px;
        right: 15px;
    }

    .page-28betvip__floating-button a {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-28betvip__hero-section {
        padding: 10px 0 30px;
    }

    .page-28betvip__main-title {
        font-size: 28px;
        margin-top: 20px;
    }

    .page-28betvip__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-28betvip__hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-28betvip__btn-primary,
    .page-28betvip__btn-secondary,
    .page-28betvip__game-btn,
    .page-28betvip__promo-btn {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-28betvip__cta-button-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-28betvip__section-title {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-28betvip__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .page-28betvip__games-overview,
    .page-28betvip__why-choose-us,
    .page-28betvip__registration-guide,
    .page-28betvip__promotions,
    .page-28betvip__about-trust,
    .page-28betvip__contact-us {
        padding: 30px 0;
    }

    .page-28betvip__game-grid,
    .page-28betvip__features-grid,
    .page-28betvip__guide-steps,
    .page-28betvip__promo-cards,
    .page-28betvip__trust-points {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .page-28betvip__game-card,
    .page-28betvip__feature-card,
    .page-28betvip__step-item,
    .page-28betvip__promo-card,
    .page-28betvip__trust-item {
        padding: 20px;
    }

    .page-28betvip__game-title,
    .page-28betvip__feature-title,
    .page-28betvip__step-title,
    .page-28betvip__promo-title,
    .page-28betvip__trust-title {
        font-size: 20px;
    }

    .page-28betvip__game-text,
    .page-28betvip__feature-text,
    .page-28betvip__step-text,
    .page-28betvip__promo-text,
    .page-28betvip__trust-text {
        font-size: 15px;
    }

    .page-28betvip__game-card img,
    .page-28betvip__feature-card img,
    .page-28betvip__step-item img,
    .page-28betvip__promo-card img,
    .page-28betvip__trust-item img,
    .page-28betvip__hero-image-container img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-28betvip__hero-image-container,
    .page-28betvip__game-grid,
    .page-28betvip__features-grid,
    .page-28betvip__guide-steps,
    .page-28betvip__promo-cards,
    .page-28betvip__trust-points,
    .page-28betvip__cta-button-container,
    .page-28betvip__contact-us,
    .page-28betvip__hero-section,
    .page-28betvip__games-overview,
    .page-28betvip__why-choose-us,
    .page-28betvip__registration-guide,
    .page-28betvip__promotions,
    .page-28betvip__about-trust {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-28betvip__floating-button {
        bottom: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        max-width: 400px;
        border-radius: 50px;
    }

    .page-28betvip__floating-button a {
        font-size: 15px;
        padding: 12px 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-28betvip__main-title {
        font-size: 26px;
    }

    .page-28betvip__hero-description {
        font-size: 15px;
    }

    .page-28betvip__section-title {
        font-size: 22px;
    }

    .page-28betvip__section-description {
        font-size: 14px;
    }

    .page-28betvip__game-title,
    .page-28betvip__feature-title,
    .page-28betvip__step-title,
    .page-28betvip__promo-title,
    .page-28betvip__trust-title {
        font-size: 18px;
    }

    .page-28betvip__game-text,
    .page-28betvip__feature-text,
    .page-28betvip__step-text,
    .page-28betvip__promo-text,
    .page-28betvip__trust-text {
        font-size: 14px;
    }
}