/* style/typhu88-player-stories-user-feedback.css */

:root {
    --primary-bg-color: #0A0F18;
    --secondary-bg-color: #FFD700;
    --text-color-light: #F8F8F8;
    --text-color-dark: #0A0F18;
    --accent-color: #E53935;
    --border-color: rgba(255, 255, 255, 0.1);
}

.page-typhu88-player-stories-user-feedback {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-light);
    background-color: var(--primary-bg-color);
    line-height: 1.6;
}

.page-typhu88-player-stories-user-feedback .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-typhu88-player-stories-user-feedback h1, 
.page-typhu88-player-stories-user-feedback h2, 
.page-typhu88-player-stories-user-feedback h3 {
    color: var(--secondary-bg-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-typhu88-player-stories-user-feedback h1 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.page-typhu88-player-stories-user-feedback h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-typhu88-player-stories-user-feedback h3 {
    font-size: 1.6em;
    margin-top: 25px;
    color: var(--secondary-bg-color);
}

.page-typhu88-player-stories-user-feedback p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.page-typhu88-player-stories-user-feedback ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.page-typhu88-player-stories-user-feedback ul li {
    margin-bottom: 5px;
}

.page-typhu88-player-stories-user-feedback .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.page-typhu88-player-stories-user-feedback .btn-primary {
    background-color: var(--secondary-bg-color);
    color: var(--primary-bg-color);
    border: 2px solid var(--secondary-bg-color);
}

.page-typhu88-player-stories-user-feedback .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-typhu88-player-stories-user-feedback .btn-secondary {
    background-color: transparent;
    color: var(--secondary-bg-color);
    border: 2px solid var(--secondary-bg-color);
    margin-left: 15px;
}

.page-typhu88-player-stories-user-feedback .btn-secondary:hover {
    background-color: var(--secondary-bg-color);
    color: var(--primary-bg-color);
    transform: translateY(-2px);
}

/* Hero Section */
.page-typhu88-player-stories-user-feedback .hero-section {
    background: linear-gradient(135deg, var(--primary-bg-color) 0%, #1a1f29 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--secondary-bg-color);
}

.page-typhu88-player-stories-user-feedback .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-typhu88-player-stories-user-feedback .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-typhu88-player-stories-user-feedback .hero-section h1 {
    font-size: 3.5em;
    color: var(--secondary-bg-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 25px;
}

.page-typhu88-player-stories-user-feedback .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-typhu88-player-stories-user-feedback .hero-actions {
    margin-top: 30px;
}

/* Feedback Intro Section */
.page-typhu88-player-stories-user-feedback .feedback-intro-section {
    padding: 80px 0;
    background-color: var(--primary-bg-color);
}

.page-typhu88-player-stories-user-feedback .feedback-intro-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-typhu88-player-stories-user-feedback .feedback-intro-section .content-block {
    flex: 1;
}

.page-typhu88-player-stories-user-feedback .feedback-intro-section .image-block {
    flex: 1;
    text-align: center;
}

.page-typhu88-player-stories-user-feedback .feedback-intro-section .responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-bg-color);
}

/* Process Section */
.page-typhu88-player-stories-user-feedback .process-section {
    background-color: #1a1f29;
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.page-typhu88-player-stories-user-feedback .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-typhu88-player-stories-user-feedback .process-steps .step {
    background-color: #1a1f29;
    border: 1px solid var(--secondary-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-typhu88-player-stories-user-feedback .process-steps .step:hover {
    transform: translateY(-5px);
    border-color: #e6c200;
}

.page-typhu88-player-stories-user-feedback .process-steps .step h3 {
    color: var(--secondary-bg-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-typhu88-player-stories-user-feedback .process-steps .step p {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.page-typhu88-player-stories-user-feedback .testimonials-section {
    padding: 80px 0;
    background-color: var(--primary-bg-color);
    border-top: 1px solid var(--border-color);
}

.page-typhu88-player-stories-user-feedback .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-typhu88-player-stories-user-feedback .testimonial-card {
    background-color: #1a1f29;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-typhu88-player-stories-user-feedback .testimonial-card:hover {
    transform: translateY(-5px);
}

.page-typhu88-player-stories-user-feedback .testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--secondary-bg-color);
}

.page-typhu88-player-stories-user-feedback .testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-typhu88-player-stories-user-feedback .testimonial-author {
    font-weight: bold;
    color: var(--secondary-bg-color);
    font-size: 0.95em;
}

/* Improvements Section */
.page-typhu88-player-stories-user-feedback .improvements-section {
    background-color: #1a1f29;
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.page-typhu88-player-stories-user-feedback .improvement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-typhu88-player-stories-user-feedback .improvement-cards .card {
    background-color: var(--primary-bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--secondary-bg-color);
    transition: transform 0.3s ease;
}

.page-typhu88-player-stories-user-feedback .improvement-cards .card:hover {
    transform: translateY(-5px);
}

.page-typhu88-player-stories-user-feedback .improvement-cards .card h3 {
    color: var(--secondary-bg-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.page-typhu88-player-stories-user-feedback .improvement-cards .card p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.page-typhu88-player-stories-user-feedback .improvement-cards .card-icon {
    display: block;
    margin: 0 auto 20px auto;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* CTA Section */
.page-typhu88-player-stories-user-feedback .cta-section {
    background: linear-gradient(90deg, var(--primary-bg-color) 0%, #0d121c 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.page-typhu88-player-stories-user-feedback .cta-section h2 {
    color: var(--secondary-bg-color);
    font-size: 2.5em;
}

.page-typhu88-player-stories-user-feedback .cta-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-typhu88-player-stories-user-feedback .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-typhu88-player-stories-user-feedback .cta-section .small-text {
    margin-top: 30px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.page-typhu88-player-stories-user-feedback .faq-section {
    padding: 80px 0;
    background-color: var(--primary-bg-color);
    border-top: 1px solid var(--border-color);
}

.page-typhu88-player-stories-user-feedback .faq-item {
    background-color: #1a1f29;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-typhu88-player-stories-user-feedback .faq-item h3 {
    color: var(--secondary-bg-color);
    font-size: 1.3em;
    margin-bottom: 10px;
    text-align: left;
}

.page-typhu88-player-stories-user-feedback .faq-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* Final CTA Section */
.page-typhu88-player-stories-user-feedback .final-cta-section {
    background-color: #0d121c;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.page-typhu88-player-stories-user-feedback .final-cta-section h2 {
    color: var(--secondary-bg-color);
    font-size: 2.5em;
}

.page-typhu88-player-stories-user-feedback .final-cta-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-typhu88-player-stories-user-feedback .final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-typhu88-player-stories-user-feedback .hero-section h1 {
        font-size: 2.8em;
    }

    .page-typhu88-player-stories-user-feedback h2 {
        font-size: 1.8em;
    }

    .page-typhu88-player-stories-user-feedback .feedback-intro-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-typhu88-player-stories-user-feedback .feedback-intro-section .content-block, 
    .page-typhu88-player-stories-user-feedback .feedback-intro-section .image-block {
        flex: none;
        width: 100%;
    }

    .page-typhu88-player-stories-user-feedback .hero-actions, 
    .page-typhu88-player-stories-user-feedback .cta-actions, 
    .page-typhu88-player-stories-user-feedback .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-typhu88-player-stories-user-feedback .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-typhu88-player-stories-user-feedback .hero-section h1 {
        font-size: 2.2em;
    }

    .page-typhu88-player-stories-user-feedback h2 {
        font-size: 1.6em;
    }

    .page-typhu88-player-stories-user-feedback .process-steps, 
    .page-typhu88-player-stories-user-feedback .testimonial-grid, 
    .page-typhu88-player-stories-user-feedback .improvement-cards {
        grid-template-columns: 1fr;
    }

    .page-typhu88-player-stories-user-feedback .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-typhu88-player-stories-user-feedback .hero-section h1 {
        font-size: 1.8em;
    }

    .page-typhu88-player-stories-user-feedback h2 {
        font-size: 1.4em;
    }

    .page-typhu88-player-stories-user-feedback h3 {
        font-size: 1.2em;
    }

    .page-typhu88-player-stories-user-feedback .hero-section p {
        font-size: 1em;
    }

    .page-typhu88-player-stories-user-feedback .btn {
        padding: 10px 20px;
    }

    .page-typhu88-player-stories-user-feedback .container {
        padding: 0 15px;
    }
}