/* style/index-platform-highlights.css */
.page-index-platform-highlights {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-index-platform-highlights__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-platform-highlights__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #2a4c8f 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-platform-highlights__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-platform-highlights__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-index-platform-highlights__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-index-platform-highlights__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-index-platform-highlights__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-platform-highlights__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 60px;
    position: relative;
}

.page-index-platform-highlights__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-index-platform-highlights__section-intro {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-index-platform-highlights__features-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.page-index-platform-highlights__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-platform-highlights__feature-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-highlights__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-platform-highlights__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-platform-highlights__card-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-platform-highlights__card-description {
    font-size: 1em;
    color: #666;
}

.page-index-platform-highlights__product-showcase {
    padding: 60px 0;
    background-color: #fff;
}

.page-index-platform-highlights__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-index-platform-highlights__product-card {
    background-color: #f0f4f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-highlights__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-index-platform-highlights__product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-index-platform-highlights__product-card .page-index-platform-highlights__card-title {
    margin-top: 20px;
    font-size: 1.8em;
}

.page-index-platform-highlights__product-card .page-index-platform-highlights__card-description {
    padding: 0 20px 20px;
    color: #444;
}

.page-index-platform-highlights__card-button {
    display: inline-block;
    background-color: #0A2463;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-index-platform-highlights__card-button:hover {
    background-color: #1a3d7a;
}

.page-index-platform-highlights__cta-section {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-platform-highlights__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-platform-highlights__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-index-platform-highlights__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #FFD700;
    color: #0A2463;
}

.page-index-platform-highlights__cta-button--large:hover {
    background-color: #e6c200;
}

.page-index-platform-highlights__cta-subtext {
    margin-top: 20px;
    font-size: 1em;
    color: #ccc;
}

.page-index-platform-highlights__cta-subtext a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-index-platform-highlights__cta-subtext a:hover {
    text-decoration: underline;
}

.page-index-platform-highlights__responsible-gambling {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-index-platform-highlights__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.page-index-platform-highlights__responsible-list li {
    background-color: #fff;
    border-left: 5px solid #0A2463;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
    display: flex;
    align-items: center;
}

.page-index-platform-highlights__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    object-fit: contain;
}

.page-index-platform-highlights__responsible-text {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 1.1em;
    color: #555;
}

.page-index-platform-highlights__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-index-platform-highlights__faq-item {
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    background-color: #fcfcfc;
}

.page-index-platform-highlights__faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-platform-highlights__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-platform-highlights__faq-item.active .page-index-platform-highlights__faq-question::after {
    transform: rotate(45deg);
}

.page-index-platform-highlights__faq-answer {
    font-size: 1.1em;
    color: #666;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    margin-top: 10px;
}

.page-index-platform-highlights__faq-item.active .page-index-platform-highlights__faq-answer {
    display: block;
}

.page-index-platform-highlights__conclusion-cta {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-platform-highlights__conclusion-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-index-platform-highlights__cta-button--final {
    background-color: #FFD700;
    color: #0A2463;
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-index-platform-highlights__cta-button--final:hover {
    background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-platform-highlights__hero-title {
        font-size: 2.5em;
    }

    .page-index-platform-highlights__hero-description {
        font-size: 1em;
    }

    .page-index-platform-highlights__section-title {
        font-size: 2em;
    }

    .page-index-platform-highlights__section-intro {
        font-size: 0.95em;
    }

    .page-index-platform-highlights__feature-grid, .page-index-platform-highlights__product-grid {
        grid-template-columns: 1fr;
    }

    .page-index-platform-highlights__cta-title {
        font-size: 2.2em;
    }

    .page-index-platform-highlights__cta-description {
        font-size: 1.1em;
    }

    .page-index-platform-highlights__cta-button--large, .page-index-platform-highlights__cta-button--final {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-index-platform-highlights__faq-question {
        font-size: 1.2em;
    }

    .page-index-platform-highlights__faq-answer {
        font-size: 0.95em;
    }

    .page-index-platform-highlights__responsible-list li {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-index-platform-highlights__list-icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }

    .page-index-platform-highlights__conclusion-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-platform-highlights__hero-title {
        font-size: 2em;
    }

    .page-index-platform-highlights__cta-title {
        font-size: 1.8em;
    }

    .page-index-platform-highlights__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-platform-highlights__cta-button--large, .page-index-platform-highlights__cta-button--final {
        padding: 12px 25px;
        font-size: 1em;
    }
}