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

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

.page-index-hot-platform-recommendations__hero-section {
    background: linear-gradient(135deg, #007BFF, #4da3ff);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-hot-platform-recommendations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-index-hot-platform-recommendations__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-hot-platform-recommendations__hero-button {
    display: inline-block;
    background-color: #FFC107;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hot-platform-recommendations__hero-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-index-hot-platform-recommendations__hero-image {
    margin-top: 50px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-hot-platform-recommendations__section {
    padding: 80px 0;
    background-color: #fff;
}

.page-index-hot-platform-recommendations__section--dark {
    background-color: #0056b3;
    color: #fff;
}

.page-index-hot-platform-recommendations__section--alt-bg {
    background-color: #f0f8ff;
}

.page-index-hot-platform-recommendations__section-title {
    font-size: 2.8em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-hot-platform-recommendations__section-title--light {
    color: #fff;
}

.page-index-hot-platform-recommendations__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-index-hot-platform-recommendations__text--light {
    color: #e0e0e0;
}

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

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

.page-index-hot-platform-recommendations__section--dark .page-index-hot-platform-recommendations__grid-item {
    background-color: #007BFF;
    color: #fff;
}

.page-index-hot-platform-recommendations__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-hot-platform-recommendations__grid-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-hot-platform-recommendations__section--dark .page-index-hot-platform-recommendations__grid-title {
    color: #FFC107;
}

.page-index-hot-platform-recommendations__section--alt-bg .page-index-hot-platform-recommendations__grid-item {
    background-color: #fff;
}

.page-index-hot-platform-recommendations__platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-hot-platform-recommendations__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #333;
}

.page-index-hot-platform-recommendations__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-hot-platform-recommendations__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-hot-platform-recommendations__card-title {
    font-size: 1.8em;
    color: #007BFF;
    margin: 25px 20px 15px;
    font-weight: bold;
}

.page-index-hot-platform-recommendations__card-description {
    font-size: 1em;
    color: #555;
    padding: 0 20px;
    flex-grow: 1;
}

.page-index-hot-platform-recommendations__card-features {
    list-style: none;
    padding: 0 20px;
    margin: 20px 0;
    text-align: left;
}

.page-index-hot-platform-recommendations__card-features li {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95em;
}

.page-index-hot-platform-recommendations__card-button {
    display: inline-block;
    background-color: #FFC107;
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin: 20px auto 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-index-hot-platform-recommendations__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-index-hot-platform-recommendations__step-item:hover {
    transform: translateY(-5px);
}

.page-index-hot-platform-recommendations__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-hot-platform-recommendations__step-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-hot-platform-recommendations__step-button {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-index-hot-platform-recommendations__step-button:hover {
    background-color: #0056b3;
}

.page-index-hot-platform-recommendations__future-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-index-hot-platform-recommendations__future-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-hot-platform-recommendations__future-text {
    flex: 2;
    min-width: 300px;
}

.page-index-hot-platform-recommendations__future-text .page-index-hot-platform-recommendations__text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: #555;
}

.page-index-hot-platform-recommendations__faq {
    margin-top: 40px;
}

.page-index-hot-platform-recommendations__faq-item {
    background-color: #007BFF;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-hot-platform-recommendations__faq-question {
    font-size: 1.4em;
    color: #FFC107;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-index-hot-platform-recommendations__faq-answer {
    font-size: 1.1em;
    color: #e0e0e0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-hot-platform-recommendations__faq-button {
    display: inline-block;
    background-color: #FFC107;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.page-index-hot-platform-recommendations__faq-button:hover {
    background-color: #e0a800;
}

.page-index-hot-platform-recommendations__cta-section {
    background: linear-gradient(45deg, #007BFF, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-hot-platform-recommendations__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-index-hot-platform-recommendations__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-hot-platform-recommendations__cta-button {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-index-hot-platform-recommendations__cta-button:hover {
    background-color: #003ef8;
    transform: translateY(-4px);
}

.page-index-hot-platform-recommendations__cta-image {
    margin-top: 50px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-hot-platform-recommendations__hero-title {
        font-size: 2.5em;
    }
    .page-index-hot-platform-recommendations__hero-description {
        font-size: 1em;
    }
    .page-index-hot-platform-recommendations__section-title {
        font-size: 2em;
    }
    .page-index-hot-platform-recommendations__grid,
    .page-index-hot-platform-recommendations__platform-cards,
    .page-index-hot-platform-recommendations__steps {
        grid-template-columns: 1fr;
    }
    .page-index-hot-platform-recommendations__future-content {
        flex-direction: column;
    }
    .page-index-hot-platform-recommendations__future-image {
        max-width: 100%;
    }
    .page-index-hot-platform-recommendations__cta-title {
        font-size: 2.2em;
    }
    .page-index-hot-platform-recommendations__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-hot-platform-recommendations__hero-section,
    .page-index-hot-platform-recommendations__section,
    .page-index-hot-platform-recommendations__cta-section {
        padding: 60px 0;
    }
    .page-index-hot-platform-recommendations__hero-title {
        font-size: 2em;
    }
    .page-index-hot-platform-recommendations__hero-button,
    .page-index-hot-platform-recommendations__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-hot-platform-recommendations__section-title {
        font-size: 1.8em;
    }
    .page-index-hot-platform-recommendations__grid-item,
    .page-index-hot-platform-recommendations__card,
    .page-index-hot-platform-recommendations__step-item,
    .page-index-hot-platform-recommendations__faq-item {
        padding: 20px;
    }
    .page-index-hot-platform-recommendations__card-title {
        font-size: 1.5em;
    }
    .page-index-hot-platform-recommendations__faq-question {
        font-size: 1.2em;
    }
    .page-index-hot-platform-recommendations__faq-answer {
        font-size: 0.95em;
    }
    .page-index-hot-platform-recommendations__faq-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}