* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #010101;
  color: white;
  width: 100%;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background-color: rgba(1, 1, 1, 0.9);
  backdrop-filter: blur(8px);
  transition: padding 0.3s ease, background-color 0.3s ease;
  animation: fadeIn 0.8s ease-out forwards;
}

header.scrolled {
  padding: 16px 60px;
  background-color: rgba(1, 1, 1, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo img {
  width: auto;
  height: 50px;
  max-height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #a9a9a9;
  position: relative;
  transition: color 0.3s ease;
}

nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

nav a:hover:after {
  width: 100%;
}

nav a.active {
  color: white;
}

nav a.active:after {
  width: 100%;
}

.signup-button {
  border: 1px solid #ececec;
  background: transparent;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.signup-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.signup-button:hover:before {
  left: 0;
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 10px 0;
}

.dropdown-content a {
  color: #e1e1e1;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #333;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.member-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 60px 80px;
  background: linear-gradient(to bottom, rgba(1, 1, 1, 0.7), rgba(1, 1, 1, 0.9)),
    url("/api/placeholder/1200/600") center/cover no-repeat;
  animation: fadeIn 1s ease-out forwards;
}

.member-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.member-hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 800px;
  animation: fadeIn 1s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s infinite alternate;
  pointer-events: none;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 60px;
  text-align: center;
}

.benefits-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.benefits-section h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: #0c0c0c;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: #4a4a4a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #333, #1a1a1a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #444, #222);
}

.benefit-icon i {
  font-size: 30px;
  color: #fff;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #a9a9a9;
  font-size: 16px;
  line-height: 1.5;
}

/* Membership Tiers */
.membership-tiers {
  padding: 80px 60px;
  background: #050505;
  text-align: center;
}

.membership-tiers h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.membership-tiers h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.tier-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.tier-card {
  background: #0c0c0c;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 40px 30px;
  width: 350px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: #4a4a4a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tier-card.premium {
  border: 1px solid #4a4a4a;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.tier-card.premium:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #666, #333);
}

.tier-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tier-price {
  font-size: 36px;
  font-weight: 800;
  margin: 20px 0;
  color: #fff;
}

.tier-price span {
  font-size: 16px;
  font-weight: 400;
  color: #a9a9a9;
}

.tier-features {
  list-style-type: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid #222;
  color: #e1e1e1;
  display: flex;
  align-items: center;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li i {
  margin-right: 10px;
  color: #fff;
}

.select-tier-btn {
  background: transparent;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 14px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.select-tier-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.select-tier-btn:hover:before {
  left: 0;
}

.select-tier-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.premium .select-tier-btn {
  background: linear-gradient(90deg, #505050 0%, #303030 100%);
  border: none;
}

.premium .select-tier-btn:hover {
  background: linear-gradient(90deg, #606060 0%, #404040 100%);
}

/* Registration Form */
.registration-section {
  padding: 80px 60px;
  background-color: #0d0d0d;
}

.registration-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.registration-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.registration-section h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.registration-form {
  background: #0c0c0c;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 40px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #e1e1e1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 12px 16px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #666;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
}

.submit-btn {
  background: linear-gradient(to right, #444, #1a1a1a);
  border: none;
  padding: 16px 30px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.submit-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}

.submit-btn:hover:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.submit-btn:hover {
  background: linear-gradient(to right, #666, #333);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-section {
  padding: 80px 60px;
  text-align: center;
  background-color: #010101;
}

.testimonials-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.testimonials-section h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #0c0c0c;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #4a4a4a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card:before {
  content: "\201C";
  font-size: 80px;
  position: absolute;
  top: -10px;
  left: 20px;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e1e1e1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.author-info {
  line-height: 1.4;
}

.author-name {
  font-weight: 600;
  font-size: 18px;
}

.author-title {
  color: #a9a9a9;
  font-size: 14px;
}

.rating {
  color: #ffb400;
  font-size: 14px;
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: #0d0d0d;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #222;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .member-hero,
  .benefits-section,
  .membership-tiers,
  .registration-section,
  .testimonials-section {
    padding: 60px 40px;
  }

  .member-hero h1 {
    font-size: 42px;
  }

  .benefit-card,
  .tier-card,
  .testimonial-card {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .member-hero,
  .benefits-section,
  .membership-tiers,
  .registration-section,
  .testimonials-section {
    padding: 50px 30px;
  }

  .member-hero h1 {
    font-size: 36px;
  }

  .tier-container {
    flex-direction: column;
    align-items: center;
  }

  .tier-card {
    width: 100%;
    max-width: 450px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  nav#nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(1, 1, 1, 0.95);
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  nav#nav-menu.active {
    display: flex;
  }

  .signup-button {
    margin: 1rem 0 0 auto;
  }

  .dropdown-content {
    display: none;
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .member-hero,
  .benefits-section,
  .membership-tiers,
  .registration-section,
  .testimonials-section {
    padding: 40px 20px;
  }

  .member-hero h1 {
    font-size: 32px;
  }

  .member-hero p {
    font-size: 16px;
  }

  .benefits-section h2,
  .membership-tiers h2,
  .registration-section h2,
  .testimonials-section h2 {
    font-size: 28px;
  }

  .registration-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .member-hero h1 {
    font-size: 28px;
  }

  .member-hero p {
    font-size: 14px;
  }

  .benefits-section h2,
  .membership-tiers h2,
  .registration-section h2,
  .testimonials-section h2 {
    font-size: 24px;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .testimonial-card {
    padding: 25px 20px;
  }

  .tier-card {
    padding: 30px 20px;
  }

  .tier-name {
    font-size: 22px;
  }

  .tier-price {
    font-size: 32px;
  }

  .registration-form {
    padding: 25px 15px;
  }
}
