@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text&display=swap');

body {
    font-family: 'Libre Caslon Text', serif;
    color: #333;
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
        url('https://images-sm.pixieset.com/cover-image/1388191/af86a87ff09d8f02b12b201fe44e7262eb911da01eb2213385c0e46023e8794c.jpg')
        no-repeat 50% 50%/cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.review-help {
    font-size: 1rem;
    font-weight: 300;
    margin: 1rem 4rem;
    line-height: 1.4;
}

.stars span {
    font-size: 2rem;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s ease;
}

.stars span:hover,
.stars span.selected {
    color: #ffc107;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea, button {
    padding: 10px;
    font-size: 1rem;
}

button {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

#feedback-section {
    display: none;
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0.95);
}

#feedback-section.show {
    display: block;
    max-width: 480px;
    margin: 0 auto;
    padding-top: 2rem;
    animation: reveal 0.3s ease forwards;
}

@keyframes reveal {
    from { opacity: 0; transform: scaleY(0.95); }
    to { opacity: 1; transform: scaleY(1); }
}

.hidden {
    display: none;
}
