/* style/index-vivu88-core-advantages.css */

/* General Page Styles */
.page-index-vivu88-core-advantages {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-vivu88-core-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-index-vivu88-core-advantages__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-vivu88-core-advantages__section--dark {
    background-color: #003366;
    color: #ffffff;
}

.page-index-vivu88-core-advantages__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-index-vivu88-core-advantages__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__section-title {
    color: #ffffff;
}

.page-index-vivu88-core-advantages__section-subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__section-subtitle {
    color: #e0e0e0;
}

/* Hero Section */
.page-index-vivu88-core-advantages__hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.page-index-vivu88-core-advantages__hero-content {
    max-width: 600px;
}

.page-index-vivu88-core-advantages__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00;
}

.page-index-vivu88-core-advantages__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-vivu88-core-advantages__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-vivu88-core-advantages__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-index-vivu88-core-advantages__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-index-vivu88-core-advantages__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-index-vivu88-core-advantages__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-index-vivu88-core-advantages__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-index-vivu88-core-advantages__hero-image-wrapper {
    flex-shrink: 0;
    width: 450px;
    max-width: 100%;
}

.page-index-vivu88-core-advantages__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Grid Layout for Features/Games */
.page-index-vivu88-core-advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-index-vivu88-core-advantages__grid-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__grid-item {
    background-color: #002244;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-vivu88-core-advantages__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.page-index-vivu88-core-advantages__grid-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-vivu88-core-advantages__grid-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__grid-title {
    color: #FFCC00;
}

.page-index-vivu88-core-advantages__grid-description {
    font-size: 1em;
    color: #555;
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__grid-description {
    color: #cccccc;
}

/* CTA Block within sections */
.page-index-vivu88-core-advantages__cta-block {
    margin-top: 60px;
    padding: 30px;
    background-color: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__cta-block {
    background-color: #002d5a;
    color: #fff;
}

.page-index-vivu88-core-advantages__cta-block p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #003366;
}

.page-index-vivu88-core-advantages__section--dark .page-index-vivu88-core-advantages__cta-block p {
    color: #ffffff;
}

/* Features List (for promotions) */
.page-index-vivu88-core-advantages__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-index-vivu88-core-advantages__feature-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-vivu88-core-advantages__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.page-index-vivu88-core-advantages__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-vivu88-core-advantages__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-vivu88-core-advantages__feature-description {
    font-size: 1em;
    color: #555;
}

/* Content Row with Image */
.page-index-vivu88-core-advantages__content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.page-index-vivu88-core-advantages__content-text {
    flex: 1;
    min-width: 300px;
}

.page-index-vivu88-core-advantages__content-text h3 {
    font-size: 2em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-index-vivu88-core-advantages__content-text p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-index-vivu88-core-advantages__content-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-vivu88-core-advantages__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Section (large) */
.page-index-vivu88-core-advantages__section--cta {
    background: linear-gradient(90deg, #003366, #004488);
    color: #fff;
    padding: 80px 20px;
}

.page-index-vivu88-core-advantages__container--cta {
    max-width: 900px;
}

.page-index-vivu88-core-advantages__cta-title {
    font-size: 3em;
    color: #FFCC00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-vivu88-core-advantages__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-vivu88-core-advantages__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsibility Section */
.page-index-vivu88-core-advantages__section--responsibility {
    background-color: #f0f0f0;
    padding: 50px 0;
}

.page-index-vivu88-core-advantages__section--responsibility .page-index-vivu88-core-advantages__section-title {
    color: #003366;
}

.page-index-vivu88-core-advantages__section--responsibility .page-index-vivu88-core-advantages__section-subtitle,
.page-index-vivu88-core-advantages__section--responsibility p {
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-index-vivu88-core-advantages__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-index-vivu88-core-advantages__hero-content {
        max-width: 100%;
    }

    .page-index-vivu88-core-advantages__hero-title {
        font-size: 2.8em;
    }

    .page-index-vivu88-core-advantages__content-row {
        flex-direction: column;
        text-align: center;
    }

    .page-index-vivu88-core-advantages__content-text h3 {
        font-size: 1.8em;
    }

    .page-index-vivu88-core-advantages__section-title {
        font-size: 2em;
    }

    .page-index-vivu88-core-advantages__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-vivu88-core-advantages__hero-title {
        font-size: 2.2em;
    }

    .page-index-vivu88-core-advantages__hero-description {
        font-size: 1.1em;
    }

    .page-index-vivu88-core-advantages__hero-actions {
        justify-content: center;
    }

    .page-index-vivu88-core-advantages__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-vivu88-core-advantages__section {
        padding: 40px 0;
    }

    .page-index-vivu88-core-advantages__section-title {
        font-size: 1.8em;
    }

    .page-index-vivu88-core-advantages__section-subtitle {
        font-size: 1em;
    }

    .page-index-vivu88-core-advantages__grid-item,
    .page-index-vivu88-core-advantages__feature-item {
        padding: 20px;
    }

    .page-index-vivu88-core-advantages__grid-title,
    .page-index-vivu88-core-advantages__feature-title {
        font-size: 1.3em;
    }

    .page-index-vivu88-core-advantages__cta-title {
        font-size: 2em;
    }

    .page-index-vivu88-core-advantages__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-vivu88-core-advantages__hero-title {
        font-size: 1.8em;
    }

    .page-index-vivu88-core-advantages__btn {
        width: 100%;
        text-align: center;
    }

    .page-index-vivu88-core-advantages__hero-actions {
        flex-direction: column;
    }

    .page-index-vivu88-core-advantages__section-title {
        font-size: 1.5em;
    }

    .page-index-vivu88-core-advantages__cta-title {
        font-size: 1.6em;
    }
}