/* style/index-popular-games-recommendation.css */

/* General Page Styling */
.page-index-popular-games-recommendation {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark backgrounds */
    background-color: #1A202C; /* Dark background */
    line-height: 1.6;
}

.page-index-popular-games-recommendation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-index-popular-games-recommendation__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-popular-games-recommendation__section--dark {
    background-color: #2A303C;
}

.page-index-popular-games-recommendation__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-popular-games-recommendation__subtitle {
    font-size: 1.4em;
    color: #FFD700; /* Gold for subtitles */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-popular-games-recommendation__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-popular-games-recommendation__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-index-popular-games-recommendation__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-popular-games-recommendation__link:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Buttons */
.page-index-popular-games-recommendation__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.page-index-popular-games-recommendation__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-index-popular-games-recommendation__btn--primary:hover {
    background-color: #e6c200;
    color: #000;
    transform: translateY(-2px);
}

.page-index-popular-games-recommendation__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-index-popular-games-recommendation__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-index-popular-games-recommendation__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-index-popular-games-recommendation__cta-group {
    margin-top: 40px;
}

/* Hero Section */
.page-index-popular-games-recommendation__hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1A202C 0%, #4a5568 100%); /* Dark gradient */
    color: #FFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-index-popular-games-recommendation__hero-section .page-index-popular-games-recommendation__container {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-popular-games-recommendation__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-index-popular-games-recommendation__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
}

/* Features Grid */
.page-index-popular-games-recommendation__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-popular-games-recommendation__feature-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD700;
}

.page-index-popular-games-recommendation__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-popular-games-recommendation__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons golden */
}

.page-index-popular-games-recommendation__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-popular-games-recommendation__feature-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Game Categories */
.page-index-popular-games-recommendation__game-category {
    margin-bottom: 60px;
    background-color: #2A303C;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-index-popular-games-recommendation__game-category--reverse .page-index-popular-games-recommendation__category-content {
    flex-direction: row-reverse;
}

.page-index-popular-games-recommendation__category-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-index-popular-games-recommendation__category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 1.5px;
}

.page-index-popular-games-recommendation__category-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index-popular-games-recommendation__category-image {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-index-popular-games-recommendation__category-text-content {
    flex: 1;
}

.page-index-popular-games-recommendation__game-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #E0E0E0;
}

.page-index-popular-games-recommendation__game-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-index-popular-games-recommendation__game-list li::before {
    content: '⭐'; /* Star icon */
    position: absolute;
    left: 0;
    color: #FFD700;
}

/* Steps List */
.page-index-popular-games-recommendation__steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-index-popular-games-recommendation__steps-list li {
    background-color: #1A202C;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #E0E0E0;
}

.page-index-popular-games-recommendation__steps-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-index-popular-games-recommendation__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #1A202C;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
}

/* App Download Section */
.page-index-popular-games-recommendation__app-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-index-popular-games-recommendation__app-image {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-popular-games-recommendation__app-info {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.page-index-popular-games-recommendation__app-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #E0E0E0;
}

.page-index-popular-games-recommendation__app-features-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-index-popular-games-recommendation__app-features-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-popular-games-recommendation__hero-section {
        min-height: 500px;
    }
    .page-index-popular-games-recommendation__main-title {
        font-size: 2.5em;
    }
    .page-index-popular-games-recommendation__subtitle {
        font-size: 1.2em;
    }
    .page-index-popular-games-recommendation__section-title {
        font-size: 2em;
    }
    .page-index-popular-games-recommendation__category-content {
        flex-direction: column;
    }
    .page-index-popular-games-recommendation__category-image {
        width: 80%;
        margin-bottom: 30px;
    }
    .page-index-popular-games-recommendation__game-category--reverse .page-index-popular-games-recommendation__category-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-index-popular-games-recommendation__hero-section {
        padding: 80px 0;
    }
    .page-index-popular-games-recommendation__main-title {
        font-size: 2em;
    }
    .page-index-popular-games-recommendation__subtitle {
        font-size: 1em;
    }
    .page-index-popular-games-recommendation__section {
        padding: 40px 0;
    }
    .page-index-popular-games-recommendation__section-title {
        font-size: 1.8em;
    }
    .page-index-popular-games-recommendation__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-index-popular-games-recommendation__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-index-popular-games-recommendation__app-download {
        flex-direction: column;
        text-align: center;
    }
    .page-index-popular-games-recommendation__app-info {
        text-align: center;
    }
    .page-index-popular-games-recommendation__app-features-list {
        text-align: left; /* Keep list left aligned */
        max-width: 400px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .page-index-popular-games-recommendation__main-title {
        font-size: 1.8em;
    }
    .page-index-popular-games-recommendation__section-title {
        font-size: 1.6em;
    }
    .page-index-popular-games-recommendation__features-grid {
        grid-template-columns: 1fr;
    }
    .page-index-popular-games-recommendation__category-image {
        width: 95%;
    }
    .page-index-popular-games-recommendation__steps-list li {
        padding-left: 50px;
    }
    .page-index-popular-games-recommendation__steps-list li::before {
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}