/* style/resources-sv88-official-platform-deep-dive.css */

:root {
    --page-primary-color: #0A2463;
    --page-secondary-color: #FFD700;
    --page-text-light: #F0F0F0;
    --page-text-dark: #333333;
    --page-accent-color: #f5db9c; /* Lighter shade of secondary for emphasis */
    --page-background-light: #FFFFFF;
    --page-background-dark: #0A2463;
}

.page-resources-sv88-official-platform-deep-dive {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-resources-sv88-official-platform-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-sv88-official-platform-deep-dive__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #1A3E8A 100%);
    color: var(--page-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-sv88-official-platform-deep-dive__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-resources-sv88-official-platform-deep-dive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sv88-official-platform-deep-dive__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-text-light);
}

.page-resources-sv88-official-platform-deep-dive__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    filter: grayscale(100%);
}

.page-resources-sv88-official-platform-deep-dive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-resources-sv88-official-platform-deep-dive__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-sv88-official-platform-deep-dive__section:last-of-type {
    border-bottom: none;
}

.page-resources-sv88-official-platform-deep-dive__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-sv88-official-platform-deep-dive__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-resources-sv88-official-platform-deep-dive__sub-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-sv88-official-platform-deep-dive__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
    color: var(--page-text-dark);
}

.page-resources-sv88-official-platform-deep-dive__link {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-sv88-official-platform-deep-dive__link:hover {
    color: var(--page-secondary-color);
    text-decoration: underline;
}

.page-resources-sv88-official-platform-deep-dive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-resources-sv88-official-platform-deep-dive__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
}

.page-resources-sv88-official-platform-deep-dive__btn--primary:hover {
    background-color: var(--page-accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sv88-official-platform-deep-dive__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-sv88-official-platform-deep-dive__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sv88-official-platform-deep-dive__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-sv88-official-platform-deep-dive__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sv88-official-platform-deep-dive__feature-item {
    background-color: var(--page-background-light);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sv88-official-platform-deep-dive__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-sv88-official-platform-deep-dive__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-sv88-official-platform-deep-dive__feature-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-sv88-official-platform-deep-dive__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sv88-official-platform-deep-dive__image-centered {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sv88-official-platform-deep-dive__list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--page-text-dark);
}

.page-resources-sv88-official-platform-deep-dive__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-sv88-official-platform-deep-dive__list li strong {
    color: var(--page-primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-sv88-official-platform-deep-dive__hero {
        padding: 60px 0;
    }

    .page-resources-sv88-official-platform-deep-dive__hero-title {
        font-size: 2.5em;
    }

    .page-resources-sv88-official-platform-deep-dive__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-sv88-official-platform-deep-dive__section-title {
        font-size: 2em;
    }

    .page-resources-sv88-official-platform-deep-dive__sub-title {
        font-size: 1.5em;
    }

    .page-resources-sv88-official-platform-deep-dive__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-sv88-official-platform-deep-dive__btn {
        width: 100%;
        padding: 12px 20px;
    }

    .page-resources-sv88-official-platform-deep-dive__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-sv88-official-platform-deep-dive__image-centered {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-resources-sv88-official-platform-deep-dive__hero-title {
        font-size: 2em;
    }

    .page-resources-sv88-official-platform-deep-dive__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-sv88-official-platform-deep-dive__section-title {
        font-size: 1.8em;
    }

    .page-resources-sv88-official-platform-deep-dive__text,
    .page-resources-sv88-official-platform-deep-dive__list li {
        font-size: 1em;
    }
}