/* ─── Reset & Variables ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B1A;
  --orange-dark: #D94E00;
  --orange-light: #FF8C42;
  --orange-glow: rgba(255, 107, 26, 0.4);
  --orange-faint: rgba(255, 107, 26, 0.08);
  --orange-subtle: rgba(255, 107, 26, 0.12);
  --black: #080808;
  --dark: #101010;
  --dark2: #161616;
  --card-bg: #131313;
  --card-hover: #1a1a1a;
  --border: #222;
  --border-light: #2e2e2e;
  --white: #F0F0F0;
  --grey: #777;
  --grey-light: #999;
  --live-red: #FF3B3B;
  --live-glow: rgba(255, 59, 59, 0.5);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ─── Background texture ─────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,107,26,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255,107,26,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--orange-glow));
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}

.navbar-logo-name span { color: var(--orange); }

.navbar-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-stats {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--dark2);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-light);
}

.stat-pill.live-pill {
  border-color: rgba(255,59,59,0.3);
  background: rgba(255,59,59,0.06);
  color: #ff8080;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--live-red);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--live-glow); }
  50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 4px transparent; }
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
  position: relative;
}

.hero-logo-big {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 24px var(--orange-glow));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,26,0.35);
  background: var(--orange-faint);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}


.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--grey);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border-radius: 999px;
  margin: 0 auto;
}

/* ─── Filter Bar ─────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 6px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}

.filter-tab {
  padding: 7px 18px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab.active {
  background: var(--orange);
  color: var(--black);
}

.filter-tab:not(.active):hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.streamer-count {
  font-size: 0.82rem;
  color: var(--grey);
}
.streamer-count span { color: var(--white); font-weight: 700; }

/* ─── Grid ───────────────────────────────────────────────────────────────── */
.grid-section {
  padding: 0.5rem 2.5rem 5rem;
}

.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
}

/* ─── Streamer Card ──────────────────────────────────────────────────────── */
.streamer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition-slow);
  position: relative;
  group: true;
}

.streamer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-subtle), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 1;
}

.streamer-card:hover::before { opacity: 1; }

.streamer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,26,0.1), 0 8px 24px rgba(255,107,26,0.1);
}

.streamer-card.live {
  border-color: rgba(255, 59, 59, 0.3);
}

.streamer-card.live:hover {
  border-color: rgba(255, 59, 59, 0.6);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 8px 24px rgba(255, 59, 59, 0.12);
}

.streamer-card.live::before {
  background: linear-gradient(135deg, rgba(255,59,59,0.07), transparent 60%);
}

/* Thumbnail */
.card-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark2);
  overflow: hidden;
}

.card-thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.streamer-card:hover .card-thumbnail img {
  transform: scale(1.06);
}

/* Overlay gradient on thumbnail */
.card-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.thumbnail-offline {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #141414, #0e0e0e);
  position: relative;
}

.thumbnail-offline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,107,26,0.04), transparent 70%);
}

.thumbnail-offline svg {
  width: 36px; height: 36px;
  fill: #2a2a2a;
}

.thumbnail-offline span {
  font-size: 0.72rem;
  color: #3a3a3a;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Live badge */
.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--live-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(255, 59, 59, 0.6);
}

.live-badge .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}

/* Viewers badge */
.viewers-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.08);
}

.viewers-badge svg {
  width: 11px; height: 11px;
  fill: var(--orange);
}

/* Card body */
.card-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 16px;
  position: relative;
  z-index: 2;
}

.card-avatar {
  position: relative;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  overflow: hidden;
  background: #1e1e1e;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.streamer-card.live .card-avatar {
  border-color: var(--live-red);
  box-shadow: 0 0 12px rgba(255, 59, 59, 0.45);
}

.streamer-card:hover:not(.live) .card-avatar {
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.3);
}

.card-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.card-info { flex: 1; min-width: 0; }

.card-name {
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
}

.offline-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #383838;
  flex-shrink: 0;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--live-red);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--live-red);
  animation: pulse 1.5s infinite;
}

.card-game {
  font-size: 0.76rem;
  color: var(--orange-light);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 3px;
}

.card-title {
  font-size: 0.76rem;
  color: var(--grey-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.card-duration {
  font-size: 0.73rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-offline-status {
  font-size: 0.76rem;
  color: #444;
  font-weight: 500;
  margin-top: 3px;
}

.card-twitch-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--dark2);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card-twitch-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(255,107,26,0.35);
}

.card-twitch-link svg {
  width: 15px; height: 15px;
  fill: var(--grey-light);
  transition: fill var(--transition);
}

.card-twitch-link:hover svg { fill: var(--black); }

/* ─── Loading / Empty States ─────────────────────────────────────────────── */
.skeleton-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  animation: shimmer 1.8s ease-in-out infinite;
}

.skeleton-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #161616, #1e1e1e, #161616);
  background-size: 200% 100%;
  animation: skeletonSlide 1.8s ease-in-out infinite;
}

