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

.page-index-hot-games-recommendation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-hot-games-recommendation .hero-section {
    background-color: #0A2342; /* Main color */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-hot-games-recommendation .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hot-games-recommendation .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.page-index-hot-games-recommendation .hero-actions .btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.page-index-hot-games-recommendation .primary-btn {
    background-color: #FFD700; /* Accent color */
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-index-hot-games-recommendation .primary-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-hot-games-recommendation .secondary-btn {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-hot-games-recommendation .secondary-btn:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
}

.page-index-hot-games-recommendation .section-title {
    font-size: 2.8em;
    color: #0A2342; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-index-hot-games-recommendation .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
}

.page-index-hot-games-recommendation .featured-games-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-index-hot-games-recommendation .game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 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;
    justify-content: space-between;
}

.page-index-hot-games-recommendation .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games-recommendation .game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-hot-games-recommendation .game-title {
    font-size: 1.6em;
    color: #0A2342;
    margin: 20px 15px 10px;
    min-height: 40px;
}

.page-index-hot-games-recommendation .game-title a {
    color: #0A2342;
    text-decoration: none;
}

.page-index-hot-games-recommendation .game-title a:hover {
    color: #FFD700;
}

.page-index-hot-games-recommendation .game-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-index-hot-games-recommendation .game-card .small-btn {
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 15px 20px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.page-index-hot-games-recommendation .game-card .small-btn:hover {
    background-color: #e6c200;
}

.page-index-hot-games-recommendation .why-choose-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-index-hot-games-recommendation .feature-item {
    text-align: center;
    padding: 20px;
    background-color: #f3f9ff; /* Light blue background */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-hot-games-recommendation .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-hot-games-recommendation .feature-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-index-hot-games-recommendation .feature-description {
    font-size: 1em;
    color: #666;
}

.page-index-hot-games-recommendation .guide-section {
    background-color: #0A2342; /* Main color */
    color: #FFFFFF;
    padding: 80px 0;
}

.page-index-hot-games-recommendation .guide-section .section-title,
.page-index-hot-games-recommendation .guide-section .section-description {
    color: #FFFFFF;
}

.page-index-hot-games-recommendation .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-index-hot-games-recommendation .step-card {
    background-color: #1A3A6A; /* Slightly lighter main color */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation .step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700; /* Accent color */
    margin-bottom: 20px;
}

.page-index-hot-games-recommendation .step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-hot-games-recommendation .step-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-index-hot-games-recommendation .step-card .primary-btn {
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-index-hot-games-recommendation .mobile-app-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-index-hot-games-recommendation .mobile-app-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.page-index-hot-games-recommendation .app-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.page-index-hot-games-recommendation .app-content .section-title {
    text-align: left;
    padding-top: 0;
}

.page-index-hot-games-recommendation .app-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.page-index-hot-games-recommendation .app-stores {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.page-index-hot-games-recommendation .app-store-icon {
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.page-index-hot-games-recommendation .app-store-icon:hover {
    transform: translateY(-5px);
}

.page-index-hot-games-recommendation .app-image-wrapper {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.page-index-hot-games-recommendation .app-mockup-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation .tech-tips-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-index-hot-games-recommendation .tip-card {
    background-color: #f3f9ff; /* Light blue background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-hot-games-recommendation .tip-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-index-hot-games-recommendation .tip-description {
    font-size: 0.95em;
    color: #666;
}

.page-index-hot-games-recommendation .faqs-section {
    padding: 80px 0;
    background-color: #0A2342; /* Main color */
    color: #FFFFFF;
}

.page-index-hot-games-recommendation .faqs-section .section-title {
    color: #FFD700;
}

.page-index-hot-games-recommendation .faq-item {
    background-color: #1A3A6A; /* Slightly lighter main color */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation .faq-question {
    font-size: 1.6em;
    color: #FFD700; /* Accent color */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-index-hot-games-recommendation .faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    display: none;
    padding-top: 10px;
}

.page-index-hot-games-recommendation .faq-item.active .faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-hot-games-recommendation .hero-title {
        font-size: 2.8em;
    }
    .page-index-hot-games-recommendation .section-title {
        font-size: 2.2em;
    }
    .page-index-hot-games-recommendation .mobile-app-section .container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-hot-games-recommendation .app-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .page-index-hot-games-recommendation .app-content .section-title,
    .page-index-hot-games-recommendation .app-description {
        text-align: center;
    }
    .page-index-hot-games-recommendation .app-stores {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-index-hot-games-recommendation .hero-title {
        font-size: 2.2em;
    }
    .page-index-hot-games-recommendation .hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-hot-games-recommendation .section-title {
        font-size: 1.8em;
    }
    .page-index-hot-games-recommendation .game-grid,
    .page-index-hot-games-recommendation .features-grid,
    .page-index-hot-games-recommendation .guide-steps,
    .page-index-hot-games-recommendation .tips-grid {
        grid-template-columns: 1fr;
    }
    .page-index-hot-games-recommendation .hero-actions .btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .page-index-hot-games-recommendation .hero-title {
        font-size: 1.8em;
    }
    .page-index-hot-games-recommendation .hero-subtitle {
        font-size: 1em;
    }
    .page-index-hot-games-recommendation .section-title {
        font-size: 1.6em;
    }
    .page-index-hot-games-recommendation .game-title {
        font-size: 1.4em;
    }
    .page-index-hot-games-recommendation .feature-title,
    .page-index-hot-games-recommendation .step-title,
    .page-index-hot-games-recommendation .tip-title,
    .page-index-hot-games-recommendation .faq-question {
        font-size: 1.3em;
    }
    .page-index-hot-games-recommendation .hero-section {
        padding: 60px 0;
    }
    .page-index-hot-games-recommendation .app-store-icon {
        width: 100px;
    }
}