/* style/game-types-slots-games-detailed-introduction.css */
.page-game-types-slots-games-detailed-introduction {
    font-family: 'Arial', sans-serif;
    color: #1A2E4E; /* Dark blue for primary text */
    background-color: #f8f8f8; /* Very light grey background */
    line-height: 1.6;
}

.page-game-types-slots-games-detailed-introduction__hero {
    position: relative;
    height: 450px; /* Adjusted height for better visual */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A2E4E 0%, #3a5c88 100%); /* Dark blue gradient */
}

.page-game-types-slots-games-detailed-introduction__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 1;
}

.page-game-types-slots-games-detailed-introduction__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF; /* White text on dark background */
    max-width: 900px;
    padding: 0 20px;
}

.page-game-types-slots-games-detailed-introduction__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-slots-games-detailed-introduction__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-game-types-slots-games-detailed-introduction__section {
    padding: 60px 0;
}

.page-game-types-slots-games-detailed-introduction__introduction {
    background-color: #FFFFFF;
}

.page-game-types-slots-games-detailed-introduction__game-types {
    background-color: #f0f4f8; /* Slightly lighter background */
}

.page-game-types-slots-games-detailed-introduction__mechanics {
    background-color: #FFFFFF;
}

.page-game-types-slots-games-detailed-introduction__features {
    background-color: #f0f4f8;
}

.page-game-types-slots-games-detailed-introduction__tips {
    background-color: #FFFFFF;
}

.page-game-types-slots-games-detailed-introduction__why-choose {
    background-color: #1A2E4E; /* Dark blue background */
    color: #FFFFFF; /* White text on dark blue */
}

.page-game-types-slots-games-detailed-introduction__why-choose .page-game-types-slots-games-detailed-introduction__section-title,
.page-game-types-slots-games-detailed-introduction__why-choose h3 {
    color: #FFD700; /* Gold titles on dark blue */
}

.page-game-types-slots-games-detailed-introduction__cta {
    background-color: #FFD700; /* Gold background */
    color: #1A2E4E; /* Dark blue text on gold */
    text-align: center;
}

.page-game-types-slots-games-detailed-introduction__cta .page-game-types-slots-games-detailed-introduction__section-title {
    color: #1A2E4E;
}

.page-game-types-slots-games-detailed-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-types-slots-games-detailed-introduction__section-title {
    font-size: 2.5em;
    color: #1A2E4E;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.page-game-types-slots-games-detailed-introduction__why-choose .page-game-types-slots-games-detailed-introduction__section-title {
    color: #FFD700;
}

.page-game-types-slots-games-detailed-introduction__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-types-slots-games-detailed-introduction__grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-game-types-slots-games-detailed-introduction__grid-item:hover {
    transform: translateY(-5px);
}

.page-game-types-slots-games-detailed-introduction__item-title {
    font-size: 1.6em;
    color: #1A2E4E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-types-slots-games-detailed-introduction__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-top: 20px;
}

.page-game-types-slots-games-detailed-introduction__list li {
    margin-bottom: 10px;
    color: inherit; /* Inherit color from parent section */
}

.page-game-types-slots-games-detailed-introduction__list--checked {
    list-style: none;
    padding-left: 0;
}

.page-game-types-slots-games-detailed-introduction__list--checked li {
    position: relative;
    padding-left: 30px;
}

.page-game-types-slots-games-detailed-introduction__list--checked li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
}

.page-game-types-slots-games-detailed-introduction__ordered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-top: 20px;
}

.page-game-types-slots-games-detailed-introduction__ordered-list li {
    margin-bottom: 10px;
    color: inherit;
}

.page-game-types-slots-games-detailed-introduction__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-game-types-slots-games-detailed-introduction__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E4E; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-game-types-slots-games-detailed-introduction__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-game-types-slots-games-detailed-introduction__btn--secondary {
    background-color: #1A2E4E; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-game-types-slots-games-detailed-introduction__btn--secondary:hover {
    background-color: #0d1e3a; /* Darker blue on hover */
    transform: translateY(-3px);
}

.page-game-types-slots-games-detailed-introduction__image-fullwidth {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-slots-games-detailed-introduction__image-centered {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-slots-games-detailed-introduction__cta-note {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-slots-games-detailed-introduction__hero-title {
        font-size: 2.8em;
    }
    .page-game-types-slots-games-detailed-introduction__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-types-slots-games-detailed-introduction__section-title {
        font-size: 2em;
    }
    .page-game-types-slots-games-detailed-introduction__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-types-slots-games-detailed-introduction__hero {
        height: 350px;
    }
    .page-game-types-slots-games-detailed-introduction__hero-title {
        font-size: 2.2em;
    }
    .page-game-types-slots-games-detailed-introduction__hero-subtitle {
        font-size: 1em;
    }
    .page-game-types-slots-games-detailed-introduction__section {
        padding: 40px 0;
    }
    .page-game-types-slots-games-detailed-introduction__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-types-slots-games-detailed-introduction__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-types-slots-games-detailed-introduction__image-centered {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-game-types-slots-games-detailed-introduction__hero {
        height: 300px;
    }
    .page-game-types-slots-games-detailed-introduction__hero-title {
        font-size: 1.8em;
    }
    .page-game-types-slots-games-detailed-introduction__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-types-slots-games-detailed-introduction__section {
        padding: 30px 0;
    }
    .page-game-types-slots-games-detailed-introduction__section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .page-game-types-slots-games-detailed-introduction__container {
        padding: 0 15px;
    }
    .page-game-types-slots-games-detailed-introduction__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}