
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  background: #0f0f0f;
  color: #eaeaea;
  min-height: 100vh;
}

/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #0e1015;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 16px;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.nav-links a {
  text-decoration: none;
  color: #e9ecf1;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: #1b1f29;
  transform: translateY(-1px);
}

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-btn { display: flex; }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #0e1015;
    padding: 10px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .nav-links a { padding: 10px 20px; }

  .nav-links.open { max-height: 300px; opacity: 1; }

  .menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-btn.active span:nth-child(2) { opacity: 0; }
  .menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Feedback Container ---------- */
main.dashboard {
  max-width: 650px;
  margin: 60px auto;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main.dashboard:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

main.dashboard h1 {
  font-size: 2rem;
  text-align: center;
  color: #d4a254;
  margin-bottom: 18px;
  text-shadow: 0 2px 6px rgba(212,162,84,0.5);
}

main.dashboard p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 25px;
  color: #cfcfcf;
}

/* ---------- Textarea ---------- */
#feedback-text {
  width: 100%;
  min-height: 150px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #444;
  background: #1b1b1b;
  color: #eaeaea;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  transition: all 0.25s ease;
}

#feedback-text:focus {
  border-color: #d4a254;
  box-shadow: 0 0 12px rgba(212,162,84,0.5);
}

/* ---------- Submit Button ---------- */
#feedback-submit {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #d4a254, #b58a3e);
  color: #0f0f0f;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(212,162,84,0.5);
}

#feedback-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212,162,84,0.7);
}

#feedback-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(212,162,84,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  main.dashboard {
    margin: 40px 20px;
    padding: 30px 25px;
  }

  main.dashboard h1 {
    font-size: 1.8rem;
  }

  #feedback-text {
    min-height: 130px;
  }

  #feedback-submit {
    padding: 14px;
    font-size: 1rem;
  }
}




footer {
  text-align: center;
  padding: 30px 0;
  color: #7c7c7c;
}


/* Floating Help Button */
.floating-help-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4a254, #b8863b);
  color: #0f0f0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 162, 84, 0.5);
  transition: all 0.3s ease;
  z-index: 999;
}

.floating-help-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 30px rgba(212, 162, 84, 0.7);
}

@media (max-width: 768px) {
  .floating-help-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}