.skeleton-body {
  padding: 14px 16px;
  display: flex;
  gap: 12px;
}

.skeleton-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #1e1e1e;
  flex-shrink: 0;
}

.skeleton-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.skeleton-line { height: 11px; border-radius: 6px; background: #1e1e1e; }
.skeleton-line.short { width: 55%; }
.skeleton-line.medium { width: 78%; }

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

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

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 1rem;
  color: var(--grey);
}

.empty-state svg {
  width: 56px; height: 56px;
  fill: #222;
  margin-bottom: 1.2rem;
}

.empty-state h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.empty-state p { font-size: 0.85rem; }

/* ─── Error Banner ───────────────────────────────────────────────────────── */
.error-banner {
  margin: 0 2.5rem 1rem;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 59, 59, 0.07);
  border: 1px solid rgba(255, 59, 59, 0.25);
  color: #ff8080;
  font-size: 0.85rem;
  display: none;
}

/* ─── Admin Modal ────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--dark);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--border);
  border: none;
  color: var(--grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.modal-close:hover { background: #2a2a2a; color: var(--white); }

.modal h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  letter-spacing: -0.3px;
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 9px;
  background: var(--black);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}

.form-input::placeholder { color: #3a3a3a; }

.btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(255,107,26,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 6px 20px rgba(255,107,26,0.4);
  transform: translateY(-1px);
}

.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.modal-error {
  margin-top: 0.75rem;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.25);
  color: #ff8080;
  font-size: 0.82rem;
  display: none;
}

.modal-success {
  margin-top: 0.75rem;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(0, 200, 100, 0.08);
  border: 1px solid rgba(0, 200, 100, 0.25);
  color: #00c864;
  font-size: 0.82rem;
  display: none;
}

/* ─── Admin Panel ────────────────────────────────────────────────────────── */
.admin-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.admin-list h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.admin-streamer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 9px;
  background: var(--black);
  border: 1px solid var(--border);
  margin-bottom: 6px;
  transition: border-color var(--transition);
}

.admin-streamer-item:hover { border-color: var(--border-light); }

.admin-streamer-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-streamer-info .live-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--live-red);
  box-shadow: 0 0 6px var(--live-red);
  flex-shrink: 0;
}

.admin-streamer-info .offline-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
}

.admin-streamer-name {
  font-size: 0.87rem;
  font-weight: 600;
}

.candidate-item {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  transition: border-color var(--transition);
}

.candidate-item:hover { border-color: var(--border-light); }

.candidate-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.candidate-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.candidate-label {
  color: var(--grey);
  font-weight: 600;
  min-width: 55px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.candidate-value { color: var(--white); font-weight: 500; }

.candidate-twitch { color: var(--orange); font-weight: 700; }

.candidate-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.btn-approve {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #00c864;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-approve:hover {
  background: #00c864;
  border-color: #00c864;
  color: #000;
}

.btn-approve:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-delete {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.2);
  color: #ff6b6b;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-delete:hover {
  background: var(--live-red);
  border-color: var(--live-red);
  color: #fff;
}

/* ─── Join Section ───────────────────────────────────────────────────────── */
.join-section {
  padding: 1rem 2.5rem 5rem;
}

.join-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.join-container::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,26,0.08), transparent 70%);
  pointer-events: none;
}

.join-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--orange-faint);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.join-left h2 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.join-left p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.join-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

.join-perks li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.join-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.join-form .form-group { margin-bottom: 14px; }

.btn-join {
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,107,26,0.25);
  margin-top: 4px;
}

.btn-join:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 6px 20px rgba(255,107,26,0.4);
  transform: translateY(-1px);
}

.btn-join:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.join-error {
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.25);
  color: #ff8080;
  font-size: 0.82rem;
  display: none;
}

.join-success {
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(0, 200, 100, 0.08);
  border: 1px solid rgba(0, 200, 100, 0.25);
  color: #00c864;
  font-size: 0.82rem;
  display: none;
}

@media (max-width: 760px) {
  .join-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .join-form-row { grid-template-columns: 1fr; }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(0,0,0,0.3);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left img {
  height: 28px;
  opacity: 0.7;
  filter: grayscale(0.3);
}

.footer-left span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
}

.footer-left span b { color: var(--orange); }

.footer p {
  font-size: 0.75rem;
  color: #3a3a3a;
}

.btn-admin-footer {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .navbar { padding: 0 1.2rem; height: 60px; }
  .navbar-stats { display: none; }
  .filter-bar { padding: 1rem 1.2rem 0.5rem; }
  .grid-section { padding: 0.5rem 1.2rem 3rem; }
  .streamers-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.2rem 2rem; }
  .hero-logo-big { width: 60px; height: 60px; }
  .footer { padding: 1.5rem 1.2rem; }
  .error-banner { margin: 0 1.2rem 1rem; }
}
