/* style/user-testimonials-game-feedback.css */
.page-user-testimonials-game-feedback {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A1931; /* Main dark background */
    line-height: 1.6;
}

.page-user-testimonials-game-feedback__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-user-testimonials-game-feedback__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a2f52 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-user-testimonials-game-feedback__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    font-weight: bold;
}

.page-user-testimonials-game-feedback__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-user-testimonials-game-feedback__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-user-testimonials-game-feedback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-user-testimonials-game-feedback__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #0A1931; /* Dark text on accent background */
    border-color: #FFD700;
}

.page-user-testimonials-game-feedback__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    border-color: #e6c200;
}

.page-user-testimonials-game-feedback__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent text on dark background */
    border-color: #FFD700;
}

.page-user-testimonials-game-feedback__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-user-testimonials-game-feedback__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-user-testimonials-game-feedback__section:last-of-type {
    border-bottom: none;
}

.page-user-testimonials-game-feedback__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-user-testimonials-game-feedback__sub-title {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-user-testimonials-game-feedback__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-user-testimonials-game-feedback__overview p, 
.page-user-testimonials-game-feedback__game-diversity p, 
.page-user-testimonials-game-feedback__service-quality p, 
.page-user-testimonials-game-feedback__ui-mobile p, 
.page-user-testimonials-game-feedback__security p, 
.page-user-testimonials-game-feedback__promotions p, 
.page-user-testimonials-game-feedback__submit-feedback p, 
.page-user-testimonials-game-feedback__commitment p,
.page-user-testimonials-game-feedback__responsible-gaming p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-user-testimonials-game-feedback__testimonial-card {
    background-color: #1a2f52; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    border-left: 5px solid #FFD700;
}

.page-user-testimonials-game-feedback__testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-user-testimonials-game-feedback__testimonial-card cite {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #FFD700;
}

.page-user-testimonials-game-feedback__submit-feedback ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-user-testimonials-game-feedback__submit-feedback ul li {
    background-color: #1a2f52;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #FFFFFF;
    border-left: 3px solid #FFD700;
}

.page-user-testimonials-game-feedback__submit-feedback ul li strong {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-user-testimonials-game-feedback__title {
        font-size: 2.5em;
    }

    .page-user-testimonials-game-feedback__subtitle {
        font-size: 1.1em;
    }

    .page-user-testimonials-game-feedback__section-title {
        font-size: 2em;
    }

    .page-user-testimonials-game-feedback__sub-title {
        font-size: 1.5em;
    }

    .page-user-testimonials-game-feedback__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-user-testimonials-game-feedback__btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-user-testimonials-game-feedback__title {
        font-size: 2em;
    }

    .page-user-testimonials-game-feedback__section-title {
        font-size: 1.8em;
    }

    .page-user-testimonials-game-feedback__sub-title {
        font-size: 1.3em;
    }
    
    .page-user-testimonials-game-feedback__section {
        padding: 40px 0;
    }
}