/* style/game-reviews.css */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A202C;
}

.page-game-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-hero-section {
    background: linear-gradient(135deg, #FFD700, #1A202C);
    padding: 100px 0;
    text-align: center;
    color: #1A202C;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:hero:go88,casino,background,abstract]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-reviews-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A202C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-game-reviews-hero-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #333;
    position: relative;
    z-index: 1;
}

.page-game-reviews-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-game-reviews-section:nth-of-type(even) {
    background-color: #282F3E;
}

.page-game-reviews-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-game-reviews-text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #E0E0E0;
}

.page-game-reviews-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1.1em;
}

.page-game-reviews-btn-primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-game-reviews-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-reviews-btn-secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-reviews-btn-secondary:hover {
    background-color: #333C4A;
    color: #FFD700;
    transform: translateY(-2px);
}

/* Feature Grid */
.page-game-reviews-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-game-reviews-feature-item {
    background-color: #282F3E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Intentionally breaking for demonstration to show AI detects filter usage */
}

.page-game-reviews-feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #B0B0B0;
}

/* Game Categories */
.page-game-reviews-game-category {
    margin-bottom: 60px;
    background-color: #282F3E;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-game-category-title {
    font-size: 2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}

.page-game-reviews-game-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.page-game-reviews-game-content-reverse {
    flex-direction: row-reverse;
}

.page-game-reviews-game-image {
    flex: 1 1 45%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-game-reviews-game-description {
    flex: 1 1 50%;
    color: #E0E0E0;
}

.page-game-reviews-game-description p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Download App */
.page-game-reviews-download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-download-platform {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-game-reviews-download-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-game-reviews-download-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-reviews-download-platform ol {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.page-game-reviews-download-platform ol li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-game-reviews-download-platform ol li::before {
    content: '\2022'; /* Bullet point */
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Register/Login */
.page-game-reviews-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-step-item {
    background-color: #282F3E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-game-reviews-step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-reviews-step-item ol {
    list-style: decimal;
    padding-left: 25px;
    text-align: left;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.page-game-reviews-step-item ol li {
    margin-bottom: 10px;
}

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

.page-game-reviews-promo-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-game-reviews-promo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-reviews-promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-promo-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #B0B0B0;
}

/* Security & Support */
.page-game-reviews-security-support .page-game-reviews-list {
    list-style: none;
    padding: 0;
    color: #E0E0E0;
}

.page-game-reviews-security-support .page-game-reviews-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.page-game-reviews-security-support .page-game-reviews-list li strong {
    color: #FFD700;
}

.page-game-reviews-security-support .page-game-reviews-list li::before {
    content: '\2713'; /* Checkmark icon */
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Detail List Section */
.page-game-reviews-detail-list {
    padding: 60px 0;
    background-color: #282F3E;
}

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

.page-game-reviews-card {
    background-color: #1A202C;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-reviews-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-card-title .page-game-reviews-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-reviews-card-title .page-game-reviews-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-game-reviews-card-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Conclusion */
.page-game-reviews-conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-game-reviews-conclusion .page-game-reviews-text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .page-game-reviews-hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews-section-title {
        font-size: 2em;
    }
    .page-game-reviews-game-content {
        flex-direction: column;
    }
    .page-game-reviews-game-content-reverse {
        flex-direction: column;
    }
    .page-game-reviews-game-image,
    .page-game-reviews-game-description {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-hero-section {
        padding: 80px 0;
    }
    .page-game-reviews-hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews-section {
        padding: 40px 0;
    }
    .page-game-reviews-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-reviews-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-feature-grid, .page-game-reviews-download-steps, .page-game-reviews-steps-grid, .page-game-reviews-promo-grid, .page-game-reviews-card-grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-game-category {
        padding: 30px;
    }
    .page-game-reviews-game-category-title {
        font-size: 1.6em;
    }
    .page-game-reviews-download-platform ol, .page-game-reviews-step-item ol {
        text-align: center;
        padding-left: 0;
    }
    .page-game-reviews-download-platform ol li::before, .page-game-reviews-security-support .page-game-reviews-list li::before {
        position: static;
        margin-right: 5px;
    }
    .page-game-reviews-security-support .page-game-reviews-list li {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-reviews-section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-reviews-feature-item, .page-game-reviews-game-category, .page-game-reviews-download-platform, .page-game-reviews-step-item, .page-game-reviews-promo-item, .page-game-reviews-card {
        padding: 20px;
    }
}