/* style/platform-reviews-hi88vip6-game-selection.css */

:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-dark-text: #333333;
    --page-light-text: #ffffff;
    --page-background-light: #f8f9fa;
    --page-background-dark: #212529;
    --page-border-color: #dee2e6;
}

.page-platform-reviews-hi88vip6-game-selection {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-dark-text);
    background-color: var(--page-background-light);
}

.page-platform-reviews-hi88vip6-game-selection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-platform-reviews-hi88vip6-game-selection__container--center {
    text-align: center;
}

.page-platform-reviews-hi88vip6-game-selection__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-platform-reviews-hi88vip6-game-selection__section--intro {
    background-color: var(--page-background-light);
}

.page-platform-reviews-hi88vip6-game-selection__section--categories {
    background-color: var(--page-background-light);
}

.page-platform-reviews-hi88vip6-game-selection__section--quality,
.page-platform-reviews-hi88vip6-game-selection__section--security {
    background-color: var(--page-background-light);
}

.page-platform-reviews-hi88vip6-game-selection__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: var(--page-light-text);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews-hi88vip6-game-selection__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-platform-reviews-hi88vip6-game-selection__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.1;
}

.page-platform-reviews-hi88vip6-game-selection__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-platform-reviews-hi88vip6-game-selection__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-hi88vip6-game-selection__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-light-text);
}

.page-platform-reviews-hi88vip6-game-selection__heading {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-platform-reviews-hi88vip6-game-selection__sub-heading {
    font-size: 1.8em;
    color: var(--page-dark-text);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-platform-reviews-hi88vip6-game-selection__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555555; /* Slightly darker for better readability */
}

.page-platform-reviews-hi88vip6-game-selection__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-platform-reviews-hi88vip6-game-selection__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    border: 2px solid var(--page-secondary-color);
}

.page-platform-reviews-hi88vip6-game-selection__btn--primary:hover {
    background-color: #e6b000; /* Darker secondary */
    transform: translateY(-2px);
    color: var(--page-dark-text);
}

.page-platform-reviews-hi88vip6-game-selection__btn--secondary {
    background-color: transparent;
    color: var(--page-primary-color);
    border: 2px solid var(--page-primary-color);
}

.page-platform-reviews-hi88vip6-game-selection__btn--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    transform: translateY(-2px);
}

.page-platform-reviews-hi88vip6-game-selection__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-platform-reviews-hi88vip6-game-selection__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 10px;
}

.page-platform-reviews-hi88vip6-game-selection__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews-hi88vip6-game-selection__category-item {
    background-color: var(--page-light-text);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-platform-reviews-hi88vip6-game-selection__category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-platform-reviews-hi88vip6-game-selection__category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.page-platform-reviews-hi88vip6-game-selection__category-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-platform-reviews-hi88vip6-game-selection__category-description {
    font-size: 1em;
    color: #666666;
    flex-grow: 1;
}

.page-platform-reviews-hi88vip6-game-selection__content-columns {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-platform-reviews-hi88vip6-game-selection__content-columns--reverse {
    flex-direction: row-reverse;
}

.page-platform-reviews-hi88vip6-game-selection__column-text {
    flex: 1;
}

.page-platform-reviews-hi88vip6-game-selection__column-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-platform-reviews-hi88vip6-game-selection__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-hi88vip6-game-selection__download-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-platform-reviews-hi88vip6-game-selection__app-image {
    max-width: 350px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-platform-reviews-hi88vip6-game-selection__faq-item {
    background-color: var(--page-light-text);
    border: 1px solid var(--page-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-hi88vip6-game-selection__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-platform-reviews-hi88vip6-game-selection__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-left: 10px;
    border-left: 3px solid var(--page-secondary-color);
}

.page-platform-reviews-hi88vip6-game-selection__cta {
    background: linear-gradient(135deg, #0056b3, var(--page-primary-color)); /* Darker blue to primary blue */
    color: var(--page-light-text);
    padding: 80px 0;
    text-align: center;
}

.page-platform-reviews-hi88vip6-game-selection__cta .page-platform-reviews-hi88vip6-game-selection__heading {
    color: var(--page-light-text);
}

.page-platform-reviews-hi88vip6-game-selection__cta .page-platform-reviews-hi88vip6-game-selection__text {
    color: var(--page-light-text);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-platform-reviews-hi88vip6-game-selection__title {
        font-size: 2.5em;
    }
    .page-platform-reviews-hi88vip6-game-selection__heading {
        font-size: 2em;
    }
    .page-platform-reviews-hi88vip6-game-selection__content-columns {
        flex-direction: column;
    }
    .page-platform-reviews-hi88vip6-game-selection__content-columns--reverse {
        flex-direction: column;
    }
    .page-platform-reviews-hi88vip6-game-selection__column-image {
        order: -1; /* Image first on mobile for reverse columns */
    }
}

@media (max-width: 768px) {
    .page-platform-reviews-hi88vip6-game-selection__hero {
        padding: 60px 0;
    }
    .page-platform-reviews-hi88vip6-game-selection__title {
        font-size: 2em;
    }
    .page-platform-reviews-hi88vip6-game-selection__subtitle {
        font-size: 1.1em;
    }
    .page-platform-reviews-hi88vip6-game-selection__heading {
        font-size: 1.8em;
    }
    .page-platform-reviews-hi88vip6-game-selection__text {
        font-size: 1em;
    }
    .page-platform-reviews-hi88vip6-game-selection__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-platform-reviews-hi88vip6-game-selection__category-grid {
        grid-template-columns: 1fr;
    }
    .page-platform-reviews-hi88vip6-game-selection__download-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-hi88vip6-game-selection__title {
        font-size: 1.8em;
    }
    .page-platform-reviews-hi88vip6-game-selection__heading {
        font-size: 1.6em;
    }
    .page-platform-reviews-hi88vip6-game-selection__sub-heading {
        font-size: 1.4em;
    }
    .page-platform-reviews-hi88vip6-game-selection__btn {
        width: 100%;
        text-align: center;
    }
    .page-platform-reviews-hi88vip6-game-selection__download-buttons {
        gap: 10px;
    }
}