* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* Header */
.header {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  animation: slide-down 1.2s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 100px;
}

.logo h1 {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  display: block;
  font-size: 14px;
  color: #ddd;
}

.contact a {
  color: #f1c40f;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: #ffcc00;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.btn {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b71c1c;
  transform: scale(1.05);
}

/* Info Section */
.info {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px;
  background: #f9f9f9;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
}

/* Table */
.tiers {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.table {
  margin: 30px auto;
  width: 80%;
  border-collapse: collapse;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}

.table th,
.table td {
  border: 1px solid #444;
  padding: 15px;
}

.table th {
  background: #d32f2f;
}

.table tr:hover {
  background: #333;
}

/* Signup */
.signup {
  text-align: center;
  padding: 60px 20px;
}

.signup form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  gap: 15px;
}

.signup input[type="text"],
.signup input[type="email"],
.signup input[type="password"] {
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.signup input[type="text"]:focus,
.signup input[type="email"]:focus,
.signup input[type="password"]:focus {
  border-color: #d32f2f;
}

.signup label {
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fade-in {
  animation: fade-in 1.5s ease;
}
.slide-up {
  animation: slide-up 1.5s ease;
}
.zoom:hover {
  transform: scale(1.05);
}
.pulse {
  animation: pulse 2s infinite;
}
.bounce:hover {
  animation: bounce 0.8s;
}
