/* style/s666-gaming-platform-game-types-overview.css */
.page-s666-gaming-platform-game-types-overview {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F8F8;
}

.page-s666-gaming-platform-game-types-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-s666-gaming-platform-game-types-overview__hero-section {
    background: linear-gradient(135deg, #1A2E40 0%, #3A5F7F 50%, #FFD700 100%); /* Adjusted gradient for better brand representation */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-s666-gaming-platform-game-types-overview__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_background]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-s666-gaming-platform-game-types-overview__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.page-s666-gaming-platform-game-types-overview__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.page-s666-gaming-platform-game-types-overview__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E40;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.page-s666-gaming-platform-game-types-overview__button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-s666-gaming-platform-game-types-overview__button--primary {
    background-color: #FFD700;
    color: #1A2E40;
}

.page-s666-gaming-platform-game-types-overview__button--primary:hover {
    background-color: #E6C200;
}

/* Content Section */
.page-s666-gaming-platform-game-types-overview__content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-s666-gaming-platform-game-types-overview__section-title {
    font-size: 2.5em;
    color: #1A2E40;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-s666-gaming-platform-game-types-overview__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-s666-gaming-platform-game-types-overview__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-s666-gaming-platform-game-types-overview__content-section h3 {
    font-size: 1.8em;
    color: #1A2E40;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-s666-gaming-platform-game-types-overview__game-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #FDFDFD;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.page-s666-gaming-platform-game-types-overview__game-category.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-s666-gaming-platform-game-types-overview__game-category:hover {
    transform: translateY(-5px);
}

.page-s666-gaming-platform-game-types-overview__game-title {
    color: #FFD700;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
}

.page-s666-gaming-platform-game-types-overview__game-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.page-s666-gaming-platform-game-types-overview__game-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-s666-gaming-platform-game-types-overview__game-description {
    font-size: 1.05em;
    color: #555;
    text-align: justify;
    max-width: 800px;
}

.page-s666-gaming-platform-game-types-overview__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-s666-gaming-platform-game-types-overview__feature-list li {
    background-color: #F0F5F8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
    border-left: 5px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-s666-gaming-platform-game-types-overview__feature-list li:hover {
    background-color: #E5EFF4;
}

.page-s666-gaming-platform-game-types-overview__feature-list strong {
    color: #1A2E40;
}

.page-s666-gaming-platform-game-types-overview__call-to-action {
    text-align: center;
    background-color: #1A2E40;
    color: #FFFFFF;
    padding: 60px 30px;
    border-radius: 10px;
    margin-top: 60px;
}

.page-s666-gaming-platform-game-types-overview__call-to-action p {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-s666-gaming-platform-game-types-overview__game-media {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .page-s666-gaming-platform-game-types-overview__game-image {
        flex: 0 0 45%;
        max-width: 450px;
        margin-bottom: 0;
    }

    .page-s666-gaming-platform-game-types-overview__game-description {
        flex: 1;
        text-align: left;
    }

    .page-s666-gaming-platform-game-types-overview__game-category:nth-child(odd) .page-s666-gaming-platform-game-types-overview__game-media {
        flex-direction: row-reverse; /* Image on right for odd categories */
    }

    .page-s666-gaming-platform-game-types-overview__main-title {
        font-size: 4.5em;
    }

    .page-s666-gaming-platform-game-types-overview__hero-description {
        font-size: 1.5em;
    }
}

@media (max-width: 767px) {
    .page-s666-gaming-platform-game-types-overview__main-title {
        font-size: 2.5em;
    }

    .page-s666-gaming-platform-game-types-overview__hero-description {
        font-size: 1em;
    }

    .page-s666-gaming-platform-game-types-overview__section-title {
        font-size: 2em;
    }

    .page-s666-gaming-platform-game-types-overview__game-title {
        font-size: 1.8em;
    }

    .page-s666-gaming-platform-game-types-overview__game-image {
        max-width: 100%;
    }

    .page-s666-gaming-platform-game-types-overview__call-to-action p {
        font-size: 1.4em;
    }

    .page-s666-gaming-platform-game-types-overview__feature-list {
        grid-template-columns: 1fr;
    }
}