/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

header .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffb347;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #ffb347;
}

/* Legal Section */
.legal-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px 30px;
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  animation: fadeInUp 1s ease forwards;
}

.legal-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffb347;
}

.legal-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.legal-section ul {
  list-style: disc;
  padding-left: 20px;
}

.legal-section ul li {
  margin-bottom: 10px;
}

/* Unsubscribe Form */
.unsubscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.unsubscribe-form input {
  width: 80%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.unsubscribe-form input:focus {
  border: 2px solid #ff6b6b;
  box-shadow: 0 0 10px rgba(255,107,107,0.5);
  transition: 0.3s;
}

.unsubscribe-form .btn {
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #ff6b6b, #ffb347);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.unsubscribe-form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,107,107,0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 50px;
  margin-top: 50px;
  background: rgba(0,0,0,0.7);
}

footer a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ffb347;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
