:root {
    --page-78win01-primary-color: #1A237E;
    --page-78win01-secondary-color: #FFD700;
    --page-78win01-text-light: #FFFFFF;
    --page-78win01-text-dark: #333333;
    --page-78win01-bg-light: #F8F8F8;
    --page-78win01-bg-dark: #0F164C;
    --page-78win01-accent-gold-light: #FFEB3B;
}

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

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

.page-resources-78win01-platform-deep-dive__center-content {
    text-align: center;
}

.page-resources-78win01-platform-deep-dive__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources-78win01-platform-deep-dive__section:nth-of-type(even) {
    background-color: #ECEFF1; /* Light grey for subtle contrast */
}

.page-resources-78win01-platform-deep-dive__hero {
    background: linear-gradient(135deg, var(--page-78win01-primary-color) 0%, #3F51B5 100%);
    color: var(--page-78win01-text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-resources-78win01-platform-deep-dive__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
    padding: 20px;
}

.page-resources-78win01-platform-deep-dive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-78win01-secondary-color); /* Gold for emphasis */
    line-height: 1.2;
}

.page-resources-78win01-platform-deep-dive__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-78win01-text-light);
}

.page-resources-78win01-platform-deep-dive__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-78win01-platform-deep-dive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

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

.page-resources-78win01-platform-deep-dive__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-78win01-secondary-color);
    border-radius: 2px;
}

.page-resources-78win01-platform-deep-dive__about p,
.page-resources-78win01-platform-deep-dive__promotions p,
.page-resources-78win01-platform-deep-dive__guide p,
.page-resources-78win01-platform-deep-dive__why-choose li,
.page-resources-78win01-platform-deep-dive__faq-answer {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: var(--page-78win01-text-dark);
}

.page-resources-78win01-platform-deep-dive__about strong,
.page-resources-78win01-platform-deep-dive__promotions strong,
.page-resources-78win01-platform-deep-dive__guide strong,
.page-resources-78win01-platform-deep-dive__why-choose strong,
.page-resources-78win01-platform-deep-dive__faq-question strong {
    color: var(--page-78win01-primary-color);
}

.page-resources-78win01-platform-deep-dive__image-fullwidth {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.page-resources-78win01-platform-deep-dive__feature-item {
    background-color: var(--page-78win01-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-78win01-platform-deep-dive__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.page-resources-78win01-platform-deep-dive__feature-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-78win01-platform-deep-dive__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-78win01-platform-deep-dive__btn--primary {
    background-color: var(--page-78win01-secondary-color);
    color: var(--page-78win01-primary-color);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-78win01-platform-deep-dive__btn--primary:hover {
    background-color: var(--page-78win01-accent-gold-light);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.page-resources-78win01-platform-deep-dive__btn--secondary {
    background-color: var(--page-78win01-primary-color);
    color: var(--page-78win01-text-light);
    border: 2px solid var(--page-78win01-secondary-color);
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.4);
}

.page-resources-78win01-platform-deep-dive__btn--secondary:hover {
    background-color: #3F51B5;
    border-color: var(--page-78win01-accent-gold-light);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.6);
    transform: translateY(-2px);
}

.page-resources-78win01-platform-deep-dive__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-resources-78win01-platform-deep-dive__list-ordered,
.page-resources-78win01-platform-deep-dive__list-unordered {
    margin: 20px 0;
    padding-left: 25px;
}

.page-resources-78win01-platform-deep-dive__list-ordered li,
.page-resources-78win01-platform-deep-dive__list-unordered li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--page-78win01-text-dark);
}

.page-resources-78win01-platform-deep-dive__list-unordered li::before {
    content: '•';
    color: var(--page-78win01-secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.page-resources-78win01-platform-deep-dive__faq-item {
    background-color: var(--page-78win01-text-light);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-78win01-platform-deep-dive__faq-question {
    font-size: 1.2em;
    color: var(--page-78win01-primary-color);
    margin-bottom: 10px;
}

.page-resources-78win01-platform-deep-dive__faq-answer {
    font-size: 1em;
    color: var(--page-78win01-text-dark);
    line-height: 1.5;
}

.page-resources-78win01-platform-deep-dive__call-to-action {
    background: var(--page-78win01-primary-color);
    color: var(--page-78win01-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources-78win01-platform-deep-dive__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-78win01-text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-78win01-platform-deep-dive__hero-title {
        font-size: 2.8em;
    }
    .page-resources-78win01-platform-deep-dive__hero-description {
        font-size: 1.1em;
    }
    .page-resources-78win01-platform-deep-dive__section-title {
        font-size: 2em;
    }
    .page-resources-78win01-platform-deep-dive__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-78win01-platform-deep-dive__hero {
        padding: 80px 0;
    }
    .page-resources-78win01-platform-deep-dive__hero-title {
        font-size: 2.2em;
    }
    .page-resources-78win01-platform-deep-dive__hero-description {
        font-size: 1em;
    }
    .page-resources-78win01-platform-deep-dive__section {
        padding: 40px 0;
    }
    .page-resources-78win01-platform-deep-dive__section-title {
        font-size: 1.8em;
    }
    .page-resources-78win01-platform-deep-dive__about p,
    .page-resources-78win01-platform-deep-dive__promotions p,
    .page-resources-78win01-platform-deep-dive__guide p,
    .page-resources-78win01-platform-deep-dive__why-choose li,
    .page-resources-78win01-platform-deep-dive__faq-answer {
        font-size: 1em;
    }
    .page-resources-78win01-platform-deep-dive__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-78win01-platform-deep-dive__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-78win01-platform-deep-dive__hero {
        padding: 60px 0;
    }
    .page-resources-78win01-platform-deep-dive__hero-title {
        font-size: 1.8em;
    }
    .page-resources-78win01-platform-deep-dive__hero-description {
        font-size: 0.9em;
    }
    .page-resources-78win01-platform-deep-dive__section-title {
        font-size: 1.5em;
    }
    .page-resources-78win01-platform-deep-dive__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-78win01-platform-deep-dive__btn--large {
        width: 100%;
        box-sizing: border-box;
    }
}