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

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

.page-index-hot-games__hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #3a5c9f 100%); /* Adjusted gradient for better contrast */
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.page-index-hot-games__hero-content {
    max-width: 800px;
}

.page-index-hot-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-hot-games__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    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 15px rgba(0, 0, 0, 0.2);
}

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

.page-index-hot-games__cta-button--centered {
    margin-top: 30px;
}

.page-index-hot-games__hero-image-wrapper {
    margin-top: 40px;
}

.page-index-hot-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-hot-games__section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
    position: relative;
}

.page-index-hot-games__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

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

.page-index-hot-games__why-choose-us, 
.page-index-hot-games__game-categories, 
.page-index-hot-games__get-started, 
.page-index-hot-games__promotions, 
.page-index-hot-games__faq, 
.page-index-hot-games__conclusion {
    padding: 80px 0;
}

.page-index-hot-games__why-choose-us {
    background-color: #ffffff;
}

.page-index-hot-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-hot-games__feature-item {
    background-color: #f4f7fc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e6f0;
}

.page-index-hot-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-hot-games__feature-heading {
    font-size: 1.6em;
    color: #0A246A;
    margin-bottom: 15px;
}

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

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

.page-index-hot-games__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e6f0;
}

.page-index-hot-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index-hot-games__game-title {
    font-size: 1.8em;
    color: #0A246A;
    margin: 20px 15px 10px 15px;
}

.page-index-hot-games__game-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 20px 20px 20px;
}

.page-index-hot-games__game-button {
    display: inline-block;
    background-color: #0A246A;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 25px;
    transition: background-color 0.3s ease;
}

.page-index-hot-games__game-button:hover {
    background-color: #1a3c7e;
}

.page-index-hot-games__get-started {
    background-color: #f0f4f8;
}

.page-index-hot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-hot-games__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6f0;
}

.page-index-hot-games__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-hot-games__step-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-hot-games__step-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-index-hot-games__step-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-index-hot-games__step-button:hover {
    background-color: #e6c200;
}

.page-index-hot-games__promotions {
    background-color: #0A246A;
    color: #ffffff;
}

.page-index-hot-games__promotions .page-index-hot-games__section-title {
    color: #FFD700;
}

.page-index-hot-games__promotions .page-index-hot-games__section-title::after {
    background-color: #FFD700;
}

.page-index-hot-games__promotions .page-index-hot-games__section-description {
    color: #e0e0e0;
}

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

.page-index-hot-games__promo-card {
    background-color: #1a3c7e;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2d52a8;
}

.page-index-hot-games__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-bottom: 1px solid #2d52a8;
}

.page-index-hot-games__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 0 15px 10px 15px;
}

.page-index-hot-games__promo-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 20px 20px 20px;
}

.page-index-hot-games__promo-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-hot-games__promo-button:hover {
    background-color: #e6c200;
}

.page-index-hot-games__promo-cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    color: #e0e0e0;
}

.page-index-hot-games__faq {
    background-color: #ffffff;
}

.page-index-hot-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-hot-games__faq-item {
    background-color: #f4f7fc;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index-hot-games__faq-question {
    font-size: 1.4em;
    color: #0A246A;
    margin-bottom: 10px;
}

.page-index-hot-games__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-index-hot-games__conclusion {
    background-color: #f0f4f8;
    text-align: center;
}

.page-index-hot-games__conclusion .page-index-hot-games__section-description {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-hot-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-hot-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-index-hot-games__hero-section {
        flex-direction: column;
        padding: 60px 0;
    }
    .page-index-hot-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-hot-games__hero-subtitle {
        font-size: 1em;
    }
    .page-index-hot-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-hot-games__section-title {
        font-size: 1.8em;
    }
    .page-index-hot-games__section-description {
        font-size: 0.95em;
    }
    .page-index-hot-games__why-choose-us, 
    .page-index-hot-games__game-categories, 
    .page-index-hot-games__get-started, 
    .page-index-hot-games__promotions, 
    .page-index-hot-games__faq, 
    .page-index-hot-games__conclusion {
        padding: 60px 0;
    }
    .page-index-hot-games__feature-item, .page-index-hot-games__game-card, .page-index-hot-games__step-item, .page-index-hot-games__promo-card {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .page-index-hot-games__hero-title {
        font-size: 1.8em;
    }
    .page-index-hot-games__section-title {
        font-size: 1.5em;
    }
    .page-index-hot-games__feature-heading, .page-index-hot-games__game-title, .page-index-hot-games__step-heading, .page-index-hot-games__promo-title, .page-index-hot-games__faq-question {
        font-size: 1.3em;
    }
    .page-index-hot-games__feature-description, .page-index-hot-games__game-description, .page-index-hot-games__step-description, .page-index-hot-games__promo-description, .page-index-hot-games__faq-answer {
        font-size: 0.9em;
    }
    .page-index-hot-games__cta-button, .page-index-hot-games__game-button, .page-index-hot-games__step-button, .page-index-hot-games__promo-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}