/* ====== NITE STREAM - PREMIUM NIGHTLIFE APP ====== */
/* Base styles with expensive feel: dark blues, whites, sharp edges mixed with soft curves */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ====== CSS Variables - Premium Design Tokens ====== */
:root {
  /* Backgrounds */
  --bg-primary: #020714;
  --bg-elevated: #0a1628;
  --bg-card: #0d1f35;
  --bg-panel: #050f20;

  /* Accents - Minimal pink, focus on aqua/white */
  --accent-primary: #53e0e8;
  --accent-secondary: #36c0cf;
  --accent-subtle: rgba(83, 224, 232, 0.15);

  /* Text - More white for premium feel */
  --text-primary: #ffffff;
  --text-secondary: #e8ecf4;
  --text-muted: #a8b4d1;
  --text-dark: #02040a;

  /* Borders & Dividers */
  --border-light: 1px solid rgba(255, 255, 255, 0.12);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --divider: rgba(255, 255, 255, 0.06);

  /* Radii - Mix of sharp and soft */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows - Expensive depth */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-heavy: 0 18px 60px rgba(0, 0, 0, 0.7);

  /* Typography */
  --font-main: -apple-system, system-ui, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #0a1a35 0%, #020414 60%, #000000 100%);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== App Shell ====== */
.app-shell {
  min-height: 100vh;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, #08162c 0%, #040a14 45%, #02030a 100%);
  position: relative;
}

/* ====== PREMIUM TOP BAR with Logo ====== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  background: linear-gradient(135deg, #050a16, #0a152b);
  border-bottom: var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  z-index: 9000;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

/* Premium logo instead of generic orb */
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #53e0e8, #2a8f99);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #02040a;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 4px 16px rgba(83, 224, 232, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

.brand-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

/* City feeds pill - cleaner design */
.city-feeds-pill {
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, #53e0e8, #36c0cf);
  color: var(--text-dark);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 4px 14px rgba(83, 224, 232, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}

.city-feeds-pill:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 6px 20px rgba(83, 224, 232, 0.35);
}

.city-feeds-pill .pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32ff92;
  box-shadow: 0 0 8px rgba(50, 255, 146, 0.9);
  animation: pulse 2s infinite;
}

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

