body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #0c0c0c;
    color: white;
}

.review-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: white;
}

.review-card {
    background: #111;
    padding: 40px;
    border-radius: 14px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid #222;
}

.review-card h2 {
    margin-bottom: 6px;
    font-size: 28px;
    color: #f4c400;
}

.review-subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 28px;
}

.review-card input,
.review-card select,
.review-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.review-card input, 
.review-card select {
    height: 52px;
}

.review-card textarea {
    height: 130px;
    resize: none;
}

.review-card textarea {
    height: 120px;
    resize: none;
}

.review-card input:focus,
.review-card select:focus,
.review-card textarea:focus {
    outline: none;
    border-color: #f4c400;
    box-shadow: 0 0 0 2px rgba(244, 196, 0, 0.2);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 32px;
    cursor: pointer;
}

.star {
    color: #444;
    transition: 0.5s;
}

.star:hover {
    transform: scale(1.2);
}

.star.active {
    color: #f4c400;
}

.review-success {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #0f2d13;
    color: #6fff91;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.review-card button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #f4c400;
    color: black;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.review-card button:hover {
    background: #ffd94d;
    transform: translateY(-2px);
}

/* MOBILE RESPONSIVE */

@media(max-width:500px) {

    .review-card {
        padding: 28px;
    }

    .review-card h2 {
        font-size: 24px;
    }

}