/* ============================================
   ROBLOX CODES HUB - Dark Gamer Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1e1e2e;
  --border: #2a2a3e;
  --border-glow: #6c3bff;
  --accent: #7c4dff;
  --accent-hover: #9c6fff;
  --accent2: #00d4ff;
  --accent3: #ff4d6d;
  --text-primary: #f0f0ff;
  --text-secondary: #8888aa;
  --text-muted: #55557a;
  --star: #ffd700;
  --success: #00e676;
  --neon-purple: 0 0 20px rgba(124, 77, 255, 0.5);
  --neon-blue: 0 0 20px rgba(0, 212, 255, 0.4);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--neon-purple);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-admin {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,77,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(124,77,255,0.15);
  border: 1px solid rgba(124,77,255,0.3);
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--neon-purple);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124,77,255,0.6);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent2);
  border: 1px solid var(--accent2);
}

.btn-outline:hover {
  background: rgba(0,212,255,0.1);
  box-shadow: var(--neon-blue);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}

.btn-danger {
  background: var(--accent3);
  color: white;
}

.btn-success {
  background: var(--success);
  color: #000;
}

/* ── SECTION ── */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title .icon {
  font-size: 1.5rem;
}

/* ── GRID ── */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(124,77,255,0.2);
  background: var(--bg-card-hover);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1e1e3a 0%, #2a1a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}

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

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e1e3a 0%, #2a1a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body {
  padding: 1.1rem;
}

.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

/* ── STARS ── */
.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.star.filled { color: var(--star); }
.star.half { color: var(--star); opacity: 0.6; }

.rating-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-left: 0.4rem;
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-purple {
  background: rgba(124,77,255,0.2);
  color: var(--accent);
  border: 1px solid rgba(124,77,255,0.3);
}

.badge-blue {
  background: rgba(0,212,255,0.15);
  color: var(--accent2);
  border: 1px solid rgba(0,212,255,0.3);
}

.badge-red {
  background: rgba(255,77,109,0.15);
  color: var(--accent3);
  border: 1px solid rgba(255,77,109,0.3);
}

/* ── CODES LIST ── */
.codes-grid {
  display: grid;
  gap: 0.75rem;
}

.code-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  gap: 1rem;
  transition: border-color 0.2s;
}

.code-item:hover {
  border-color: var(--accent);
}

.code-value {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: var(--accent2);
  font-weight: 600;
  letter-spacing: 0.05em;
  flex: 1;
}

.code-desc {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.copy-btn {
  background: rgba(124,77,255,0.15);
  border: 1px solid rgba(124,77,255,0.3);
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
  background: var(--accent);
  color: white;
  box-shadow: var(--neon-purple);
}

.copy-btn.copied {
  background: var(--success);
  border-color: var(--success);
  color: #000;
}

/* ── OUTFIT CARD ── */
.outfit-card .card-img-placeholder {
  aspect-ratio: 3/4;
  font-size: 4rem;
}

.outfit-card .card-img img {
  aspect-ratio: 3/4;
}

/* ── ITEMS LIST (outfit detail) ── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.item-card:hover {
  border-color: var(--accent2);
  box-shadow: 0 4px 20px rgba(0,212,255,0.15);
  transform: translateY(-2px);
}

.item-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

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

.item-name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.item-price {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--star);
  font-weight: 700;
  font-size: 0.92rem;
}

.item-price .robux-icon {
  font-size: 0.8rem;
}

.item-free {
  color: var(--success);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent); }

.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* ── DETAIL LAYOUT ── */
.detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.detail-main { min-width: 0; }
.detail-side { position: sticky; top: 80px; }

.game-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e1e3a 0%, #2a1a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

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

.outfit-img-large {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/5;
  background: linear-gradient(135deg, #1e1e3a 0%, #2a1a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.outfit-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SIDE CARD ── */
.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.side-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.stat-item:last-child { border-bottom: none; }
.stat-label { color: var(--text-secondary); }
.stat-value { font-weight: 600; color: var(--text-primary); }

/* ── DESCRIPTION ── */
.game-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ── ADMIN ── */
.admin-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.admin-tab {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: 'Inter', sans-serif;
}

.admin-tab:hover { color: var(--text-primary); }
.admin-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* ── FORM ── */
.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

select.form-control option { background: var(--bg-secondary); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── ADMIN LIST ── */
.admin-list { display: grid; gap: 0.75rem; }

.admin-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
}

.admin-item-info { flex: 1; min-width: 0; }
.admin-item-title { font-weight: 600; font-size: 0.95rem; }
.admin-item-sub { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.15rem; }
.admin-item-actions { display: flex; gap: 0.5rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--accent3); }

/* ── SEARCH / FILTER ── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4rem;
}

footer a { color: var(--accent); text-decoration: none; }

/* ── TOTAL PRICE BOX ── */
.total-box {
  background: linear-gradient(135deg, rgba(124,77,255,0.1) 0%, rgba(0,212,255,0.08) 100%);
  border: 1px solid rgba(124,77,255,0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.total-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.total-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--star);
}

.total-price small {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

/* ── ADS ── */
.ad-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
}

.ad-container.ad-banner {
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.ad-container.ad-sidebar {
  margin: 0 0 1rem;
}

.ad-slot {
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

.ad-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  opacity: 0.6;
}

.ad-image-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.2s;
}

.ad-image-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.ad-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.ad-adsense {
  display: block;
  text-align: center;
}

/* Separador visual sutil ao redor dos anúncios */
.ad-banner-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  padding: 1rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9990;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-banner p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookie-banner a { color: var(--accent); }
#cookie-banner-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
#cookie-banner-btn:hover { background: var(--accent-hover); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .navbar { padding: 0 1rem; }
  .nav-links a { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
  .section { padding: 2rem 1rem; }
  .page-header { padding: 1.5rem 1rem; }
  .admin-layout { padding: 1.5rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .detail-layout { padding: 1.5rem 1rem; }
}
