/* style/slots-games-how-to-play.css */

.page-slots-games-how-to-play {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

.page-slots-games-how-to-play__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-slots-games-how-to-play__hero {
    background: linear-gradient(135deg, #0A2342 0%, #2a4c7e 100%); /* Dark blue gradient */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-slots-games-how-to-play__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-slots-games-how-to-play__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-how-to-play__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-slots-games-how-to-play__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-slots-games-how-to-play__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-slots-games-how-to-play__section-title {
    font-size: 2.5em;
    color: #0A2342; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-slots-games-how-to-play__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-slots-games-how-to-play__sub-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-slots-games-how-to-play__text-highlight {
    color: #0A2342;
    font-weight: bold;
}

.page-slots-games-how-to-play__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-slots-games-how-to-play__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    margin-top: 20px;
}

.page-slots-games-how-to-play__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-how-to-play__btn--secondary {
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-slots-games-how-to-play__btn--secondary:hover {
    background-color: #1a3a60; /* Slightly lighter dark blue on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-how-to-play__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-slots-games-how-to-play__button-group {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-slots-games-how-to-play__list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-slots-games-how-to-play__list li {
    background-color: #f8f8f8;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid #FFD700; /* Gold accent */
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    color: #333;
}

.page-slots-games-how-to-play__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-slots-games-how-to-play__list--checkmarks li::before {
    content: '✓';
    color: #0A2342;
    font-weight: bold;
    margin-right: 10px;
}

.page-slots-games-how-to-play__nested-list {
    list-style: disc;
    padding-left: 30px;
    margin-top: 10px;
}

.page-slots-games-how-to-play__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 25px;
}

.page-slots-games-how-to-play__ordered-list li {
    margin-bottom: 10px;
    color: #333;
}

.page-slots-games-how-to-play__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-slots-games-how-to-play__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games-how-to-play__app-image {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-how-to-play__faq-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-slots-games-how-to-play__faq-question {
    font-size: 1.3em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-slots-games-how-to-play__faq-answer {
    color: #555;
}

.page-slots-games-how-to-play__call-to-action {
    background: linear-gradient(135deg, #0A2342, #1a3a60);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
    margin-top: 40px;
}

.page-slots-games-how-to-play__call-to-action .page-slots-games-how-to-play__section-title {
    color: #FFD700;
}

.page-slots-games-how-to-play__call-to-action .page-slots-games-how-to-play__section-title::after {
    background-color: #FFD700;
}

.page-slots-games-how-to-play__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Floating Ad Menu */
.page-slots-games-how-to-play__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #FFD700; /* Gold background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    animation: page-slots-games-how-to-play__pulse 2s infinite;
}

.page-slots-games-how-to-play__floating-ad:hover {
    transform: scale(1.05);
}

.page-slots-games-how-to-play__floating-ad a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    text-decoration: none;
    color: #0A2342; /* Dark blue text */
    font-weight: bold;
    gap: 10px;
}

.page-slots-games-how-to-play__ad-text {
    font-size: 1.1em;
    white-space: nowrap;
}

.page-slots-games-how-to-play__ad-button {
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-slots-games-how-to-play__ad-button:hover {
    background-color: #1a3a60;
    color: #fff;
}

@keyframes page-slots-games-how-to-play__pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-slots-games-how-to-play__hero-title {
        font-size: 2.5em;
    }

    .page-slots-games-how-to-play__hero-subtitle {
        font-size: 1em;
    }

    .page-slots-games-how-to-play__section-title {
        font-size: 2em;
    }

    .page-slots-games-how-to-play__sub-title {
        font-size: 1.5em;
    }

    .page-slots-games-how-to-play__list--columns {
        grid-template-columns: 1fr;
    }

    .page-slots-games-how-to-play__btn-group {
        flex-direction: column;
    }

    .page-slots-games-how-to-play__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-slots-games-how-to-play__floating-ad {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .page-slots-games-how-to-play__floating-ad a {
        justify-content: center;
        padding: 8px 10px;
    }

    .page-slots-games-how-to-play__ad-text {
        font-size: 0.9em;
    }

    .page-slots-games-how-to-play__ad-button {
        padding: 6px 10px;
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .page-slots-games-how-to-play__hero {
        padding: 60px 0;
    }

    .page-slots-games-how-to-play__hero-title {
        font-size: 2em;
    }

    .page-slots-games-how-to-play__section {
        padding: 40px 0;
    }

    .page-slots-games-how-to-play__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-slots-games-how-to-play__btn--large {
        padding: 14px 25px;
        font-size: 1.1em;
    }

    .page-slots-games-how-to-play__button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-slots-games-how-to-play__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}