/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: url('plane-bg.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00d4ff;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #eee;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(45deg, #00b09b, #2575fc);
  color: #fff;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

.btn.admin {
  background: linear-gradient(45deg, #ff4b1f, #ff9068);
}



.support-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #00b09b, #2575fc, #6a11cb);
  background-size: 300% 300%;
  animation: gradientFlow 12s ease infinite;
  padding: 20px;
}

.support-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  text-align: center;
}

.support-card h1 {
  font-size: 2rem;
  color: #2575fc;
  margin-bottom: 10px;
}

.support-card .tagline {
  color: #555;
  margin-bottom: 20px;
}

.support-info {
  margin-bottom: 25px;
  text-align: left;
  font-size: 0.95rem;
  color: #333;
}

.support-info p {
  margin-bottom: 8px;
}

.support-card h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #00b09b;
}

.success {
  background: #e6ffed;
  color: #0a8f3c;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
}

textarea {
  width: 100%;
  resize: none;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease;
}

textarea:focus {
  border-color: #2575fc;
}

.back-link {
  margin-top: 20px;
}

.back-link a {
  color: #2575fc;
  text-decoration: none;
  font-weight: 600;
}

.back-link a:hover {
  text-decoration: underline;
}