/* ====== Page Root ====== */
.page-root {
  flex: 1;
  padding: 10px 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ====== MAP PAGE ====== */
.map-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.map-card {
  position: relative;
  flex: 1;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: var(--border-light);
  z-index: 100;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ====== CENTERED USER AVATAR (Snapchat-style) ====== */
.user-dot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 1000 !important;
}

.user-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #53e0e8, #2a8f99);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 3px solid #ffffff;
  box-shadow: 
    0 0 0 2px rgba(83, 224, 232, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(83, 224, 232, 0.4);
}

.user-dot::before {
  content: 'ðŸ‘¤';
  font-size: 26px;
  filter: brightness(1.2);
}

.user-dot-label {
  margin-top: 7px;
  font-size: 11px;
  text-align: center;
  color: #ffffff;
  text-shadow: 
    0 0 12px rgba(0, 0, 0, 1),
    0 2px 6px rgba(0, 0, 0, 0.9);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ====== VENUE MAP PINS ====== */
.venue-pin-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 500;
}

.venue-pin {
  width: 44px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #53e0e8, #2a8f99);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 0 14px rgba(83, 224, 232, 0.6),
    0 5px 16px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: transform 0.15s ease;
}

.venue-pin-wrapper:hover .venue-pin {
  transform: scale(1.12);
}

.venue-pin-label {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.1;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(0, 0, 0, 1);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ====== BIGGER VENUE THUMBNAILS with More Info ====== */
.thumb-strip {
  display: flex;
  gap: 12px;
  padding: 10px 2px 4px;
  overflow-x: auto;
  scrollbar-width: none;
  z-index: 200;
  position: relative;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.venue-thumb {
  flex: 1;
  min-width: 180px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: var(--border-light);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
  min-height: 110px;
  box-shadow: var(--shadow-soft);
}

.venue-thumb:first-child {
  background: linear-gradient(135deg, #53e0e8, #2a8f99);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.venue-thumb:hover {
  border-color: rgba(83, 224, 232, 0.6);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.venue-thumb-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.venue-thumb:first-child .venue-thumb-title {
  color: var(--text-dark);
}

.venue-thumb-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

.venue-thumb:first-child .venue-thumb-meta {
  color: rgba(2, 4, 10, 0.75);
}

.venue-thumb-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.venue-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
}

.stat-value {
  color: var(--accent-primary);
  font-weight: 700;
}

.venue-thumb.thumb-active {
  outline: 2px solid var(--accent-primary);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(83, 224, 232, 0.7);
}

/* ====== FLOATING SCENEHOP BUTTON (Snapchat-style) ====== */
.floating-scenehop {
  position: fixed;
  right: 16px;
  bottom: 100px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(13, 31, 53, 0.95));
  backdrop-filter: blur(12px);
  border: var(--border-light);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(83, 224, 232, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8500;
  transition: all 0.2s ease;
}

.floating-scenehop:hover {
  transform: scale(1.08);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(83, 224, 232, 0.4);
}

.floating-scenehop-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.floating-scenehop-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ====== FULL-SCREEN VENUE PANEL ====== */
.venue-panel {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1024px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--bg-elevated), var(--bg-primary));
  border-radius: 26px 26px 0 0;
  box-shadow: var(--shadow-heavy);
  border-top: var(--border-light);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.venue-panel.panel-open {
  transform: translateY(0);
}

.panel-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 7000;
}

.panel-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.panel-handle-bar {
  padding: 14px 0;
  display: flex;
  justify-content: center;
  cursor: grab;
  flex-shrink: 0;
  touch-action: none;
}

.panel-handle-bar:active {
  cursor: grabbing;
}

.panel-handle {
  width: 42px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.35);
}

.panel-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: var(--border-light);
  color: var(--text-primary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  font-weight: 300;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.panel-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

.panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 18px 28px;
}

/* ====== Venue Detail Layout ====== */
.multi-screen-layout {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .multi-screen-layout {
    flex-direction: column;
  }
}

.screen-hero-column {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #53e0e8 0%, #2a8f99 100%);
  position: relative;
  overflow: hidden;
  border: var(--border-light);
  box-shadow: var(--shadow-soft);
}

.screen-hero-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.screen-small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 400px) {
  .screen-small-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.screen-small {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: var(--border-subtle);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.screen-small:nth-child(1) {
  background: linear-gradient(135deg, #53c0e8, #2a8f99);
}

.screen-small:nth-child(2) {
  background: linear-gradient(135deg, #3aa0cf, #2a7f8f);
}

.screen-small:nth-child(3) {
  background: linear-gradient(135deg, #ffd26f, #d9a647);
}

.screen-small-label {
  position: absolute;
  bottom: 7px;
  left: 7px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ====== PREMIUM Venue Info ====== */
.venue-info {
  flex: 2;
  min-width: 220px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.venue-info-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.venue-info-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}

.venue-info-row:last-of-type {
  border-bottom: none;
}

.info-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}

.info-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.info-value.ratio {
  color: var(--accent-primary);
}

.info-value.cover {
  color: #ffd26f;
}

.info-value.vibe {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

/* ====== SHARE-A-DRINK AVATARS ====== */
.open-to-drink-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: var(--border-light);
}

.open-to-drink-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.avatars-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.avatars-row::-webkit-scrollbar {
  display: none;
}

.avatar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.avatar-item:hover {
  transform: translateY(-3px);
}

.avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--text-primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.avatar-circle.anonymous {
  background: linear-gradient(135deg, #53e0e8, #2a8f99);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--text-primary);
}

.avatar-circle.anonymous::before {
  content: 'ðŸ‘¤';
}

.avatar-name {
  font-size: 11px;
  color: var(--text-primary);
  text-align: center;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.stream-btn {
  margin-top: auto;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(90deg, #53e0e8, #36c0cf);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 10px 28px rgba(83, 224, 232, 0.4);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.stream-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 14px 36px rgba(83, 224, 232, 0.5);
}

/* ====== UPDATED TAB BAR (No Map, with Icons) ====== */
.tab-bar {
  display: flex;
  padding: 8px 10px 12px;
  gap: 10px;
  background: radial-gradient(circle at top, #050b18, #02040a 70%);
  border-top: var(--border-light);
  z-index: 3000;
  position: relative;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
}

.tab-button {
  flex: 1;
  border-radius: var(--radius-pill);
  border: none;
  padding: 10px 6px;
  font-size: 13px;
  background: rgba(10, 22, 40, 0.6);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s ease-out;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid transparent;
}

.tab-icon {
  font-size: 20px;
  line-height: 1;
}

.tab-label {
  font-size: 11px;
  line-height: 1;
}

.tab-button.active {
  background: linear-gradient(135deg, #0d2a4c, #081632);
  box-shadow: 
    0 0 0 1px rgba(83, 224, 232, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.7);
  color: var(--text-primary);
  font-weight: 700;
  border-color: rgba(83, 224, 232, 0.4);
}

/* ====== SCENEHOP OVERLAY (like other panels) ====== */
.scenehop-panel {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1024px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--bg-elevated), var(--bg-primary));
  border-radius: 26px 26px 0 0;
  box-shadow: var(--shadow-heavy);
  border-top: var(--border-light);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.scenehop-panel.panel-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.scenehop-header {
  padding: 20px 20px 16px;
  border-bottom: var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 22, 40, 0.6);
}

.scenehop-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.scenehop-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: var(--border-light);
  color: var(--text-primary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 300;
}

.scenehop-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

.scenehop-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* ====== GENERIC PAGE PANELS (Toast, Profile) - PREMIUM STYLE ====== */
.page-panel {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 24px 22px 28px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: var(--border-light);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ====== TOAST FORM - PREMIUM ====== */
.toast-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.input,
.select {
  border-radius: var(--radius-md);
  border: var(--border-light);
  background: rgba(10, 22, 40, 0.7);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.input:focus,
.select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 
    inset 0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(83, 224, 232, 0.2);
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23a8b4d1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.button-primary {
  margin-top: 14px;
  border-radius: var(--radius-pill);
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, #53e0e8, #36c0cf);
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 10px 28px rgba(83, 224, 232, 0.4);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 14px 36px rgba(83, 224, 232, 0.5);
}

/* ====== PROFILE - PREMIUM ====== */
.profile-handle {
  margin-top: 8px;
  font-size: 18px;
  color: var(--accent-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.profile-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.5;
  font-weight: 500;
}

/* ====== ADMIN PLACEHOLDER CARDS ====== */
.admin-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.admin-feature-card {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.8), rgba(13, 31, 53, 0.6));
  border: var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.admin-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(83, 224, 232, 0.4);
  box-shadow: var(--shadow-medium);
}

.admin-icon {
  font-size: 32px;
  line-height: 1;
}

.admin-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.admin-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}