/* style/game-types-slots-detailed-guide.css */

.page-game-types-slots-detailed-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-game-types-slots-detailed-guide__hero {
    background: linear-gradient(135deg, #1A237E 0%, #3f47a5 100%); /* Darker blue to lighter blue for contrast */
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-game-types-slots-detailed-guide__hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
    text-align: left;
}

.page-game-types-slots-detailed-guide__hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    line-height: 1.2;
}

.page-game-types-slots-detailed-guide__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-types-slots-detailed-guide__hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.page-game-types-slots-detailed-guide__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-game-types-slots-detailed-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-game-types-slots-detailed-guide__section:last-of-type {
    border-bottom: none;
}

.page-game-types-slots-detailed-guide__section h2 {
    font-size: 2.5em;
    color: #1A237E; /* Deep Royal Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-types-slots-detailed-guide__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-types-slots-detailed-guide__section h3 {
    font-size: 1.8em;
    color: #1A237E;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-types-slots-detailed-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-game-types-slots-detailed-guide__section ul,
.page-game-types-slots-detailed-guide__section ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-game-types-slots-detailed-guide__section ol {
    list-style-type: decimal;
}

.page-game-types-slots-detailed-guide__section li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-types-slots-detailed-guide__section li p {
    margin-top: 5px;
    margin-bottom: 0;
}

.page-game-types-slots-detailed-guide__section a {
    color: #1A237E;
    text-decoration: none;
    font-weight: bold;
}

.page-game-types-slots-detailed-guide__section a:hover {
    text-decoration: underline;
    color: #FFD700;
}

/* Buttons */
.page-game-types-slots-detailed-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-game-types-slots-detailed-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Deep Royal Blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-slots-detailed-guide__btn--primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-game-types-slots-detailed-guide__btn--secondary {
    background-color: #1A237E; /* Deep Royal Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
}

.page-game-types-slots-detailed-guide__btn--secondary:hover {
    background-color: #2b359c;
    transform: translateY(-2px);
}

/* Type Grid */
.page-game-types-slots-detailed-guide__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-game-types-slots-detailed-guide__type-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-slots-detailed-guide__type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-game-types-slots-detailed-guide__type-item img {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-types-slots-detailed-guide__type-item h3 {
    color: #1A237E;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-types-slots-detailed-guide__type-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

/* Images within content sections */
.page-game-types-slots-detailed-guide__section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Final */
.page-game-types-slots-detailed-guide__cta-final {
    background-color: #1A237E;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-game-types-slots-detailed-guide__cta-final h2 {
    color: #FFD700;
}

.page-game-types-slots-detailed-guide__cta-final h2::after {
    background-color: #FFD700;
}

.page-game-types-slots-detailed-guide__cta-final p {
    color: #E0E0E0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-game-types-slots-detailed-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-slots-detailed-guide__hero {
        flex-direction: column;
        text-align: center;
    }
    .page-game-types-slots-detailed-guide__hero-content,
    .page-game-types-slots-detailed-guide__hero-image {
        padding: 0;
    }
    .page-game-types-slots-detailed-guide__hero-content h1 {
        font-size: 2.5em;
    }
    .page-game-types-slots-detailed-guide__hero-content p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-game-types-slots-detailed-guide__section {
        padding: 40px 0;
    }
    .page-game-types-slots-detailed-guide__section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-game-types-slots-detailed-guide__section h3 {
        font-size: 1.6em;
    }
    .page-game-types-slots-detailed-guide__type-grid {
        grid-template-columns: 1fr;
    }
    .page-game-types-slots-detailed-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-types-slots-detailed-guide__hero-content h1 {
        font-size: 2em;
    }
    .page-game-types-slots-detailed-guide__section h2 {
        font-size: 1.8em;
    }
    .page-game-types-slots-detailed-guide__section h3 {
        font-size: 1.4em;
    }
    .page-game-types-slots-detailed-guide__hero-content p,
    .page-game-types-slots-detailed-guide__section p,
    .page-game-types-slots-detailed-guide__section li {
        font-size: 0.95em;
    }
    .page-game-types-slots-detailed-guide__section ul,
    .page-game-types-slots-detailed-guide__section ol {
        margin-left: 15px;
    }
    .page-game-types-slots-detailed-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-types-slots-detailed-guide__btn {
        width: 100%;
        max-width: 280px;
    }
}