/* style/game-demos-new-releases.css */

.page-game-demos-new-releases {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e5dfca; /* Light text for dark background */
    background-color: #1A2035; /* Primary dark background */
}

.page-game-demos-new-releases a {
    color: #FFD700; /* Accent color for links */
    text-decoration: none;
}

.page-game-demos-new-releases a:hover {
    text-decoration: underline;
    color: #b39700; /* Darker accent on hover */
}

.page-game-demos-new-releases__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1A2035, #2c3652);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-game-demos-new-releases__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-game-demos-new-releases__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-demos-new-releases__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e5dfca;
}

.page-game-demos-new-releases__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-game-demos-new-releases__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-game-new-releases__introduction, 
.page-game-demos-new-releases__how-to-play, 
.page-game-demos-new-releases__exclusive-offers, 
.page-game-demos-new-releases__why-23wim, 
.page-game-demos-new-releases__faq, 
.page-game-demos-new-releases__final-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.page-game-demos-new-releases__introduction p,
.page-game-demos-new-releases__how-to-play p,
.page-game-demos-new-releases__exclusive-offers p,
.page-game-demos-new-releases__why-23wim p,
.page-game-demos-new-releases__final-cta p,
.page-game-demos-new-releases__faq-answer {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfca;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-demos-new-releases__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for buttons */
    color: #1A2035; /* Primary color for button text */
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-game-demos-new-releases__cta-button:hover {
    background-color: #b39700; /* Darker accent on hover */
    transform: translateY(-3px);
    text-decoration: none;
}

.page-game-demos-new-releases__cta-button--primary {
    background-color: #FFD700;
    color: #1A2035;
}

.page-game-demos-new-releases__cta-button--secondary {
    background-color: #5f6372;
    color: #FFFFFF;
    margin-left: 20px;
}

.page-game-demos-new-releases__cta-button--secondary:hover {
    background-color: #767986;
}

.page-game-demos-new-releases__small-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2035;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-game-demos-new-releases__small-cta:hover {
    background-color: #b39700;
    text-decoration: none;
}

.page-game-demos-new-releases__game-categories {
    padding: 40px 20px;
    background-color: #2c3652;
}

.page-game-demos-new-releases__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-game-demos-new-releases__category-item {
    background-color: #1A2035;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #FFD700;
}

.page-game-demos-new-releases__category-item:hover {
    transform: translateY(-5px);
}

.page-game-demos-new-releases__category-item img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #5f6372;
}

.page-game-demos-new-releases__category-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-demos-new-releases__category-item p {
    color: #e5dfca;
    font-size: 1em;
    text-align: center;
}

.page-game-demos-new-releases__how-to-play .page-game-demos-new-releases__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-game-demos-new-releases__steps-list li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    font-size: 1.1em;
    color: #e5dfca;
}

.page-game-demos-new-releases__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A2035;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-game-demos-new-releases__text-link {
    color: #FFD700;
    font-weight: bold;
}

.page-game-demos-new-releases__text-link:hover {
    color: #b39700;
}

.page-game-demos-new-releases__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-demos-new-releases__exclusive-offers {
    background-color: #2c3652;
    padding: 40px 20px;
}

.page-game-demos-new-releases__offer-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-game-demos-new-releases__offer-list li {
    background-color: #1A2035;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #e5dfca;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-demos-new-releases__offer-list li strong {
    color: #FFD700;
}

.page-game-demos-new-releases__offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-game-demos-new-releases__why-23wim {
    padding: 40px 20px;
}

.page-game-demos-new-releases__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-game-demos-new-releases__feature-item {
    background-color: #2c3652;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #5f6372;
}

.page-game-demos-new-releases__feature-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.page-game-demos-new-releases__feature-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-demos-new-releases__feature-item p {
    color: #e5dfca;
    font-size: 1em;
    text-align: center;
}

.page-game-demos-new-releases__faq {
    background-color: #1A2035;
    padding: 40px 20px;
}

.page-game-demos-new-releases__faq-item {
    background-color: #2c3652;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-game-demos-new-releases__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-demos-new-releases__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-demos-new-releases__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-demos-new-releases__faq-answer {
    display: none;
    margin-top: 10px;
    color: #e5dfca;
    font-size: 1em;
}

.page-game-demos-new-releases__faq-answer.active {
    display: block;
}

.page-game-demos-new-releases__final-cta {
    padding: 60px 20px;
    background: linear-gradient(45deg, #1A2035, #FFD700);
    color: #FFFFFF;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-game-demos-new-releases__final-cta .page-game-demos-new-releases__section-title {
    color: #1A2035;
}

.page-game-demos-new-releases__final-cta .page-game-demos-new-releases__section-title::after {
    background-color: #1A2035;
}

.page-game-demos-new-releases__final-cta p {
    color: #1A2035;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-demos-new-releases__hero {
        padding: 40px 15px;
    }

    .page-game-demos-new-releases__hero-title {
        font-size: 2em;
    }

    .page-game-demos-new-releases__hero-subtitle {
        font-size: 1em;
    }

    .page-game-demos-new-releases__section-title {
        font-size: 1.8em;
    }

    .page-game-demos-new-releases__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-demos-new-releases__category-grid,
    .page-game-demos-new-releases__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-game-demos-new-releases__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-demos-new-releases__cta-button--secondary {
        margin-left: 0;
    }

    .page-game-demos-new-releases__how-to-play .page-game-demos-new-releases__steps-list,
    .page-game-demos-new-releases__offer-list,
    .page-game-demos-new-releases__faq-item {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-demos-new-releases__hero-title {
        font-size: 1.8em;
    }

    .page-game-demos-new-releases__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-demos-new-releases__steps-list li {
        padding-left: 40px;
        font-size: 1em;
    }

    .page-game-demos-new-releases__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}