/* INNDULLGE - Core Styles */
:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-card: #1a1a20;
  --bg-elevated: #22222a;
  --border: #2a2a35;
  --border-light: #3a3a48;
  --text-primary: #f5f5f7;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --accent: #d4af37; /* Gold — matches logo */
  --accent-hover: #e8c547;
  --accent-soft: rgba(212, 175, 55, 0.18);
  --danger: #e74c3c;
  --success: #2ecc71;
  --info: #3498db;
  --pink: #e84393;
  --gradient-gold: linear-gradient(135deg, #b8960f 0%, #d4af37 40%, #f0d060 50%, #d4af37 100%);
  --gradient-dark: linear-gradient(180deg, #121216 0%, #0a0a0c 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.8rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
h3 { font-size: 1.25rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0c;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
  color: #0a0a0c;
}
.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: var(--border);
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-soft);
}
.btn-danger {
  background: var(--danger);
  color: white;
}
.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}
.btn-block { width: 100%; }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

/* Checkbox & Radio */
.checkbox-group, .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.15s;
  user-select: none;
}
.checkbox-item:hover, .radio-item:hover {
  border-color: var(--accent);
}
.checkbox-item input, .radio-item input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
.checkbox-item.selected, .radio-item.selected {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--border-light);
}
.card-body { padding: 1.25rem; }

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-sm { max-width: 560px; }
.container-md { max-width: 800px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-sm-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge-gold {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.badge-basic {
  background: rgba(160,160,176,0.15);
  color: var(--text-secondary);
}
.badge-verified {
  background: rgba(46, 204, 113, 0.15);
  color: var(--success);
}
.badge-unverified {
  background: rgba(231, 76, 60, 0.15);
  color: var(--danger);
}
.badge-18 {
  background: rgba(232, 67, 147, 0.2);
  color: var(--pink);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 120px;
  background-color: #0a0a0c;
  background-image: url('../images/cover.jpg');
  background-size: cover;
  background-position: center 25%;
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: flex;
  align-items: center;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 12, 0.55) 0%,
    rgba(10, 10, 12, 0.75) 50%,
    rgba(10, 10, 12, 0.88) 100%
  );
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .site-header { min-height: 90px; }
  .logo img { height: 48px; border-radius: 10px; }
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}
.logo-text span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: rgba(245, 245, 247, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #f5f5f7;
  font-size: 1.5rem;
  cursor: pointer;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
}

/* Age Gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.age-gate-card h1 {
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.age-gate-card p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Landing Hero */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero .tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Profile Cards Grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
@media (min-width: 600px) {
  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (min-width: 900px) {
  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.profile-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.profile-card-img {
  aspect-ratio: 1 / 1;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-card-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a20, #2a2a35);
  color: var(--text-muted);
  font-size: 1.75rem;
}
.profile-card-badges {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.profile-card-badges .badge {
  font-size: 0.6rem;
  padding: 0.12rem 0.4rem;
}
.status-dot {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3);
}
.status-dot.status-online {
  background: #2ecc71;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 0 8px rgba(46, 204, 113, 0.6);
}
.status-dot.status-offline {
  background: #6b6b7b;
}
.status-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.08rem 0.3rem;
  border-radius: 3px;
  flex-shrink: 0;
}
.status-label.online {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}
.status-label.offline {
  background: rgba(107, 107, 123, 0.25);
  color: #8a8a9a;
}
.profile-card-body {
  padding: 0.55rem 0.6rem 0.65rem;
}
.profile-card-name {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-card-meta {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.profile-card-tags .tag {
  font-size: 0.6rem;
  padding: 0.1rem 0.3rem;
}
.tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  color: var(--text-muted);
}

/* Profile Detail */
.profile-cover {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: #121216;
  background-image: none;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.profile-cover.has-cover {
  background-color: #0a0a0c;
}
.profile-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 12, 0.95) 0%,
    rgba(10, 10, 12, 0.45) 40%,
    rgba(10, 10, 12, 0.25) 100%
  );
}
.profile-cover-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}
.profile-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.profile-card-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.profile-header {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: end;
}
@media (max-width: 768px) {
  .profile-header {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .profile-cover { height: 180px; }
}
.profile-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 4px solid var(--bg-card);
  margin-top: -80px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.profile-avatar img,
.profile-avatar .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #1a1a20, #2a2a35);
}
.profile-info h1 { margin-bottom: 0.35rem; }
.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.profile-stats strong { color: var(--text-primary); }

/* Section */
.section { padding: 2.5rem 0; }
.section-title {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Tabs — wider section */
.tabs-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}
.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  overflow-x: auto;
  background: var(--bg-card);
  padding: 0 0.5rem;
  border-radius: 0;
  width: 100%;
}
.tab {
  padding: 1rem 1.75rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
  min-width: 100px;
}
.tab:hover { color: var(--text-primary); }
.tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .blurred {
  filter: blur(18px);
  transform: scale(1.1);
}
.gallery-item .lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  gap: 0.4rem;
}
.gallery-item .badge-18 {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
}

/* Chat / Messages */
.chat-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: calc(100vh - 70px);
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .chat-layout { grid-template-columns: 1fr; }
}
.chat-list {
  border-right: 1px solid var(--border);
  overflow-y: auto;
  background: var(--bg-secondary);
}
.chat-list-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.chat-list-item:hover, .chat-list-item.active {
  background: var(--bg-card);
}
.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  flex-shrink: 0;
  overflow: hidden;
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-meta { flex: 1; min-width: 0; }
.chat-name { font-weight: 600; font-size: 0.95rem; }
.chat-preview {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-window {
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
}
.chat-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.message {
  max-width: 75%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
}
.message.sent {
  align-self: flex-end;
  background: var(--accent);
  color: #0a0a0c;
  border-bottom-right-radius: 4px;
}
.message.received {
  align-self: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-input-area {
  padding: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}
.chat-input-area input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.chat-input-area input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Admin */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 60px);
}
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
}
.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
}
.admin-nav a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.15s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}
.admin-content { padding: 1.5rem; }
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.stat-card .value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Table */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
tr:hover td { background: rgba(255,255,255,0.02); }

/* Progress / Steps */
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}
.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.step.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0c;
}
.step.done .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: white;
}
.step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.step.active .step-label { color: var(--accent); }

/* Utility */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Limit banner */
.limit-banner {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.limit-banner strong { color: var(--accent); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}
.empty-state svg, .empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 1000;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Verification status pill */
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
}
.verified-pill::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}
.unverified-pill::before {
  content: '!';
  color: var(--danger);
}