/* style/game-types-slots.css */
.page-game-types-slots {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-game-types-slots__hero-section {
    background: linear-gradient(135deg, #FF4500, #FFD700);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-slots__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff; /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-types-slots__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0; /* Slightly lighter for readability on gradient */
}

.page-game-types-slots__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-game-types-slots__btn--primary {
    background-color: #FF4500;
    color: #ffffff; /* High contrast for primary button */
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.page-game-types-slots__btn--primary:hover {
    background-color: #e63900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.page-game-types-slots__btn--secondary {
    background-color: transparent;
    color: #ffffff; /* High contrast for secondary button */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-game-types-slots__btn--secondary:hover {
    background-color: #FFD700;
    color: #333; /* Dark text on light hover background */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-game-types-slots__section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-game-types-slots__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-game-types-slots__section-title {
    font-size: 2.5em;
    color: #FF4500;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-types-slots__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
}

.page-game-types-slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-game-types-slots__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-slots__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-types-slots__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(255, 69, 0, 0.3));
}

.page-game-types-slots__feature-title {
    font-size: 1.5em;
    color: #FF4500;
    margin-bottom: 15px;
}

.page-game-types-slots__feature-text {
    font-size: 1em;
    color: #666;
}

.page-game-types-slots__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-game-types-slots__list li {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-game-types-slots__list-title {
    font-size: 1.8em;
    color: #FF4500;
    margin-bottom: 10px;
}

.page-game-types-slots__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-game-types-slots__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-slots__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-types-slots__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-types-slots__game-title {
    font-size: 1.4em;
    color: #FF4500;
    margin: 15px 10px 5px;
}

.page-game-types-slots__game-provider {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.page-game-types-slots__game-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 15px;
}

.page-game-types-slots__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-game-types-slots__steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-game-types-slots__steps-list li {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 80px;
}

.page-game-types-slots__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 25px;
    top: 25px;
    background-color: #FF4500;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.4);
}

.page-game-types-slots__steps-title {
    font-size: 1.6em;
    color: #FF4500;
    margin-bottom: 10px;
}

.page-game-types-slots__inline-link {
    color: #FF4500;
    text-decoration: underline;
    font-weight: bold;
}

.page-game-types-slots__inline-link:hover {
    color: #e63900;
}

.page-game-types-slots__cta-block {
    background-color: #FFD700;
    color: #333; /* Dark text on gold background */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.page-game-types-slots__cta-text {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333; /* Ensure high contrast */
}

.page-game-types-slots__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-types-slots__tips-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-game-types-slots__tips-list li {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 30px;
    border-left: 5px solid #FF4500;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-game-types-slots__tips-title {
    font-size: 1.6em;
    color: #FF4500;
    margin-bottom: 10px;
}

.page-game-types-slots__download-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-game-types-slots__download-text {
    flex: 1;
}

.page-game-types-slots__download-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-game-types-slots__download-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-types-slots__download-features li {
    font-size: 1em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.page-game-types-slots__download-features li::before {
    content: '✓';
    color: #FF4500;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-game-types-slots__download-image {
    flex: 1;
    text-align: center;
}

.page-game-types-slots__app-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-types-slots__btn--download {
    background-color: #FF4500;
    color: #ffffff;
}

.page-game-types-slots__faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-game-types-slots__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-game-types-slots__faq-question {
    font-size: 1.4em;
    color: #FF4500;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-game-types-slots__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-types-slots__faq-item.active .page-game-types-slots__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-types-slots__faq-answer {
    font-size: 1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-game-types-slots__faq-item.active .page-game-types-slots__faq-answer {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

.page-game-types-slots__section--final-cta {
    background: linear-gradient(135deg, #FFD700, #FF4500);
    color: #ffffff;
    text-align: center;
}

.page-game-types-slots__section--final-cta .page-game-types-slots__section-title {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-game-types-slots__section--final-cta .page-game-types-slots__section-intro {
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-slots__hero-title {
        font-size: 2.5em;
    }
    .page-game-types-slots__section-title {
        font-size: 2em;
    }
    .page-game-types-slots__download-content {
        flex-direction: column;
        text-align: center;
    }
    .page-game-types-slots__download-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-game-types-slots__hero-section {
        padding: 80px 0;
    }
    .page-game-types-slots__hero-title {
        font-size: 2em;
    }
    .page-game-types-slots__hero-description {
        font-size: 1em;
    }
    .page-game-types-slots__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-types-slots__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-game-types-slots__section {
        padding: 60px 0;
    }
    .page-game-types-slots__section-title {
        font-size: 1.8em;
    }
    .page-game-types-slots__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-game-types-slots__steps-list li, .page-game-types-slots__tips-list li {
        padding-left: 60px;
    }
    .page-game-types-slots__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 20px;
    }
    .page-game-types-slots__feature-card, .page-game-types-slots__game-card {
        padding: 20px;
    }
    .page-game-types-slots__faq-item {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .page-game-types-slots__hero-title {
        font-size: 1.8em;
    }
    .page-game-types-slots__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-game-types-slots__section-title {
        font-size: 1.5em;
    }
    .page-game-types-slots__list-title, .page-game-types-slots__steps-title, .page-game-types-slots__tips-title, .page-game-types-slots__game-title, .page-game-types-slots__faq-question {
        font-size: 1.3em;
    }
    .page-game-types-slots__cta-text {
        font-size: 1.2em;
    }
    .page-game-types-slots__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}