/* ============================================================
   LIAMIKO – Style Sheet
   Dark Theme + Cyan-Orange Gradient
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --bg:          #08080f;
  --bg2:         #0e0e1a;
  --bg3:         #141420;
  --bg4:         #1a1a2c;
  --border:      rgba(255,255,255,0.07);
  --border-hi:   rgba(255,255,255,0.18);

  --text:        #f0f4ff;
  --text-muted:  #94a3b8;
  --text-dim:    #4a5568;

  --cyan:   #06b6d4;
  --teal:   #0d9488;
  --green:  #10b981;
  --orange: #f97316;
  --yellow: #eab308;

  --grad: linear-gradient(135deg, var(--cyan), var(--green), var(--orange), var(--yellow));
  --grad-text: linear-gradient(90deg, var(--cyan), var(--orange));

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-hover: 0 8px 50px rgba(0,0,0,0.7);

  --nav-height: 68px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img  { height: 40px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 50%, rgba(6,182,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(249,115,22,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(16,185,129,0.08) 0%, transparent 50%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50%  { opacity: 1;   transform: scale(1.05) rotate(1deg); }
  100% { opacity: 0.8; transform: scale(1.02) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: auto;
  max-width: 340px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(6,182,212,0.3));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(6,182,212,0.3)); }
  50%       { filter: drop-shadow(0 0 50px rgba(249,115,22,0.4)); }
}

.hero-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.5rem, 8vw, 5rem);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 300;
  max-width: 500px;
  letter-spacing: 0.02em;
}

/* Streaming Buttons */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid var(--border);
  background: var(--bg3);
}
.streaming-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.streaming-btn.spotify  { color: #1DB954; border-color: rgba(29,185,84,0.3); }
.streaming-btn.apple    { color: #fc3c44; border-color: rgba(252,60,68,0.3); }
.streaming-btn.youtube  { color: #FF0000; border-color: rgba(255,0,0,0.3); }

.streaming-btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-hi);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  background: var(--bg4);
}
.streaming-btn.spotify:hover  { box-shadow: 0 6px 24px rgba(29,185,84,0.25); }
.streaming-btn.apple:hover    { box-shadow: 0 6px 24px rgba(252,60,68,0.25); }
.streaming-btn.youtube:hover  { box-shadow: 0 6px 24px rgba(255,0,0,0.25); }

/* Large variant (about page) */
.streaming-btn--large {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  cursor: pointer;
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--text-muted); }
.hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   MUSIK SEKTION
   ============================================================ */
.music-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 32px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-hi);
  background: var(--bg4);
}
.filter-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

/* Track Grid */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Track Card */
.track-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.track-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6,182,212,0.3);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(6,182,212,0.15);
}
.track-card.hidden { display: none; }

/* Cover */
.track-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg4);
}
.track-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.track-card:hover .track-cover img { transform: scale(1.06); }

.track-cover-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg4), var(--bg2));
}
.track-cover-placeholder svg {
  width: 64px; height: 64px;
  color: var(--text-dim);
}

.track-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.track-card:hover .track-overlay { background: rgba(0,0,0,0.45); }

.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.play-btn svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.track-card:hover .play-btn { opacity: 1; transform: scale(1); }

/* Card Info */
.track-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.track-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 50px;
  padding: 2px 10px;
  display: inline-block;
  width: fit-content;
}
.track-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
  line-height: 1.3;
}
.track-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.no-tracks {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 201;
  background: var(--bg3);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  width: min(820px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  z-index: 1;
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: var(--bg2); color: var(--text); border-color: var(--border-hi); }

/* Player */
.modal-player {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.modal-player iframe {
  display: block;
  width: 100%;
  border: none;
}
.modal-player .yt-iframe   { aspect-ratio: 16/9; }
.modal-player .sp-iframe   { height: 352px; }

/* Player Tabs */
.modal-tabs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.modal-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg4);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.modal-tab:hover { color: var(--text); border-color: var(--border-hi); }
.modal-tab.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* Modal Info */
.modal-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}
.modal-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 50px;
  padding: 2px 10px;
  display: inline-block;
}
.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.2;
}
.modal-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
  line-height: 1.6;
}
.modal-ext-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.modal-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--transition);
}
.modal-ext-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.modal-ext-link:hover { color: var(--text); border-color: var(--border-hi); background: var(--bg2); }
.modal-ext-link.yt:hover  { color: #FF0000; border-color: rgba(255,0,0,0.3); }
.modal-ext-link.sp:hover  { color: #1DB954; border-color: rgba(29,185,84,0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  overflow: hidden;
  text-align: center;
}
.about-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.about-section { padding: 60px 0 100px; }
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 800px;
}
.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.about-text p { margin-bottom: 1em; }
.about-streaming h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { height: 36px; width: auto; opacity: 0.8; }
.footer-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .tracks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,8,15,0.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .tracks-grid { grid-template-columns: 1fr; gap: 16px; }

  .modal { padding: 16px; }
  .modal-info { flex-direction: column; }
  .modal-ext-links { flex-direction: row; flex-wrap: wrap; }

  .streaming-links { gap: 8px; }
  .streaming-btn { padding: 10px 16px; font-size: 0.82rem; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hi); }

/* ============================================================
   ADMIN STYLES (admin/ Bereich)
   ============================================================ */
.admin-body {
  background: var(--bg);
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.admin-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.admin-header h1 {
  font-size: 1.1rem;
  font-weight: 600;
}
.admin-header a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.admin-header a:hover { color: var(--text); }

.admin-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.admin-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.admin-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Forms */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--cyan); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { min-height: 100px; resize: vertical; }

.form-hint { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg4);
  border-color: var(--border);
  color: var(--text-muted);
}
.btn-secondary:hover { color: var(--text); border-color: var(--border-hi); }
.btn-danger {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: #ef4444;
}
.btn-danger:hover { background: rgba(239,68,68,0.2); }
.btn-sm { padding: 6px 12px; font-size: 0.78rem; }

/* Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.admin-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 12px 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-table td strong { color: var(--text); }

.thumb {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg4);
}
.thumb-placeholder {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}
.thumb-placeholder svg { width: 20px; height: 20px; }

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
}
.badge-active   { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-inactive { background: rgba(100,116,139,0.15); color: #64748b; }

.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #10b981; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }

/* Login page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}
.login-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 400px;
}
.login-box h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.login-box p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .admin-table { font-size: 0.8rem; }
}
