      /* Modal Container */
      #feedbackModal .modal-content {
      background: linear-gradient(to bottom, #0a0a0a, #000000);
      border-radius: 14px;
      border: 1px solid #ff6000;
      box-shadow: 0 0 25px rgba(255, 96, 0, 0.3);
      overflow: hidden;
      transition: all 0.3s ease;
      }
      /* Header */
      #feedbackModal .modal-header {
      background: #0a0a0a;
      border-bottom: 1px solid #ff6000;
      padding: 18px 22px;
      }
      #feedbackModal .modal-title {
      color: #ff6000;
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      }
      /* Close Button */
      #feedbackModal .btn-close {
      filter: invert(1);
      opacity: 0.6;
      transition: opacity 0.2s;
      }
      #feedbackModal .btn-close:hover {
      opacity: 1;
      }
      /* Bonus Banner */
      #feedbackModal .alert {
      background: #101010;
      border: 1px solid #ff6000;
      color: #fff;
      border-radius: 8px;
      padding: 12px 16px;
      font-weight: 500;
      margin: 16px 22px 0;
      text-align: center;
      box-shadow: 0 0 8px rgba(255, 96, 0, 0.3);
      }
      /* Body Layout */
      #feedbackModal .modal-body {
      padding: 20px;
      }
      /* Stars */
      .rating-stars {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #0f0f0f;
      padding: 14px;
      border-radius: 10px;
      border: 1px solid #ff6000;
      margin-bottom: 20px;
      }
      .rating-stars input[type="range"] {
      width: 100%;
      accent-color: #ff6000;
      }
      #starIcons {
      display: flex;
      gap: 6px;
      margin-top: 6px;
      }
      #starIcons .star {
      font-size: 2rem;
      color: #333;
      transition: color 0.3s ease, transform 0.2s ease;
      }
      #starIcons .star.filled {
      color: #f5c518;
      transform: scale(1.1);
      }
      /* Textarea */
      #feedbackModal textarea.form-control {
      background-color: #0a0a0a;
      border: 1px solid #ff6000;
      color: #fff;
      border-radius: 8px;
      padding: 10px;
      font-size: 0.95rem;
      }
      #feedbackModal textarea.form-control:focus {
      border-color: #ff6000;
      box-shadow: 0 0 8px rgba(255, 96, 0, 0.5);
      }
      #feedbackModal textarea::placeholder {
      color: #bbb;
      }
      /* Submit Button */
      #feedbackModal .btn-success {
      background-color: #ff6000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 8px;
      transition: background 0.3s ease, transform 0.2s ease;
      }
      #feedbackModal .btn-success:hover {
      background-color: #e05500;
      transform: scale(1.05);
      }
      /* Modal Footer */
      #feedbackModal .modal-footer {
      border-top: 1px solid #ff6000;
      background: #0a0a0a;
      padding: 14px 20px;
      }
      
      
      