/* style/game-guides-slot-games-guide.css */

.page-game-guides-slot-games-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-game-guides-slot-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-guides-slot-games-guide__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Main color gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-game-guides-slot-games-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Accent color for title */
}

.page-game-guides-slot-games-guide__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-slot-games-guide__cta-button {
    display: inline-block;
    background-color: #FFC107; /* Accent color */
    color: #007BFF; /* Main color for text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFC107;
}

.page-game-guides-slot-games-guide__cta-button:hover {
    background-color: #e0a800; /* Darker accent on hover */
    color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-game-guides-slot-games-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-game-guides-slot-games-guide__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-guides-slot-games-guide__cta-button--secondary {
    background-color: #007BFF; /* Main color */
    color: #fff;
    border: 2px solid #007BFF;
    margin-left: 15px;
}

.page-game-guides-slot-games-guide__cta-button--secondary:hover {
    background-color: #0056b3; /* Darker main color on hover */
    color: #FFC107;
    border-color: #0056b3;
}

.page-game-guides-slot-games-guide__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-game-guides-slot-games-guide__section-title {
    font-size: 2.2em;
    color: #007BFF; /* Main color */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-game-guides-slot-games-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107; /* Accent color */
    border-radius: 2px;
}

.page-game-guides-slot-games-guide__sub-section-title {
    font-size: 1.8em;
    color: #0056b3; /* Darker shade of main color */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFC107; /* Accent color */
    padding-left: 15px;
}

.page-game-guides-slot-games-guide p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #444;
}

.page-game-guides-slot-games-guide__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-game-guides-slot-games-guide__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-game-guides-slot-games-guide__list li strong {
    color: #007BFF;
}

.page-game-guides-slot-games-guide__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-game-guides-slot-games-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-game-guides-slot-games-guide__image:hover {
    transform: scale(1.02);
}

.page-game-guides-slot-games-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-slot-games-guide__main-title {
        font-size: 2.5em;
    }

    .page-game-guides-slot-games-guide__subtitle {
        font-size: 1.1em;
    }

    .page-game-guides-slot-games-guide__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-slot-games-guide__sub-section-title {
        font-size: 1.5em;
    }

    .page-game-guides-slot-games-guide__hero-section,
    .page-game-guides-slot-games-guide__content-section {
        padding: 40px 0;
    }

    .page-game-guides-slot-games-guide__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-game-guides-slot-games-guide__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-slot-games-guide__main-title {
        font-size: 2em;
    }

    .page-game-guides-slot-games-guide__cta-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .page-game-guides-slot-games-guide__cta-button--large {
        padding: 15px 30px;
        font-size: 1em;
    }
}