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

/* Base styles for the page content */
.page-slots-how-to-play {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-slots-how-to-play__hero {
    background: linear-gradient(135deg, #0A2463, #FFD700);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-slots-how-to-play__hero .page-slots-how-to-play__container {
    position: relative;
    z-index: 1;
}

.page-slots-how-to-play__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-slots-how-to-play__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-how-to-play__button {
    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, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-how-to-play__button--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-slots-how-to-play__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-slots-how-to-play__button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-slots-how-to-play__button--secondary:hover {
    background-color: #061840;
    transform: translateY(-2px);
}

/* General Section Styles */
.page-slots-how-to-play__section {
    padding: 60px 0;
}

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

.page-slots-how-to-play__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

/* Intro Section */
.page-slots-how-to-play__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-slots-how-to-play__content-grid > div {
    flex: 1;
}

.page-slots-how-to-play__image-wrapper {
    text-align: center;
}

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

.page-slots-how-to-play__text-content h3 {
    color: #0A2463;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-slots-how-to-play__text-content ul {
    list-style: none;
    padding-left: 0;
}

.page-slots-how-to-play__text-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-slots-how-to-play__text-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
}

/* Terms Section */
.page-slots-how-to-play__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-slots-how-to-play__list--columns li {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #0A2463;
}

.page-slots-how-to-play__list--columns li strong {
    color: #0A2463;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-slots-how-to-play__cta-box {
    background-color: #0A2463;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-how-to-play__cta-box p {
    font-size: 1.3em;
    margin-bottom: 25px;
}

.page-slots-how-to-play__cta-box .page-slots-how-to-play__button {
    background-color: #FFD700;
    color: #0A2463;
}

.page-slots-how-to-play__cta-box .page-slots-how-to-play__button:hover {
    background-color: #e6c200;
}

/* Guide Section */
.page-slots-how-to-play__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-slots-how-to-play__step-item {
    background-color: #ffffff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-slots-how-to-play__step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.page-slots-how-to-play__step-number {
    counter-increment: step-counter;
    background-color: #0A2463;
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-slots-how-to-play__step-item h3 {
    color: #0A2463;
    font-size: 1.8em;
    margin: 0;
    text-align: left;
}

.page-slots-how-to-play__step-item p {
    max-width: 700px;
    margin: 15px auto;
}

.page-slots-how-to-play__step-item a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: underline;
}

.page-slots-how-to-play__step-item a:hover {
    color: #FFD700;
}

.page-slots-how-to-play__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Types Section */
.page-slots-how-to-play__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slots-how-to-play__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-how-to-play__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slots-how-to-play__card h3 {
    color: #0A2463;
    font-size: 1.6em;
    margin-bottom: 15px;
}

/* Tips Section */
.page-slots-how-to-play__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slots-how-to-play__tip-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-slots-how-to-play__tip-item:hover {
    transform: translateY(-5px);
}

.page-slots-how-to-play__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-slots-how-to-play__tip-item h3 {
    color: #0A2463;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-slots-how-to-play__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 4px solid #FFD700;
}

.page-slots-how-to-play__faq-item h3 {
    color: #0A2463;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-slots-how-to-play__faq-item p {
    margin-bottom: 0;
}

.page-slots-how-to-play__faq-item .page-slots-how-to-play__button {
    margin-top: 20px;
}

/* CTA Section */
.page-slots-how-to-play__section--cta {
    background-color: #0A2463;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-slots-how-to-play__section--cta .page-slots-how-to-play__section-title {
    color: #FFD700;
}

.page-slots-how-to-play__section--cta .page-slots-how-to-play__section-title::after {
    background-color: #ffffff;
}

.page-slots-how-to-play__section--cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-slots-how-to-play__section--cta .page-slots-how-to-play__button {
    background-color: #FFD700;
    color: #0A2463;
}

.page-slots-how-to-play__section--cta .page-slots-how-to-play__button:hover {
    background-color: #e6c200;
}

/* Floating Promo */
.page-slots-how-to-play__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A2463;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(100%);
    animation: slideIn 0.8s forwards 2s;
}

.page-slots-how-to-play__floating-content p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.4;
}

.page-slots-how-to-play__floating-content p strong {
    color: #FFD700;
}

.page-slots-how-to-play__floating-button {
    background-color: #FFD700;
    color: #0A2463;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.page-slots-how-to-play__floating-button:hover {
    background-color: #e6c200;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-how-to-play__title {
        font-size: 2.8em;
    }
    .page-slots-how-to-play__subtitle {
        font-size: 1.2em;
    }
    .page-slots-how-to-play__section-title {
        font-size: 2em;
    }
    .page-slots-how-to-play__content-grid {
        flex-direction: column;
    }
    .page-slots-how-to-play__content-grid > div {
        width: 100%;
    }
    .page-slots-how-to-play__image-wrapper {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
    .page-slots-how-to-play__step-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .page-slots-how-to-play__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-slots-how-to-play__step-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .page-slots-how-to-play__hero {
        padding: 60px 0;
    }
    .page-slots-how-to-play__title {
        font-size: 2.2em;
    }
    .page-slots-how-to-play__subtitle {
        font-size: 1em;
    }
    .page-slots-how-to-play__section {
        padding: 40px 0;
    }
    .page-slots-how-to-play__section-title {
        font-size: 1.8em;
    }
    .page-slots-how-to-play__list--columns, .page-slots-how-to-play__card-grid, .page-slots-how-to-play__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-how-to-play__floating-promo {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        gap: 10px;
    }
    .page-slots-how-to-play__floating-content p {
        font-size: 0.8em;
    }
    .page-slots-how-to-play__floating-button {
        padding: 6px 10px;
        font-size: 0.8em;
    }
}