.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #100224; /* Dark background for hero */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Adjust aspect ratio for visual appeal */
}

.page-slot-games__hero-content {
    text-align: center;
    color: #FFFFFF;
    padding: 20px 20px 0;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-slot-games__hero-title {
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.page-slot-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-slot-games__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-slot-games__btn--primary {
    background: linear-gradient(90deg, #EA7C07, #FF5E3A); /* Orange-red gradient for primary CTA */
    color: #FFFFFF;
    border: none;
}

.page-slot-games__btn--primary:hover {
    background: linear-gradient(90deg, #FF5E3A, #EA7C07);
    transform: translateY(-2px);
}

.page-slot-games__btn--secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn--secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-slot-games__intro-section,
.page-slot-games__game-types-section,
.page-slot-games__game-library-section,
.page-slot-games__providers-section,
.page-slot-games__faq-section,
.page-slot-games__blog-news-section,
.page-slot-games__cta-section {
    padding: 40px 0;
    background-color: #100224; /* Consistent dark background */
    color: #FFFFFF;
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.page-slot-games__text-content {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__game-types-section {
    background-color: #0d021f; /* Slightly different dark shade */
}

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

.page-slot-games__type-card {
    background-color: #1a043c; /* Darker card background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slot-games__type-card:hover {
    transform: translateY(-5px);
}

.page-slot-games__type-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-slot-games__type-description {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
}

.page-slot-games__game-library-section {
    padding-bottom: 60px;
}

.page-slot-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-slot-games__game-card {
    background-color: #1a043c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
}

.page-slot-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__game-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.page-slot-games__load-more {
    text-align: center;
    margin-top: 40px;
}

.page-slot-games__providers-section {
    background-color: #0d021f;
}

.page-slot-games__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
}

.page-slot-games__provider-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background-color: #26A9E0;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    min-width: 250px; /* Ensure min size */
    min-height: 125px; /* Ensure min size */
}

.page-slot-games__provider-logo:hover {
    transform: scale(1.05);
}

.page-slot-games__faq-section {
    background-color: #100224;
}

.page-slot-games__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__faq-item {
    background-color: #1a043c;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__faq-answer {
    font-size: 1em;
    color: #ccc;
    line-height: 1.7;
}

.page-slot-games__blog-news-section {
    background-color: #0d021f;
}

.page-slot-games__blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-slot-games__blog-card {
    background-color: #1a043c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: #FFFFFF;
}

.page-slot-games__blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__blog-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-slot-games__blog-title {
    font-size: 1.2em;
    color: #26A9E0;
    margin: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.page-slot-games__blog-date {
    font-size: 0.85em;
    color: #aaa;
    margin: 0 15px 15px;
}

.page-slot-games__cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #100224, #26A9E0); /* Gradient background for CTA */
}

.page-slot-games__cta-title {
    font-size: 2.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-slot-games__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-slot-games__btn--cta {
    background: linear-gradient(90deg, #EA7C07, #FF5E3A);
    color: #FFFFFF;
    border: none;
    padding: 15px 35px;
    font-size: 1.15em;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn--cta:hover {
    background: linear-gradient(90deg, #FF5E3A, #EA7C07);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 2.8em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em); /* Clamp for H1 to prevent overflow */
        margin-top: 15px;
    }
    .page-slot-games__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-slot-games__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-slot-games__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-games__text-content {
        font-size: 0.95em;
    }
    .page-slot-games__type-grid,
    .page-slot-games__game-grid,
    .page-slot-games__provider-grid,
    .page-slot-games__blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .page-slot-games__hero-image,
    .page-slot-games__game-image,
    .page-slot-games__provider-logo,
    .page-slot-games__blog-thumbnail {
        max-width: 100%;
        height: auto; /* Ensure images scale correctly */
    }
    .page-slot-games__cta-title {
        font-size: 1.8em;
    }
    .page-slot-games__cta-description {
        font-size: 1em;
    }
    /* Content area images minimum size check */
    .page-slot-games__game-image, .page-slot-games__provider-logo, .page-slot-games__blog-thumbnail {
        min-width: 200px;
        min-height: 150px; /* Adjusted min-height for aspect ratio, ensuring >200px in one dim */
    }
    .page-slot-games__game-card, .page-slot-games__blog-card, .page-slot-games__provider-logo {
        width: 100%;
    }
}

@media (max-width: 549px) {
    .page-slot-games__hero-section {
        padding-top: 10px; /* Small top padding */
    }
    .page-slot-games__hero-image {
        aspect-ratio: 4/3;
    }
    .page-slot-games__hero-title {
        font-size: clamp(1.5em, 7vw, 2em);
        margin-top: 10px;
    }
    .page-slot-games__hero-description {
        font-size: 0.9em;
    }
    .page-slot-games__section-title {
        font-size: 1.6em;
    }
    .page-slot-games__type-grid,
    .page-slot-games__game-grid,
    .page-slot-games__provider-grid,
    .page-slot-games__blog-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games__cta-title {
        font-size: 1.6em;
    }
    .page-slot-games__cta-description {
        font-size: 0.9em;
    }
}

/* Ensure body padding-top is handled by shared.css */
/* The following padding-top is commented out as per instructions */
/* .page-slot-games { padding-top: var(--header-offset, 122px); } */