/* style/game-categories-new-games-showcase.css */
.page-game-categories-new-games-showcase {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-game-categories-new-games-showcase__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-categories-new-games-showcase__hero-section {
    background: linear-gradient(135deg, #CC0000 0%, #a00000 100%); /* Darker red for better contrast */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-categories-new-games-showcase__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title for luxury feel */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-categories-new-games-showcase__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
}

.page-game-categories-new-games-showcase__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-game-categories-new-games-showcase__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-game-categories-new-games-showcase__section-title {
    font-size: 2.5em;
    color: #CC0000;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-game-categories-new-games-showcase__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-categories-new-games-showcase__game-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px 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;
}

.page-game-categories-new-games-showcase__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-categories-new-games-showcase__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-game-categories-new-games-showcase__game-title {
    font-size: 1.8em;
    color: #CC0000;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__game-category {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-game-categories-new-games-showcase__game-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-game-categories-new-games-showcase__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin: 10px;
    border: none;
}

.page-game-categories-new-games-showcase__button--primary {
    background-color: #FFD700;
    color: #CC0000;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-game-categories-new-games-showcase__button--primary:hover {
    background-color: #e6c200;
    color: #990000;
    transform: translateY(-3px);
}

.page-game-categories-new-games-showcase__button--secondary {
    background-color: #CC0000;
    color: #FFD700;
    box-shadow: 0 4px 10px rgba(204, 0, 0, 0.4);
    margin-top: auto; /* Push button to bottom of card */
    padding: 12px 25px;
}

.page-game-categories-new-games-showcase__button--secondary:hover {
    background-color: #990000;
    color: #ffe033;
    transform: translateY(-3px);
}

.page-game-categories-new-games-showcase__button--link {
    background: none;
    color: #CC0000;
    border: 2px solid #CC0000;
    padding: 12px 25px;
}

.page-game-categories-new-games-showcase__button--link:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

.page-game-categories-new-games-showcase__call-to-action {
    background-color: #FFD700;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.page-game-categories-new-games-showcase__call-to-action--bottom {
    background-color: #CC0000;
    color: #FFFFFF;
    margin-top: 60px;
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.2);
}

.page-game-categories-new-games-showcase__call-to-action--bottom .page-game-categories-new-games-showcase__call-to-action-title {
    color: #FFD700;
}

.page-game-categories-new-games-showcase__call-to-action--bottom .page-game-categories-new-games-showcase__call-to-action-description {
    color: #FFF;
}

.page-game-categories-new-games-showcase__call-to-action-title {
    font-size: 2.2em;
    color: #CC0000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__call-to-action-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.page-game-categories-new-games-showcase__why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-categories-new-games-showcase__why-item {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-game-categories-new-games-showcase__why-item:hover {
    transform: translateY(-5px);
}

.page-game-categories-new-games-showcase__why-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(204, 0, 0, 0.3));
}

.page-game-categories-new-games-showcase__why-title {
    font-size: 1.8em;
    color: #CC0000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__why-description {
    font-size: 1em;
    color: #666;
}

.page-game-categories-new-games-showcase__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-categories-new-games-showcase__guide-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    position: relative;
    padding-left: 80px;
    border-left: 5px solid #FFD700;
}

.page-game-categories-new-games-showcase__guide-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #CC0000;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__guide-step-title {
    font-size: 1.5em;
    color: #CC0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__guide-list p {
    color: #555;
    font-size: 1.05em;
}

.page-game-categories-new-games-showcase__guide-list p a {
    color: #CC0000;
    text-decoration: underline;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__guide-list p a:hover {
    color: #FFD700;
}

.page-game-categories-new-games-showcase__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-game-categories-new-games-showcase__faq-question {
    font-size: 1.3em;
    color: #CC0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__faq-answer {
    font-size: 1em;
    color: #666;
}

.page-game-categories-new-games-showcase__faq-answer a {
    color: #CC0000;
    text-decoration: underline;
    font-weight: bold;
}

.page-game-categories-new-games-showcase__faq-answer a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-categories-new-games-showcase__hero-title {
        font-size: 2.8em;
    }
    .page-game-categories-new-games-showcase__section-title {
        font-size: 2em;
    }
    .page-game-categories-new-games-showcase__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-categories-new-games-showcase__hero-title {
        font-size: 2.2em;
    }
    .page-game-categories-new-games-showcase__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-categories-new-games-showcase__section {
        padding: 40px 0;
    }
    .page-game-categories-new-games-showcase__section-title {
        font-size: 1.8em;
    }
    .page-game-categories-new-games-showcase__why-grid {
        grid-template-columns: 1fr;
    }
    .page-game-categories-new-games-showcase__guide-list li {
        padding-left: 60px;
    }
    .page-game-categories-new-games-showcase__guide-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 25px;
    }
    .page-game-categories-new-games-showcase__call-to-action {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-game-categories-new-games-showcase__hero-title {
        font-size: 1.8em;
    }
    .page-game-categories-new-games-showcase__hero-subtitle {
        font-size: 1em;
    }
    .page-game-categories-new-games-showcase__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-game-categories-new-games-showcase__call-to-action-title {
        font-size: 1.8em;
    }
    .page-game-categories-new-games-showcase__call-to-action-description {
        font-size: 1em;
    }
    .page-game-categories-new-games-showcase__game-grid {
        grid-template-columns: 1fr;
    }
    .page-game-categories-new-games-showcase__game-title {
        font-size: 1.5em;
    }
}