/* style/games-slots-new-games.css */

.page-games-slots-new-games {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-games-slots-new-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-slots-new-games__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a61 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-games-slots-new-games__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slots-new-games__hero-subtitle {
    font-size: 1.3em;
    color: #e5dfd3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-slots-new-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-games-slots-new-games__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-games-slots-new-games__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
}

.page-games-slots-new-games__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-games-slots-new-games__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
}

.page-games-slots-new-games__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-games-slots-new-games__button--play {
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-games-slots-new-games__button--play:hover {
    background-color: #e6c200;
}

.page-games-slots-new-games__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 5px;
}

.page-games-slots-new-games__button--small:hover {
    background-color: #e6c200;
}

.page-games-slots-new-games__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-games-slots-new-games__section {
    padding: 80px 0;
    text-align: center;
}

.page-games-slots-new-games__section:nth-of-type(even) {
    background-color: #242c3b; /* Slightly lighter dark background */
}

.page-games-slots-new-games__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-games-slots-new-games__section-description {
    font-size: 1.1em;
    color: #e5dfd3;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

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

.page-games-slots-new-games__grid-item {
    background-color: #2b3547; /* Darker background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-games-slots-new-games__feature-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-slots-new-games__grid-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-slots-new-games__grid-description {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
}

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

.page-games-slots-new-games__category-item {
    background-color: #2b3547;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-games-slots-new-games__category-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-slots-new-games__category-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-slots-new-games__category-description {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-games-slots-new-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-games-slots-new-games__promo-list li {
    background-color: #2b3547;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-games-slots-new-games__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-slots-new-games__promo-description {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
}

.page-games-slots-new-games__cta-center {
    margin-top: 50px;
}

.page-games-slots-new-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-slots-new-games__step-item {
    background-color: #2b3547;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-games-slots-new-games__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: #FFD700;
    color: #1A202C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-games-slots-new-games__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-slots-new-games__step-description {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-games-slots-new-games__flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.page-games-slots-new-games__flex-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #2b3547;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 300px;
}

.page-games-slots-new-games__security-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-games-slots-new-games__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-slots-new-games__text-content {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
}

.page-games-slots-new-games__app-download {
    background-color: #242c3b;
}

.page-games-slots-new-games__app-actions {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-games-slots-new-games__app-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFD700;
}

.page-games-slots-new-games__faq-item {
    background-color: #2b3547;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
}

.page-games-slots-new-games__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-games-slots-new-games__faq-answer {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
}

.page-games-slots-new-games__final-cta {
    background-color: #1A202C;
    border-top: 2px solid #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-games-slots-new-games__hero-title {
        font-size: 2.5em;
    }

    .page-games-slots-new-games__hero-subtitle {
        font-size: 1.1em;
    }

    .page-games-slots-new-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-games-slots-new-games__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }

    .page-games-slots-new-games__section-title {
        font-size: 2em;
    }

    .page-games-slots-new-games__section-description {
        font-size: 0.95em;
    }

    .page-games-slots-new-games__grid-item,
    .page-games-slots-new-games__category-item,
    .page-games-slots-new-games__promo-list li,
    .page-games-slots-new-games__step-item,
    .page-games-slots-new-games__flex-item {
        padding: 20px;
    }

    .page-games-slots-new-games__grid-title,
    .page-games-slots-new-games__category-title,
    .page-games-slots-new-games__promo-title,
    .page-games-slots-new-games__step-title,
    .page-games-slots-new-games__sub-title,
    .page-games-slots-new-games__faq-question {
        font-size: 1.5em;
    }

    .page-games-slots-new-games__flex-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .page-games-slots-new-games__hero {
        padding: 60px 0;
    }

    .page-games-slots-new-games__hero-title {
        font-size: 2em;
    }

    .page-games-slots-new-games__section {
        padding: 50px 0;
    }

    .page-games-slots-new-games__section-title {
        font-size: 1.8em;
    }

    .page-games-slots-new-games__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}