/* style/games-slot-machines.css */
.page-games-slot-machines {
    font-family: 'Arial', sans-serif;
    color: #e5d4b3; /* Light beige for text on dark background */
    background-color: #1A2B4C; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-games-slot-machines__container--center {
    text-align: center;
}

.page-games-slot-machines__section {
    padding: 60px 0;
    background-color: #1A2B4C;
    color: #e5d4b3;
}

.page-games-slot-machines__section--dark {
    background-color: #12203a; /* Slightly darker variant for contrast */
}

.page-games-slot-machines__section--cta {
    background-color: #FFD700; /* Auxiliary color for CTA section */
    color: #1A2B4C; /* Dark text on gold background */
    padding: 80px 0;
}

.page-games-slot-machines__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #2c4a7e);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-slot-machines__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slot-machines__hero-description {
    font-size: 1.3em;
    color: #e5d4b3;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-games-slot-machines__hero-actions {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-games-slot-machines__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;
    border: none;
    cursor: pointer;
}

.page-games-slot-machines__btn--primary {
    background-color: #FFD700;
    color: #1A2B4C;
}

.page-games-slot-machines__btn--primary:hover {
    background-color: #e5d4b3;
    transform: translateY(-3px);
}

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

.page-games-slot-machines__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-3px);
}

.page-games-slot-machines__btn--tertiary {
    background-color: #e5d4b3; /* A lighter shade for a distinct CTA */
    color: #1A2B4C;
}

.page-games-slot-machines__btn--tertiary:hover {
    background-color: #cccccc;
    transform: translateY(-3px);
}

.page-games-slot-machines__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-slot-machines__hero-image-wrapper {
    margin-top: 30px;
}

.page-games-slot-machines__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-games-slot-machines__subsection-title {
    font-size: 2em;
    color: #e5d4b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-games-slot-machines__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5d4b3;
}

.page-games-slot-machines__list, .page-games-slot-machines__numbered-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #e5d4b3;
}

.page-games-slot-machines__list li, .page-games-slot-machines__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-games-slot-machines__list strong, .page-games-slot-machines__numbered-list strong {
    color: #FFD700;
}

.page-games-slot-machines__image-card {
    background-color: #1A2B4C;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-games-slot-machines__image-card-img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-games-slot-machines__image-card-caption {
    font-style: italic;
    color: #e5d4b3;
    font-size: 0.95em;
}

.page-games-slot-machines__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-games-slot-machines__card {
    background-color: #12203a;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-slot-machines__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-games-slot-machines__card-img {
    max-width: 100%;
    height: 200px; /* Fixed height for image consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-games-slot-machines__card-text {
    font-size: 1em;
    color: #e5d4b3;
}

.page-games-slot-machines__call-to-action-box {
    background-color: #FFD700;
    color: #1A2B4C;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-slot-machines__call-to-action-text {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 0;
}

.page-games-slot-machines__link {
    color: #1A2B4C;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-games-slot-machines__link:hover {
    color: #0d1a2f;
}

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

.page-games-slot-machines__feature-item {
    background-color: #12203a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__feature-icon {
    max-width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.page-games-slot-machines__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-slot-machines__feature-description {
    font-size: 1em;
    color: #e5d4b3;
}

.page-games-slot-machines__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.page-games-slot-machines__faq-list {
    margin-top: 30px;
}

.page-games-slot-machines__faq-item {
    background-color: #12203a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-slot-machines__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-slot-machines__faq-answer {
    font-size: 1em;
    color: #e5d4b3;
}

.page-games-slot-machines .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-games-slot-machines__hero-title {
        font-size: 3em;
    }
    .page-games-slot-machines__hero-description {
        font-size: 1.2em;
    }
    .page-games-slot-machines__section-title {
        font-size: 2.5em;
    }
    .page-games-slot-machines__subsection-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-games-slot-machines__hero-title {
        font-size: 2.5em;
    }
    .page-games-slot-machines__hero-description {
        font-size: 1.1em;
    }
    .page-games-slot-machines__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-slot-machines__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-games-slot-machines__section {
        padding: 40px 0;
    }
    .page-games-slot-machines__section-title {
        font-size: 2em;
    }
    .page-games-slot-machines__subsection-title {
        font-size: 1.6em;
    }
    .page-games-slot-machines__grid-3-col, .page-games-slot-machines__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-games-slot-machines__card-img {
        height: 180px;
    }
    .page-games-slot-machines__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-slot-machines__btn--large {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-games-slot-machines__hero-title {
        font-size: 2em;
    }
    .page-games-slot-machines__hero-description {
        font-size: 1em;
    }
    .page-games-slot-machines__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-games-slot-machines__section-title {
        font-size: 1.8em;
    }
    .page-games-slot-machines__subsection-title {
        font-size: 1.4em;
    }
    .page-games-slot-machines__card-title {
        font-size: 1.5em;
    }
    .page-games-slot-machines__faq-question {
        font-size: 1.3em;
    }
}