/* style/index-hot-games.css */

/* General Page Styling */
.page-index-hot-games {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* White text for contrast on dark background */
    background-color: #001a33; /* Darker shade of primary for main background */
    line-height: 1.6;
}

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

.page-index-hot-games__highlight {
    color: #FFCC00; /* Secondary color for highlights */
}

/* Sections */
.page-index-hot-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-hot-games__section-title {
    font-size: 2.8em;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-hot-games__section-subtitle {
    font-size: 1.2em;
    color: #b0c4de; /* Lighter shade of blue for sub-text */
    margin-bottom: 40px;
}

.page-index-hot-games__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-top: 30px;
}

/* Hero Section */
.page-index-hot-games__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Primary to darker primary */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-hot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-index-hot-games__hero-description {
    font-size: 1.4em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-hot-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-index-hot-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-index-hot-games__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-index-hot-games__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-index-hot-games__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-index-hot-games__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-index-hot-games__btn--inline {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-index-hot-games__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-index-hot-games__btn--xl {
    padding: 22px 45px;
    font-size: 1.5em;
}

/* Why Choose Section */
.page-index-hot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-hot-games__feature-item {
    background-color: #002244; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-hot-games__feature-item:hover {
    transform: translateY(-10px);
    background-color: #002b55;
}

.page-index-hot-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5)); /* Subtle glow */
}

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

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

/* Game Categories Section */
.page-index-hot-games__game-category {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    text-align: left;
}

.page-index-hot-games__game-category--reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.page-index-hot-games__game-info {
    flex: 1;
}

.page-index-hot-games__game-title {
    font-size: 2.2em;
    color: #FFCC00;
    margin-bottom: 20px;
}

.page-index-hot-games__game-description {
    color: #e0e0e0;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.page-index-hot-games__game-image-wrapper {
    flex: 1;
    min-width: 400px;
}

.page-index-hot-games__game-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-index-hot-games__game-image:hover {
    transform: scale(1.02);
}

/* How To Start Section */
.page-index-hot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-hot-games__step-item {
    background-color: #002244;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #FFCC00;
}

.page-index-hot-games__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-index-hot-games__step-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
}

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

/* Promotions Section */
.page-index-hot-games__promotion-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-index-hot-games__promotion-list li {
    background-color: #002244;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-index-hot-games__promotion-list li:hover {
    background-color: #002b55;
}

/* Tips Section */
.page-index-hot-games__tips-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-index-hot-games__tips-list li {
    background-color: #002244;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.8;
    border-left: 4px solid #0055aa; /* A slightly lighter blue for distinction */
}

.page-index-hot-games__tips-list li strong {
    color: #FFCC00;
}

.page-index-hot-games__illustration-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-index-hot-games__testimonial-item {
    background-color: #002244;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 5px solid #FFCC00;
}

.page-index-hot-games__testimonial-quote {
    font-style: italic;
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-index-hot-games__testimonial-author {
    font-weight: bold;
    color: #FFCC00;
}

/* CTA Section */
.page-index-hot-games__cta-section {
    background: linear-gradient(135deg, #003366, #001a33);
    padding: 80px 0;
    text-align: center;
}

.page-index-hot-games__cta-title {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-index-hot-games__cta-description {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-hot-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-hot-games__section-title {
        font-size: 2.2em;
    }
    .page-index-hot-games__game-category {
        flex-direction: column;
        text-align: center;
    }
    .page-index-hot-games__game-category--reverse {
        flex-direction: column;
        text-align: center;
    }
    .page-index-hot-games__game-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-index-hot-games__cta-title {
        font-size: 2.5em;
    }
    .page-index-hot-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-index-hot-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-hot-games__hero-description {
        font-size: 1.1em;
    }
    .page-index-hot-games__section-title {
        font-size: 1.8em;
    }
    .page-index-hot-games__section-subtitle {
        font-size: 1em;
    }
    .page-index-hot-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-hot-games__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-hot-games__btn--xl {
        padding: 18px 35px;
        font-size: 1.2em;
    }
    .page-index-hot-games__features-grid,
    .page-index-hot-games__steps-grid,
    .page-index-hot-games__testimonial-grid {
        grid-template-columns: 1fr;
    }
    .page-index-hot-games__game-title {
        font-size: 1.8em;
    }
    .page-index-hot-games__game-description {
        font-size: 1em;
    }
    .page-index-hot-games__cta-title {
        font-size: 2em;
    }
}

@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__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-index-hot-games__btn {
        width: 100%;
    }
}