
    /* General styling for the page */
.page-58win-vip {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-58win-vip__section-title {
    font-size: 2.2em;
    color: #0056b3; /* Darker blue for contrast */
    text-align: center;
    margin-bottom: 25px;
    padding-top: 20px;
    font-weight: bold;
}

.page-58win-vip__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555; /* Good contrast */
}

/* Hero Section */
.page-58win-vip__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Responsive height */
    min-height: 400px; /* Minimum height for larger screens */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* As per fixed header requirement */
    box-sizing: border-box;
}

.page-58win-vip__hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-58win-vip__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-58win-vip__hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 20px;
    max-width: 900px;
}

.page-58win-vip__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffd700; /* Gold color for prominence */
}

.page-58win-vip__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #eee;
}

.page-58win-vip__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-58win-vip__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-58win-vip__button--primary {
    background-color: #007bff; /* Bright blue */
    color: #fff;
}

.page-58win-vip__button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-58win-vip__button--secondary {
    background-color: #6c757d; /* Grey */
    color: #fff;
}

.page-58win-vip__button--secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.page-58win-vip__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #28a745; /* Green */
    color: #fff;
}

.page-58win-vip__button--small:hover {
    background-color: #218838;
}

.page-58win-vip__button--large {
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-58win-vip__button--cta {
    background-color: #dc3545; /* Red for CTA */
    color: #fff;
    margin-top: 30px;
}

.page-58win-vip__button--cta:hover {
    background-color: #c82333;
}

/* Sections */
.page-58win-vip__about-section,
.page-58win-vip__game-categories,
.page-58win-vip__promotions-section,
.page-58win-vip__features-section,
.page-58win-vip__providers-section,
.page-58win-vip__faq-section,
.page-58win-vip__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Game Categories Grid */
.page-58win-vip__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.page-58win-vip__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.page-58win-vip__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-58win-vip__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-58win-vip__game-card-title {
    font-size: 1.6em;
    color: #007bff;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-58win-vip__game-card-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px;
}

/* Promotions Section */
.page-58win-vip__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.page-58win-vip__promotion-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.page-58win-vip__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-58win-vip__promotion-card-image {
    width: 100%;
    height: 250px; /* Fixed height */
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-58win-vip__promotion-card-title {
    font-size: 1.8em;
    color: #dc3545;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-58win-vip__promotion-card-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px 20px;
}

.page-58win-vip__full-promo-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Features Section */
.page-58win-vip__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.page-58win-vip__feature-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.page-58win-vip__feature-item:hover {
    transform: translateY(-5px);
}

.page-58win-vip__feature-icon {
    width: 200px; /* Adjusted size for feature images */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.page-58win-vip__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-58win-vip__feature-description {
    font-size: 1em;
    color: #666;
}

/* Providers Section */
.page-58win-vip__provider-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-58win-vip__provider-item {
    background-color: #e9ecef;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word;
    word-break: break-word;
}

.page-58win-vip__provider-item:hover {
    background-color: #ced4da;
}

/* FAQ Section */
.page-58win-vip__faq-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-58win-vip__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.page-58win-vip__faq-question:hover {
    background-color: #0056b3;
}

.page-58win-vip__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #fff; /* Ensure text color is white for contrast */
    pointer-events: none; /* Prevent h3 from blocking click */
    flex-grow: 1;
}

.page-58win-vip__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click */
}

.page-58win-vip__faq-item.active .page-58win-vip__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
}

.page-58win-vip__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #f1f1f1;
    color: #333; /* Dark text for contrast */
    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-58win-vip__faq-item.active .page-58win-vip__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-58win-vip__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Add some padding at the bottom of the paragraph */
}

/* Floating Buttons */
.page-58win-vip__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.page-58win-vip__floating-button {
    display: block;
    width: 120px;
    padding: 12px 0;
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-58win-vip__floating-button--register {
    background-color: #28a745; /* Green */
}

.page-58win-vip__floating-button--register:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

.page-58win-vip__floating-button--login {
    background-color: #007bff; /* Blue */
}

.page-58win-vip__floating-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-58win-vip__hero-title {
        font-size: 2.8em;
    }

    .page-58win-vip__hero-subtitle {
        font-size: 1.3em;
    }

    .page-58win-vip__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-58win-vip__hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .page-58win-vip__hero-title {
        font-size: 2.2em;
    }

    .page-58win-vip__hero-subtitle {
        font-size: 1.1em;
    }

    .page-58win-vip__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-58win-vip__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-58win-vip__section-title {
        font-size: 1.6em;
    }

    .page-58win-vip__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-58win-vip__game-grid,
    .page-58win-vip__promotion-grid,
    .page-58win-vip__features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-58win-vip__game-card,
    .page-58win-vip__promotion-card,
    .page-58win-vip__feature-item {
        max-width: 100%; /* Ensure cards take full width */
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    /* Images responsiveness */
    .page-58win-vip__game-card-image,
    .page-58win-vip__promotion-card-image,
    .page-58win-vip__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* List items mobile responsiveness */
    .page-58win-vip__provider-list {
        flex-direction: column; /* Stack items */
        align-items: center; /* Center them */
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-58win-vip__provider-item {
        width: 90% !important; /* Make list items take full width */
        max-width: 90% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important; /* Adjust padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-58win-vip__faq-question,
    .page-58win-vip__faq-answer {
        padding: 15px 20px;
    }
    .page-58win-vip__faq-item.active .page-58win-vip__faq-answer {
        padding: 15px 20px !important;
    }

    .page-58win-vip__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .page-58win-vip__floating-button {
        width: 100px;
        padding: 10px 0;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-58win-vip__hero-title {
        font-size: 1.8em;
    }

    .page-58win-vip__hero-subtitle {
        font-size: 1em;
    }

    .page-58win-vip__button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-58win-vip__section-title {
        font-size: 1.4em;
    }

    .page-58win-vip__faq-question h3 {
        font-size: 1em;
    }
    .page-58win-vip__faq-toggle {
        font-size: 1.2em;
    }
}
  