/* style/game-reviews-slot-games.css */

/* Biến CSS */
:root {
    --page-primary-color: #007BFF;
    --page-secondary-color: #FFD700;
    --page-dark-text: #333;
    --page-light-text: #fff;
    --page-background-light: #f9f9f9;
    --page-background-dark: #2c3e50; /* Darker background for contrast */
}

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

.page-game-reviews-slot-games .highlight {
    color: var(--page-primary-color);
    font-weight: bold;
}

.page-game-reviews-slot-games__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker shade of primary */
    padding: 100px 20px;
    color: var(--page-light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-game-reviews-slot-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-game-reviews-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-light-text);
}

.page-game-reviews-slot-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-game-reviews-slot-games__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews-slot-games__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-game-reviews-slot-games__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 25px;
}

.page-game-reviews-slot-games__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    border-radius: 60px;
}

.page-game-reviews-slot-games__section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-game-reviews-slot-games__section:nth-of-type(even) {
    background-color: #e0f2f7; /* Light blue tint for alternating sections */
}

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

.page-game-reviews-slot-games__section-title {
    font-size: 2.8em;
    color: var(--page-dark-text);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    border-radius: 2px;
}

.page-game-reviews-slot-games__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: #555;
}

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

.page-game-reviews-slot-games__feature-item {
    background-color: var(--page-light-text);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-slot-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-slot-games__feature-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-game-reviews-slot-games__game-card {
    background-color: var(--page-light-text);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-slot-games__game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--page-secondary-color);
}

.page-game-reviews-slot-games__game-card h3,
.page-game-reviews-slot-games__game-card p,
.page-game-reviews-slot-games__game-card ul {
    padding: 0 25px;
}

.page-game-reviews-slot-games__game-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-reviews-slot-games__game-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games__game-features-list li {
    font-size: 0.95em;
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.page-game-reviews-slot-games__game-features-list li::before {
    content: '•';
    color: var(--page-secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-game-reviews-slot-games__game-card .page-game-reviews-slot-games__cta-button {
    margin: 20px 25px 25px;
    text-align: center;
    align-self: flex-start;
}

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

.page-game-reviews-slot-games__step-item {
    background-color: var(--page-light-text);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 80px;
    border-bottom: 5px solid var(--page-primary-color);
}

.page-game-reviews-slot-games__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slot-games__step-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-game-reviews-slot-games__step-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
}

.page-game-reviews-slot-games__promotions {
    text-align: center;
    background-color: var(--page-background-light);
    padding: 80px 0;
}

.page-game-reviews-slot-games__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-slot-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 50px;
    max-width: 700px;
    text-align: left;
}

.page-game-reviews-slot-games__promo-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-dark-text);
    display: flex;
    align-items: center;
}

.page-game-reviews-slot-games__list-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: invert(30%) sepia(90%) saturate(600%) hue-rotate(80deg) brightness(90%); /* Greenish tint for checkmark */
}

.page-game-reviews-slot-games__security {
    background-color: #e0f7fa; /* Light cyan for security section */
    padding: 80px 0;
}

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

.page-game-reviews-slot-games__security-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-slot-games__security-text {
    flex: 2;
    min-width: 300px;
}

.page-game-reviews-slot-games__faq-item {
    background-color: var(--page-light-text);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-slot-games__faq-question {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-reviews-slot-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--page-secondary-color);
    transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-reviews-slot-games__faq-answer {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-game-reviews-slot-games__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-game-reviews-slot-games__final-cta {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%);
    color: var(--page-light-text);
    text-align: center;
    padding: 80px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.page-game-reviews-slot-games__final-cta .page-game-reviews-slot-games__section-title {
    color: var(--page-light-text);
}

.page-game-reviews-slot-games__final-cta .page-game-reviews-slot-games__section-title::after {
    background-color: var(--page-secondary-color);
}

.page-game-reviews-slot-games__final-cta .page-game-reviews-slot-games__text-content {
    color: var(--page-light-text);
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-reviews-slot-games__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-slot-games__section-title {
        font-size: 2.2em;
    }
    .page-game-reviews-slot-games__game-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-slot-games__hero {
        padding: 80px 15px;
    }
    .page-game-reviews-slot-games__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-slot-games__hero-description {
        font-size: 1em;
    }
    .page-game-reviews-slot-games__section {
        padding: 40px 0;
    }
    .page-game-reviews-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-reviews-slot-games__text-content {
        font-size: 0.95em;
    }
    .page-game-reviews-slot-games__features-grid,
    .page-game-reviews-slot-games__game-card-grid,
    .page-game-reviews-slot-games__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-slot-games__security-content {
        flex-direction: column;
        text-align: center;
    }
    .page-game-reviews-slot-games__security-image {
        max-width: 100%;
    }
    .page-game-reviews-slot-games__promo-list {
        text-align: center;
        padding: 0 15px;
    }
    .page-game-reviews-slot-games__promo-list li {
        justify-content: center;
    }
    .page-game-reviews-slot-games__step-item {
        padding-top: 60px;
    }
    .page-game-reviews-slot-games__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: 15px;
        left: 20px;
    }
    .page-game-reviews-slot-games__game-card .page-game-reviews-slot-games__cta-button {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slot-games__hero {
        padding: 60px 10px;
    }
    .page-game-reviews-slot-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slot-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-slot-games__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slot-games__feature-item,
    .page-game-reviews-slot-games__game-card,
    .page-game-reviews-slot-games__step-item,
    .page-game-reviews-slot-games__faq-item {
        padding: 20px;
    }
    .page-game-reviews-slot-games__game-image {
        height: 150px;
    }
    .page-game-reviews-slot-games__game-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slot-games__faq-question {
        font-size: 1.2em;
    }
    .page-game-reviews-slot-games__final-cta {
        padding: 60px 10px;
    }
}