/* style/slot-games-new-releases.css */
.page-slot-games-new-releases {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #0A1931;
    line-height: 1.6;
}

.page-slot-games-new-releases .highlight {
    color: #FFD700;
}

.page-slot-games-new-releases__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-slot-games-new-releases__hero-content {
    z-index: 2;
    max-width: 900px;
}

.page-slot-games-new-releases__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games-new-releases__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-slot-games-new-releases__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games-new-releases__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-slot-games-new-releases__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-slot-games-new-releases__cta-button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #e6c200;
}

.page-slot-games-new-releases__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}

.page-slot-games-new-releases__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games-new-releases__section:nth-of-type(even) {
    background-color: #1a2a47;
}

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

.page-slot-games-new-releases__section-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: bold;
}

.page-slot-games-new-releases__section-description {
    font-size: 1.15em;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

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

.page-slot-games-new-releases__feature-item,
.page-slot-games-new-releases__game-card,
.page-slot-games-new-releases__promo-card {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games-new-releases__feature-item:hover,
.page-slot-games-new-releases__game-card:hover,
.page-slot-games-new-releases__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-slot-games-new-releases__feature-item h3,
.page-slot-games-new-releases__game-title,
.page-slot-games-new-releases__promo-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slot-games-new-releases__feature-item p,
.page-slot-games-new-releases__game-desc,
.page-slot-games-new-releases__promo-card p {
    font-size: 1em;
    color: #c0c0c0;
}

.page-slot-games-new-releases__game-image,
.page-slot-games-new-releases__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-slot-games-new-releases__game-provider {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.page-slot-games-new-releases__game-button,
.page-slot-games-new-releases__promo-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-slot-games-new-releases__game-button:hover,
.page-slot-games-new-releases__promo-button:hover {
    background-color: #e6c200;
}

.page-slot-games-new-releases__view-all {
    margin-top: 50px;
}

.page-slot-games-new-releases__cta-button--wide {
    min-width: 300px;
}

.page-slot-games-new-releases__strategy {
    background-color: #0A1931;
}

.page-slot-games-new-releases__strategy-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.page-slot-games-new-releases__strategy-image {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games-new-releases__strategy-text {
    width: 55%;
}

.page-slot-games-new-releases__strategy-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-slot-games-new-releases__strategy-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-slot-games-new-releases__strategy-text li {
    background-color: #1a2a47;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
    color: #c0c0c0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-releases__strategy-text li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
}

.page-slot-games-new-releases__promotions {
    background-color: #1a2a47;
}

.page-slot-games-new-releases__promo-note {
    margin-top: 40px;
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-slot-games-new-releases__faq-items {
    margin-top: 40px;
    text-align: left;
}

.page-slot-games-new-releases__faq-item {
    background-color: #1a2a47;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-new-releases__faq-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-slot-games-new-releases__faq-item p {
    color: #c0c0c0;
    font-size: 1.05em;
    margin-top: 15px;
    display: block; /* Ensure it's always visible */
}

.page-slot-games-new-releases__text-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-slot-games-new-releases__text-link:hover {
    color: #e6c200;
}

.page-slot-games-new-releases__cta-final {
    background-color: #0A1931;
    padding-bottom: 80px;
}

.page-slot-games-new-releases__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slot-games-new-releases__hero-title {
        font-size: 2.8em;
    }
    .page-slot-games-new-releases__hero-subtitle {
        font-size: 1.2em;
    }
    .page-slot-games-new-releases__section-title {
        font-size: 2.2em;
    }
    .page-slot-games-new-releases__strategy-content {
        flex-direction: column;
        align-items: center;
    }
    .page-slot-games-new-releases__strategy-image,
    .page-slot-games-new-releases__strategy-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-slot-games-new-releases__hero-section {
        padding: 60px 15px;
    }
    .page-slot-games-new-releases__hero-title {
        font-size: 2.2em;
    }
    .page-slot-games-new-releases__hero-subtitle {
        font-size: 1em;
    }
    .page-slot-games-new-releases__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slot-games-new-releases__section {
        padding: 40px 0;
    }
    .page-slot-games-new-releases__section-title {
        font-size: 1.8em;
    }
    .page-slot-games-new-releases__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-slot-games-new-releases__features-grid,
    .page-slot-games-new-releases__game-grid,
    .page-slot-games-new-releases__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games-new-releases__game-image,
    .page-slot-games-new-releases__promo-image {
        height: 180px;
    }
    .page-slot-games-new-releases__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games-new-releases__cta-button--wide {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-slot-games-new-releases__hero-title {
        font-size: 1.8em;
    }
    .page-slot-games-new-releases__hero-subtitle {
        font-size: 0.9em;
    }
    .page-slot-games-new-releases__cta-button {
        margin: 8px 0;
    }
    .page-slot-games-new-releases__section-title {
        font-size: 1.5em;
    }
    .page-slot-games-new-releases__feature-item h3,
    .page-slot-games-new-releases__game-title,
    .page-slot-games-new-releases__promo-card h3 {
        font-size: 1.4em;
    }
    .page-slot-games-new-releases__faq-item h3 {
        font-size: 1.2em;
    }
    .page-slot-games-new-releases__strategy-text li {
        font-size: 0.9em;
        padding: 12px 15px;
    }
}