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

body {
  font-family: 'DM Sans', Arial, sans-serif;
  background: #000000;
  color: white;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; width: 100%;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid #1f1f1f;
  z-index: 999;
  box-sizing: border-box;
}

.logo {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff 0%, #888888 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.back-btn {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s;
}

.back-btn:hover { color: white; }

/* ===== HERO ===== */
.mem-hero {
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mem-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.80), rgba(0,0,0,0.80)),
    url('https://picsum.photos/1600/900?grayscale') center/cover no-repeat;
  animation: zoomBg 8s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.mem-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mem-tag {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.mem-title {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 900;
  letter-spacing: 16px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #888888 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: logoReveal 1.5s ease 0.5s forwards, shimmer 4s linear 2s infinite;
}

@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(0.8); letter-spacing: 4px; }
  60%  { opacity: 1; transform: scale(1.03); letter-spacing: 20px; }
  100% { opacity: 1; transform: scale(1); letter-spacing: 16px; }
}

.mem-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555555;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.mem-line {
  width: 0px;
  height: 1px;
  background: #333333;
  margin: 24px auto 0;
  animation: lineExpand 1s ease 1.3s forwards;
}

@keyframes lineExpand {
  from { width: 0px; }
  to   { width: 80px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MEMBERSHIP SECTION ===== */
.mem-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.mem-card {
  max-width: 600px;
  width: 100%;
  border: 1px solid #1f1f1f;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  background: #080808;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

/* Corner accents */
.mem-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 1px solid #444444;
  border-left: 1px solid #444444;
}

.mem-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 1px solid #444444;
  border-right: 1px solid #444444;
}

.mem-card-tag {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 20px;
}

.mem-card-title {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mem-card-sub {
  font-size: 13px;
  font-weight: 300;
  color: #555555;
  line-height: 1.9;
  letter-spacing: 0.5px;
}

.mem-divider {
  height: 1px;
  background: #1a1a1a;
  margin: 36px 0;
}

/* FEATURES */
.mem-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.mem-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.mem-feature p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #666666;
  font-weight: 300;
}

/* NOTIFY FORM */
.mem-notify {
  font-size: 12px;
  letter-spacing: 2px;
  color: #555555;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mem-notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mem-notify-form input {
  background: #111111;
  border: 1px solid #222222;
  color: white;
  padding: 12px 16px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.mem-notify-form input:focus { border-color: #ffffff; }

.mem-btn {
  padding: 14px;
  background: white;
  color: black;
  border: none;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 4px;
}

.mem-btn:hover { background: #cccccc; }

.mem-notified {
  display: none;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #666666;
}

/* ===== FOOTER ===== */
.mem-footer {
  padding: 30px 40px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mem-footer p {
  font-size: 11px;
  letter-spacing: 2px;
  color: #333333;
}

.mem-footer a {
  font-size: 11px;
  letter-spacing: 2px;
  color: #444444;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mem-footer a:hover { color: white; }

@media(max-width: 768px) {
  nav { padding: 18px 20px; }
  .mem-card { padding: 40px 24px; }
  .mem-features { grid-template-columns: 1fr; }
  .mem-footer { flex-direction: column; gap: 12px; text-align: center; }
}