/* style/slots-games.css */
.page-slots-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-slots-games-section {
    padding: 60px 0;
    text-align: center;
}

.page-slots-games-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-slots-games-main-title {
    font-size: 3.2em;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slots-games-subtitle {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-slots-games-section-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-hero-section {
    background: linear-gradient(135deg, #003366, #1a4a7e);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-slots-games-hero-section .page-slots-games-main-title,
.page-slots-games-hero-section .page-slots-games-subtitle {
    color: #fff;
}

.page-slots-games-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
    height: auto;
    opacity: 0.7;
    z-index: 0;
}

.page-slots-games-hero-section .page-slots-games-container {
    position: relative;
    z-index: 1;
}

.page-slots-games-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-slots-games-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-slots-games-button-primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

.page-slots-games-button-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-slots-games-button-secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
}

.page-slots-games-button-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-slots-games-features {
    background-color: #f8f8f8;
}

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

.page-slots-games-feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slots-games-feature-item:hover {
    transform: translateY(-5px);
}

.page-slots-games-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-slots-games-feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slots-games-feature-text {
    color: #666;
    font-size: 1em;
}

.page-slots-games-game-types {
    background-color: #e6f0f7;
}

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

.page-slots-games-type-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-slots-games-type-item:hover {
    transform: translateY(-5px);
}

.page-slots-games-type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-slots-games-type-item h3,
.page-slots-games-type-item p {
    padding: 0 25px;
}

.page-slots-games-type-title {
    font-size: 1.6em;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slots-games-type-text {
    color: #666;
    font-size: 1em;
    padding-bottom: 25px;
}

.page-slots-games-promotions {
    background-color: #f8f8f8;
}

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

.page-slots-games-promo-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-slots-games-promo-item:hover {
    transform: translateY(-5px);
}

.page-slots-games-promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-slots-games-promo-item h3,
.page-slots-games-promo-item p,
.page-slots-games-promo-item .page-slots-games-button {
    padding: 0 25px;
}

.page-slots-games-promo-title {
    font-size: 1.4em;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slots-games-promo-text {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-slots-games-promo-item .page-slots-games-button {
    margin-bottom: 25px;
}

.page-slots-games-guide-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-slots-games-guide-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.page-slots-games-guide-step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slots-games-guide-step-text {
    color: #666;
    font-size: 1.05em;
}

.page-slots-games-text-link {
    color: #003366;
    text-decoration: underline;
}

.page-slots-games-text-link:hover {
    color: #FFD700;
}

.page-slots-games-cta-bottom {
    margin-top: 50px;
}

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

.page-slots-games-detail-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-slots-games-detail-item:hover {
    transform: translateY(-5px);
}

.page-slots-games-detail-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-slots-games-detail-item h3,
.page-slots-games-detail-item p,
.page-slots-games-detail-item .page-slots-games-button {
    padding: 0 25px;
}

.page-slots-games-detail-title {
    font-size: 1.4em;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slots-games-detail-title a {
    color: #003366;
    text-decoration: none;
}

.page-slots-games-detail-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-slots-games-detail-text {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-slots-games-detail-item .page-slots-games-button {
    margin-bottom: 25px;
}

.page-slots-games-faq {
    background-color: #f8f8f8;
}

.page-slots-games-faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-slots-games-faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-slots-games-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-slots-games-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slots-games-faq-answer {
    color: #666;
    font-size: 1em;
    margin-top: 10px;
    display: none;
}

.page-slots-games-faq-answer.active {
    display: block;
}

.page-slots-games-cta-final {
    background: linear-gradient(135deg, #003366, #1a4a7e);
    color: #fff;
    padding: 80px 0;
}

.page-slots-games-cta-final .page-slots-games-section-title,
.page-slots-games-cta-final .page-slots-games-section-description {
    color: #fff;
}

.page-slots-games .highlight {
    color: #003366;
    font-weight: bold;
}

.page-slots-games-hero-section .highlight {
    color: #FFD700;
}

.page-slots-games-cta-final .highlight {
    color: #FFD700;
}

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

    .page-slots-games-section-title {
        font-size: 2em;
    }

    .page-slots-games-hero-image {
        max-width: 70%;
        position: static;
        margin-top: 40px;
        opacity: 1;
    }

    .page-slots-games-hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-slots-games-main-title {
        font-size: 2em;
    }

    .page-slots-games-subtitle {
        font-size: 1.1em;
    }

    .page-slots-games-section-title {
        font-size: 1.8em;
    }

    .page-slots-games-section {
        padding: 40px 0;
    }

    .page-slots-games-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slots-games-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-slots-games-feature-grid,
    .page-slots-games-type-grid,
    .page-slots-games-promo-grid,
    .page-slots-games-detail-grid {
        grid-template-columns: 1fr;
    }

    .page-slots-games-hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-slots-games-main-title {
        font-size: 1.8em;
    }

    .page-slots-games-section-title {
        font-size: 1.6em;
    }

    .page-slots-games-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-slots-games-feature-item,
    .page-slots-games-type-item,
    .page-slots-games-promo-item,
    .page-slots-games-detail-item,
    .page-slots-games-faq-item {
        padding: 20px;
    }
}