body {
    background: #181a20;
    color: #f1f1f1;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

.feedback-container {
    background: #23243a;
    max-width: 480px;
    margin: 32px auto 0 auto;
    border-radius: 14px;
    box-shadow: 0 4px 24px #0005;
    padding: 32px 24px 24px 24px;
    border: 1px solid #23243a;
}

.feedback-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 1px;
}

.feedback-desc {
    color: #b0b3c6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.feedback-message {
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    background: #23243a;
    box-shadow: 0 2px 8px #0002;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.feedback-form label {
    font-weight: 500;
    color: #e0e0e0;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 2px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #444a5a;
    cursor: pointer;
    transition: color 0.2s, transform 0.1s;
    padding: 4px;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffd600;
}

.star-rating label:active {
    transform: scale(0.95);
}

.feedback-form textarea,
.feedback-form input[type="text"] {
    background: #23243a;
    color: #f1f1f1;
    border: 1px solid #35364a;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
    resize: vertical;
    transition: border 0.2s, background 0.2s;
}

.feedback-form textarea:focus,
.feedback-form input[type="text"]:focus {
    border: 1.5px solid #ffd600;
    outline: none;
    background: #23243a;
}

.feedback-form button {
    background: linear-gradient(90deg, #ffd600 0%, #ffb300 100%);
    color: #23243a;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.feedback-form button:hover {
    background: linear-gradient(90deg, #ffb300 0%, #ffd600 100%);
    color: #181a20;
}

.feedback-form button:active {
    transform: scale(0.98);
}

.feedback-list {
    margin-top: 18px;
}

.feedback-item {
    background: #23243a;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0002;
    padding: 16px 18px 12px 18px;
    margin-bottom: 18px;
    border: 1px solid #35364a;
}

.feedback-stars {
    color: #ffd600;
    font-size: 1.3rem;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.feedback-comment {
    color: #f1f1f1;
    font-size: 1.08rem;
    margin-bottom: 8px;
    font-style: italic;
}

.feedback-meta {
    color: #b0b3c6;
    font-size: 0.95rem;
    text-align: right;
}

@media (max-width: 600px) {
    .feedback-container {
        padding: 18px 4vw 18px 4vw;
        margin: 16px auto 0 auto;
        border-radius: 12px;
    }
    .feedback-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    .feedback-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .feedback-form {
        gap: 12px;
        margin-bottom: 24px;
    }
    .star-rating {
        gap: 4px;
    }
    .star-rating label {
        font-size: 1.8rem;
    }
    .feedback-form textarea,
    .feedback-form input[type="text"] {
        padding: 12px 14px;
        font-size: 1.05rem;
        border-radius: 10px;
    }
    .feedback-form button {
        padding: 14px 0;
        font-size: 1.15rem;
        border-radius: 10px;
        margin-top: 6px;
    }
    .qr-group-promo {
        margin: 24px 0 12px 0 !important;
        padding: 16px 8px !important;
        border-radius: 10px !important;
    }
    .qr-group-promo div:first-child {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }
    .qr-group-promo img {
        width: 120px !important;
        max-width: 50vw !important;
        margin: 0 auto 6px auto !important;
        border-radius: 8px !important;
    }
    .qr-group-promo div:last-child {
        font-size: 0.9rem !important;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .feedback-container {
        padding: 16px 3vw 16px 3vw;
        margin: 12px auto 0 auto;
    }
    .feedback-title {
        font-size: 1.3rem;
    }
    .feedback-desc {
        font-size: 0.95rem;
    }
    .star-rating label {
        font-size: 1.6rem;
    }
    .feedback-form textarea,
    .feedback-form input[type="text"] {
        padding: 10px 12px;
        font-size: 1rem;
    }
    .feedback-form button {
        padding: 12px 0;
        font-size: 1.1rem;
    }
    .qr-group-promo {
        margin: 20px 0 10px 0 !important;
        padding: 14px 6px !important;
    }
    .qr-group-promo div:first-child {
        font-size: 0.95rem !important;
    }
    .qr-group-promo img {
        width: 100px !important;
        max-width: 45vw !important;
    }
    .qr-group-promo div:last-child {
        font-size: 0.85rem !important;
    }
} 