* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  position: relative;
  background-color: #000;
  color: #202e13;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://ik.imagekit.io/lantz/Sabas/Screenshot%202025-08-12%20at%202.00.34%E2%80%AFPM.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.8;
  z-index: -1;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

.review-form {
  background-color: #eeeede;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #202e13;
}

.rating-container {
  text-align: center;
  margin-bottom: 30px;
}

.stars {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  font-size: 2.5rem;
}

.stars i {
  color: #ddd;
  cursor: pointer;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.stars i.fas {
  color: #202e13;
}

.rating-text {
  font-size: 1rem;
  color: #202e13;
  margin-top: 10px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #202e13;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #202e13;
}

.submit-btn {
  background-color: #202e13;
  color: #f3f4f6;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #344723;
}

.hidden {
  display: none;
}

#success-message {
  text-align: center;
  padding: 20px;
}

#success-message h2 {
  color: #202e13;
  margin-bottom: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
    margin: 20px auto;
    padding: 15px;
  }

  .review-form {
    padding: 20px;
  }

  .stars {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stars {
    font-size: 1.8rem;
  }

  .stars i {
    margin: 0 3px;
  }

  .submit-btn {
    padding: 10px 15px;
  }
}
