/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --card-bg:  #161616;
  --purple:   #a855f7;
  --purple2:  #c084fc;
  --gold:     #e8c96a;
  --gold2:    #f5e09a;
  --cream:    #f0e6c8;
  --border:   #2a2a2a;
  --text:     #d4c9a8;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-vault {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.logo-reborn {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.admin-link { color: var(--purple) !important; }
.admin-link:hover { color: var(--purple2) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(26,10,46,0.35) 0%, rgba(10,10,10,0.45) 100%),
    url('hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(168,85,247,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,201,106,0.06) 0%, transparent 50%);
}

.stars-left, .stars-right {
  position: absolute;
  font-size: 2rem;
  color: var(--gold);
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 0 20px var(--gold);
  animation: twinkle 2s ease-in-out infinite alternate;
}
.stars-left  { left: 8%; }
.stars-right { right: 8%; }

@keyframes twinkle {
  from { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
  to   { opacity: 1;   transform: translateY(-50%) scale(1.1); }
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.hero-title {
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-vault {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 40%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(168,85,247,0.4));
  display: block;
}

.title-reborn {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(2rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, #c8a84b 0%, #e8c96a 50%, #f5e09a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(232,201,106,0.4));
  display: block;
  letter-spacing: 6px;
}

.title-roleplay {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--cream);
  display: block;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 10px rgba(240,230,200,0.3));
}

.hero-sub {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(168,85,247,0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(232,201,106,0.15);
}
.btn-secondary:hover {
  background: rgba(232,201,106,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,201,106,0.3);
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220,38,38,0.35);
}
.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(220,38,38,0.5);
}

/* ===== CARDS ===== */
.cards-section {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  max-width: 280px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.card h3 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.card p { font-size: 0.9rem; opacity: 0.75; line-height: 1.6; }

/* ===== FORM PAGES ===== */
.page-wrapper {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #1a0a2e 0%, #0a0a0a 60%);
  padding: 3rem 1rem 4rem;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 0 60px rgba(168,85,247,0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header .page-title-vault {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.form-header .page-title-sub {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
  display: block;
  margin-top: 0.2rem;
}

.form-header p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.65;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}

.form-group select option { background: #111; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-row {
  margin-top: 2rem;
  text-align: center;
}

.submit-row .btn { min-width: 200px; }

/* ===== STATUS MESSAGE ===== */
.status-msg {
  display: none;
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.status-msg.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid #22c55e;
  color: #4ade80;
  display: block;
}
.status-msg.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid #ef4444;
  color: #f87171;
  display: block;
}

/* ===== ADMIN PANEL ===== */
.admin-wrapper {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #1a0a2e 0%, #0a0a0a 60%);
  padding: 3rem 1rem 4rem;
}

.admin-container {
  max-width: 900px;
  margin: 0 auto;
}

.admin-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.admin-subtitle {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 2.5rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.tab-btn.active { color: var(--purple); border-bottom-color: var(--purple); }
.tab-btn:hover  { color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.response-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.response-card h4 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.response-card .form-group { margin-bottom: 1rem; }

.response-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ===== DROPDOWN ===== */
.nav-dropdown { position: relative; }

.dropdown-toggle { cursor: pointer; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 180px;
  list-style: none;
  padding: .4rem 0;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  /* invisible bridge so mouse can travel from toggle to menu */
  margin-top: 0;
}

/* invisible padding bridge to prevent gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown-menu li a {
  display: block;
  padding: .6rem 1.2rem;
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(168,85,247,0.1);
  color: var(--gold);
}

.nav-dropdown:hover .dropdown-menu { display: block; }

/* ===== FEATURES PAGE ===== */
.features-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: radial-gradient(ellipse at top, #1a0a2e 0%, #0a0a0a 60%);
}

.features-hero .page-title-vault { font-size: 2rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  transition: border-color .25s, transform .25s;
}

.feature-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.feature-card .fc-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.feature-card h3 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: .6rem;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: .88rem;
  line-height: 1.65;
  opacity: .75;
}

.feature-card .fc-badge {
  display: inline-block;
  margin-top: .75rem;
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fc-badge.purple { background: rgba(168,85,247,.15); color: var(--purple2); border: 1px solid var(--purple); }
.fc-badge.gold   { background: rgba(232,201,106,.12); color: var(--gold);   border: 1px solid var(--gold);   }
.fc-badge.red    { background: rgba(239,68,68,.12);   color: #f87171;       border: 1px solid #ef4444;       }
.fc-badge.green  { background: rgba(34,197,94,.12);   color: #4ade80;       border: 1px solid #22c55e;       }

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.stat-num {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .3rem;
  opacity: .8;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-text { flex: 1; }

.section-label {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: .75rem;
}

.section-heading {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.about-text p { line-height: 1.8; opacity: .8; font-size: .95rem; }

.about-image { flex: 1; }

.about-img-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(168,85,247,0.15);
  min-height: 280px;
  background: #1a0a2e;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

/* ===== APART SECTION ===== */
.apart-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.apart-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color .25s, transform .25s;
}

.apart-item:hover { border-color: var(--purple); transform: translateY(-3px); }

.apart-icon { font-size: 1.8rem; display: block; margin-bottom: .75rem; }

.apart-item h4 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: .5rem;
}

.apart-item p { font-size: .88rem; opacity: .7; line-height: 1.6; }

/* ===== ROLES SECTION ===== */
.roles-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.role-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}

.role-card:hover { transform: translateY(-4px); }
.role-card.lawman:hover  { border-color: #22c55e; }
.role-card.outlaw:hover  { border-color: #ef4444; }
.role-card.doctor:hover  { border-color: #22c55e; }
.role-card.civilian:hover { border-color: var(--gold); }

.role-icon { font-size: 2.2rem; margin-bottom: .75rem; display: block; }

.role-card h3 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: .6rem;
}

.role-card p { font-size: .88rem; opacity: .7; line-height: 1.6; margin-bottom: 1rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a0a 70%);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content p { opacity: .7; font-size: .95rem; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

/* Brand col */
.footer-brand .footer-logo-vault {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: 2px;
}
.footer-brand .footer-logo-reborn {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .85rem;
  opacity: .55;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.2rem;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover {
  border-color: var(--purple);
  color: var(--purple2);
  background: rgba(168,85,247,.1);
}

/* Columns */
.footer-col h4 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: .84rem;
  opacity: .6;
  transition: opacity .2s, color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-col ul li a .link-arrow { font-size: .65rem; opacity: .5; }

/* Discord widget col */
.footer-discord {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
}
.footer-discord h4 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.footer-discord-info {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-discord-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #5865F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-discord-icon svg { width: 22px; height: 22px; fill: #fff; }
.footer-discord-name {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .75rem;
  color: var(--gold);
  display: block;
  letter-spacing: 1px;
}
.footer-discord-members {
  font-size: .75rem;
  opacity: .5;
  display: block;
  margin-top: .15rem;
}
.footer-discord-btn {
  display: block;
  text-align: center;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  padding: .55rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.footer-discord-btn:hover { background: #4752c4; transform: translateY(-1px); }

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .78rem; opacity: .3; }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: .75rem;
  opacity: .35;
  color: var(--text);
  text-decoration: none;
  transition: opacity .2s;
}
.footer-bottom-links a:hover { opacity: .8; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-discord { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .navbar { flex-direction: column; gap: 1rem; padding: 1rem; }
  .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 1.5rem 1.2rem; }
  .stars-left, .stars-right { display: none; }
  .about-section { flex-direction: column; gap: 2rem; padding: 3rem 1.5rem; }
  .stat-item { padding: 0 1.5rem; }
}

