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

.page-e2bet-games-slots {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light gray for general text on dark backgrounds */
    line-height: 1.6;
}

.page-e2bet-games-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-e2bet-games-slots__hero {
    background: linear-gradient(135deg, #0A2342 0%, #2A4876 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-e2bet-games-slots__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-e2bet-games-slots__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    overflow: hidden;
}

.page-e2bet-games-slots__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-e2bet-games-slots__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-e2bet-games-slots__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-e2bet-games-slots__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-e2bet-games-slots__btn {
    display: inline-block;
    padding: 15px 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;
    white-space: nowrap;
}

.page-e2bet-games-slots__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-e2bet-games-slots__btn--primary:hover {
    background-color: #e6c200;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-e2bet-games-slots__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-e2bet-games-slots__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-e2bet-games-slots__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-e2bet-games-slots__btn--outline:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-e2bet-games-slots__section {
    padding: 60px 0;
    background-color: #0A2342; /* Main dark blue background */
}

.page-e2bet-games-slots__section:nth-of-type(even) {
    background-color: #1A365B; /* Slightly lighter dark blue for alternating sections */
}

.page-e2bet-games-slots__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-e2bet-games-slots__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-e2bet-games-slots__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F8F8F8;
}

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

.page-e2bet-games-slots__feature-item {
    background-color: #1A365B;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-e2bet-games-slots__feature-item:hover {
    transform: translateY(-5px);
}

.page-e2bet-games-slots__feature-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-e2bet-games-slots__feature-item p {
    color: #DCDCDC;
    font-size: 1em;
}

.page-e2bet-games-slots__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-e2bet-games-slots__game-type-card {
    background-color: #1A365B;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
}

.page-e2bet-games-slots__game-type-card:hover {
    background-color: #2A4876;
}

.page-e2bet-games-slots__game-type-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-e2bet-games-slots__game-type-card p {
    color: #DCDCDC;
    font-size: 0.95em;
}

.page-e2bet-games-slots__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #F8F8F8;
}

.page-e2bet-games-slots__list li {
    background-color: #1A365B;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
}

.page-e2bet-games-slots__list li strong {
    color: #FFD700;
}

.page-e2bet-games-slots__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-e2bet-games-slots__download-content,
.page-e2bet-games-slots__responsible-gaming-content {
    flex: 1;
}

.page-e2bet-games-slots__download-image-wrapper,
.page-e2bet-games-slots__responsible-gaming-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-e2bet-games-slots__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-e2bet-games-slots__image-wrapper--full-width {
    margin-top: 40px;
    text-align: center;
}

.page-e2bet-games-slots__promo-card {
    background-color: #1A365B;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-e2bet-games-slots__promo-icon {
    flex-shrink: 0;
}

.page-e2bet-games-slots__promo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.page-e2bet-games-slots__promo-details {
    flex-grow: 1;
}

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

.page-e2bet-games-slots__promo-details p {
    color: #DCDCDC;
    margin-bottom: 15px;
}

.page-e2bet-games-slots__faq-item {
    background-color: #1A365B;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-e2bet-games-slots__faq-question {
    font-size: 1.2em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-e2bet-games-slots__faq-question:hover {
    background-color: #2A4876;
}

.page-e2bet-games-slots__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-e2bet-games-slots__faq-item.active .page-e2bet-games-slots__faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-e2bet-games-slots__faq-answer {
    padding: 0 25px 20px;
    color: #DCDCDC;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-e2bet-games-slots__faq-item.active .page-e2bet-games-slots__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 20px;
}

.page-e2bet-games-slots__cta-bottom {
    background-color: #FFD700; /* Gold background for strong CTA */
    color: #0A2342;
    padding: 80px 0;
    text-align: center;
}

.page-e2bet-games-slots__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2342; /* Dark blue text on gold */
}

.page-e2bet-games-slots__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333333; /* Darker text for readability */
}

.page-e2bet-games-slots__cta-bottom .page-e2bet-games-slots__btn--primary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
}

.page-e2bet-games-slots__cta-bottom .page-e2bet-games-slots__btn--primary:hover {
    background-color: #1A365B;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-e2bet-games-slots__hero-title {
        font-size: 2.8em;
    }
    .page-e2bet-games-slots__section-title {
        font-size: 2em;
    }
    .page-e2bet-games-slots__container--flex {
        flex-direction: column;
        text-align: center;
    }
    .page-e2bet-games-slots__download-image-wrapper,
    .page-e2bet-games-slots__responsible-gaming-image-wrapper {
        margin-top: 30px;
    }
    .page-e2bet-games-slots__promo-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-e2bet-games-slots__hero {
        padding: 60px 0;
    }
    .page-e2bet-games-slots__hero-title {
        font-size: 2.2em;
    }
    .page-e2bet-games-slots__hero-description {
        font-size: 1.1em;
    }
    .page-e2bet-games-slots__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-e2bet-games-slots__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-e2bet-games-slots__section {
        padding: 40px 0;
    }
    .page-e2bet-games-slots__section-title {
        font-size: 1.8em;
    }
    .page-e2bet-games-slots__subsection-title {
        font-size: 1.5em;
    }
    .page-e2bet-games-slots__text-content {
        font-size: 1em;
    }
    .page-e2bet-games-slots__cta-title {
        font-size: 2em;
    }
    .page-e2bet-games-slots__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-e2bet-games-slots__hero-title {
        font-size: 1.8em;
    }
    .page-e2bet-games-slots__hero-description {
        font-size: 0.95em;
    }
    .page-e2bet-games-slots__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-e2bet-games-slots__section-title {
        font-size: 1.5em;
    }
    .page-e2bet-games-slots__feature-title,
    .page-e2bet-games-slots__game-type-title,
    .page-e2bet-games-slots__promo-title {
        font-size: 1.2em;
    }
    .page-e2bet-games-slots__faq-question {
        font-size: 1.1em;
    }
}