/* Amfi Ayarları — görsel, sosyal özellik yok */
:root {
  --blue-50: #eff6ff;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --gray-50: #f8faff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --card: #fff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
}

html.dark {
  --gray-50: #0c0f1a;
  --gray-100: #1a2236;
  --gray-200: #1e2d4a;
  --gray-400: #5a7099;
  --gray-500: #8899bb;
  --gray-700: #bfcfe8;
  --gray-900: #f1f5ff;
  --card: #131828;
  --border: #1e2d4a;
  --text: #f1f5ff;
  --muted: #8899bb;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  margin: 0;
}

html.dark body {
  background: #0c0f1a;
}

.left-sidebar {
  padding: 1.5rem 1rem 2rem;
  position: sticky;
  top: 58px;
  height: calc(100vh - 58px);
  overflow-y: auto;
}

.nav-profile-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.profile-avatar-sm {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-name-sm {
  font-size: 0.875rem;
  font-weight: 500;
}

.profile-role-sm {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 2px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 500;
}

html.dark .sidebar-nav a {
  color: var(--gray-500);
}

html.dark .sidebar-nav a:hover,
html.dark .sidebar-nav a.active {
  background: #1a2236;
  color: var(--gray-700);
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.hamburger-section {
  position: relative;
}

.hamburger-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
}

.hamburger-btn:hover {
  background: var(--gray-100);
}

html.dark .hamburger-btn:hover {
  background: #1a2236;
}

.hamburger-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  z-index: 50;
  overflow: hidden;
}

.hamburger-menu.open {
  display: block;
}

.hamburger-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.hamburger-menu a:last-child {
  border-bottom: none;
}

.hamburger-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

html.dark .hamburger-menu a:hover {
  background: #1a2236;
  color: #93c5fd;
}

#navModeratorPanelLink[hidden] {
  display: none !important;
}

.amfi-guest-auth-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 10px;
  border: none;
  background: var(--blue-600, #2563eb);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.22);
  transition: background 0.15s, transform 0.15s;
}

.amfi-guest-auth-btn:hover {
  background: var(--blue-700, #1d4ed8);
  transform: translateY(-1px);
}

.amfi-sidebar-guest {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid var(--blue-100, #dbeafe);
  background: var(--blue-50, #eff6ff);
}

html.dark .amfi-sidebar-guest {
  background: #0d1829;
  border-color: #112240;
}

.amfi-sidebar-guest-btn {
  width: 100%;
}

.amfi-sidebar-guest-hint {
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  line-height: 1.45;
  text-align: center;
  margin: 0;
}

#amfiGuestAuthNav {
  display: none;
}

.amfi-guest-mode #amfiNavAv,
.amfi-guest-mode #amfiSidebarProfile,
.amfi-guest-mode #amfiLogoutBtn {
  display: none !important;
}

.amfi-guest-mode #amfiGuestAuthNav {
  display: inline-flex !important;
}

.amfi-guest-mode #amfiSidebarGuest {
  display: flex !important;
}

.amfi-guest-mode .amfi-nav-profil {
  display: none;
}

.profile-avatar-sm.has-img {
  padding: 0;
  overflow: hidden;
  background: transparent !important;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  flex-shrink: 0;
}

.profile-avatar-sm.has-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

#amfiNavAv.profile-avatar-sm {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  flex-shrink: 0;
  overflow: hidden;
}

.amfi-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 58px;
  min-height: 100vh;
}

.amfi-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: rgba(248, 250, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border, #e2e8f0);
}

html.dark .amfi-topnav {
  background: rgba(12, 15, 26, 0.94);
  border-bottom-color: #1a2236;
}

.amfi-topnav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.35rem;
  color: var(--blue-700, #1d4ed8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amfi-topnav-logo .logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500, #3b82f6);
}

.amfi-topnav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amfi-theme-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--card, #fff);
  cursor: pointer;
  font-size: 1rem;
}

.amfi-main {
  padding: 1.25rem 1.5rem 2.5rem;
  min-width: 0;
}

.amfi-hero {
  margin-bottom: 1.25rem;
}

.amfi-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--text, #0f172a);
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
}

.amfi-hero p {
  font-size: 0.88rem;
  color: var(--muted, #64748b);
  line-height: 1.5;
  max-width: 52ch;
}

.amfi-hero-badge {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea580c;
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.25);
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
}

.amfi-picker-bar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--card, #fff);
}

html.dark .amfi-picker-bar {
  background: #131828;
  border-color: #1e2d4a;
}

.amfi-picker-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted, #64748b);
  margin-bottom: 0.45rem;
}

.amfi-search-wrap {
  position: relative;
}

.amfi-search-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text, #0f172a);
  background: var(--gray-50, #f8faff);
  transition: border-color 0.15s, box-shadow 0.15s;
}

html.dark .amfi-search-input {
  background: #0c0f1a;
  border-color: #1e2d4a;
  color: var(--text, #f1f5ff);
}

.amfi-search-input:focus {
  outline: none;
  border-color: var(--blue-500, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.amfi-search-input::placeholder {
  color: var(--muted, #64748b);
}

.amfi-search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  max-height: 320px;
  overflow-y: auto;
  border-radius: 14px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--card, #fff);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
}

html.dark .amfi-search-dropdown {
  background: #131828;
  border-color: #1e2d4a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.amfi-search-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.12s;
}

.amfi-search-option:hover {
  background: var(--blue-50, #eff6ff);
}

html.dark .amfi-search-option:hover {
  background: #1a2236;
}

.amfi-search-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.amfi-search-thumb--amp-mini {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #1a1a1a;
}

.amfi-thumb-amp-grill {
  height: 10px;
  background: repeating-linear-gradient(90deg, #0d0d0d, #1f1f1f 3px);
}

.amfi-thumb--marshall {
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
}

.amfi-thumb--marshall .amfi-thumb-amp-grill {
  background: repeating-linear-gradient(90deg, #0d0d0d, #1f1f1f 4px);
}

.amfi-thumb--katana {
  background: linear-gradient(180deg, #1a1a1a, #000);
}

.amfi-thumb--fender {
  background: linear-gradient(180deg, #3d2817, #1a1208);
}

.amfi-thumb--orange {
  background: linear-gradient(180deg, #ea580c, #7c2d12);
}

.amfi-thumb--blackstar {
  background: linear-gradient(180deg, #1e293b, #0f172a);
}

.amfi-thumb--line6 {
  background: linear-gradient(180deg, #14532d, #052e16);
}

.amfi-thumb--vox {
  background: linear-gradient(180deg, #422006, #1c1917);
}

.amfi-thumb--peavey {
  background: linear-gradient(180deg, #1e3a5f, #0f172a);
}

.amfi-thumb--song-metal,
.amfi-thumb--song-thrash,
.amfi-thumb--song-prog-metal,
.amfi-thumb--song-alt-metal {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  box-shadow: inset 0 0 0 2px rgba(234, 88, 12, 0.35);
}

.amfi-thumb--song-grunge,
.amfi-thumb--song-alt-rock,
.amfi-thumb--song-indie {
  background: linear-gradient(135deg, #334155, #1e293b);
}

.amfi-thumb--song-hard-rock,
.amfi-thumb--song-classic-rock,
.amfi-thumb--song-blues-rock,
.amfi-thumb--song-rock {
  background: linear-gradient(135deg, #422006, #1c1917);
}

.amfi-thumb--song-nu-metal {
  background: linear-gradient(135deg, #3f1d1d, #0f0f0f);
}

.amfi-thumb--song-punk {
  background: linear-gradient(135deg, #14532d, #052e16);
}

.amfi-thumb--song-funk-rock {
  background: linear-gradient(135deg, #7c2d12, #431407);
}

.amfi-thumb--song-ballad,
.amfi-thumb--song-britpop {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
}

.amfi-thumb--song-turkish-rock {
  background: linear-gradient(135deg, #7f1d1d, #1c1917);
  box-shadow: inset 0 0 0 2px rgba(220, 38, 38, 0.35);
}

.amfi-thumb--song-turkish-pop {
  background: linear-gradient(135deg, #831843, #1e1b4b);
}

.amfi-thumb--song-anatolian-rock {
  background: linear-gradient(135deg, #854d0e, #422006);
  box-shadow: inset 0 0 0 2px rgba(234, 179, 8, 0.35);
}

[class*='amfi-thumb--song-']::after {
  content: '♪';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.amfi-search-option-text {
  min-width: 0;
  flex: 1;
}

.amfi-search-option-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text, #0f172a);
}

.amfi-search-option-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--muted, #64748b);
  margin-top: 2px;
  line-height: 1.35;
}

.amfi-search-empty {
  padding: 0.75rem 0.55rem;
  font-size: 0.8rem;
  color: var(--muted, #64748b);
  text-align: center;
}

.amfi-selection-hint {
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  text-align: center;
  margin-bottom: 0.75rem;
}

.amfi-workspace {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr minmax(240px, 300px);
  gap: 1rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .amfi-workspace {
    grid-template-columns: 1fr;
  }
}

.amfi-panel {
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--card, #fff);
  padding: 1rem 1.05rem;
  min-height: 320px;
}

html.dark .amfi-panel {
  background: #131828;
  border-color: #1e2d4a;
}

.amfi-panel--stage {
  border: none;
  background: transparent;
  padding: 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amfi-panel-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
  color: var(--text, #0f172a);
}

.amfi-panel-sub {
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  margin: 0 0 0.35rem;
}

.amfi-panel-hardware {
  font-size: 0.72rem;
  color: var(--muted, #64748b);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.amfi-panel-empty {
  font-size: 0.84rem;
  color: var(--muted, #64748b);
  line-height: 1.55;
  padding: 1.5rem 0.5rem;
}

.amfi-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.amfi-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  background: var(--gray-100, #f1f5f9);
  color: var(--muted, #64748b);
  border: 1px solid var(--border, #e2e8f0);
}

.amfi-pill--on {
  background: rgba(234, 88, 12, 0.12);
  color: #c2410c;
  border-color: rgba(234, 88, 12, 0.35);
}

.amfi-pill--special {
  background: linear-gradient(90deg, #1d4ed8, #4f46e5);
  color: #fff;
  border: none;
  font-weight: 600;
}

html.dark .amfi-pill--special {
  background: linear-gradient(90deg, #2563eb, #6366f1);
  color: #f8fafc;
}

.amfi-pill--channel {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-700, #1d4ed8);
  border-color: rgba(59, 130, 246, 0.25);
}

.amfi-dials {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.amfi-dial-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  margin-bottom: 0.28rem;
  color: var(--muted, #64748b);
}

.amfi-dial-head strong {
  color: var(--text, #0f172a);
  font-weight: 600;
}

.amfi-dial-track {
  height: 6px;
  border-radius: 100px;
  background: var(--gray-200, #e2e8f0);
  overflow: hidden;
}

.amfi-dial-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #ea580c, #f97316);
}

.amfi-dial--na {
  font-size: 0.72rem;
  color: var(--muted, #64748b);
  padding: 0.35rem 0;
}

.amfi-dial--na em {
  font-style: normal;
  opacity: 0.8;
}

.amfi-panel-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted, #64748b);
  line-height: 1.45;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--border, #e2e8f0);
}

.amfi-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.amfi-meta-row span {
  font-size: 0.72rem;
  background: var(--gray-50, #f8faff);
  border: 1px solid var(--border, #e2e8f0);
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  color: var(--text, #0f172a);
}

.amfi-meta-row em {
  font-style: normal;
  color: var(--muted, #64748b);
  margin-right: 0.25rem;
}

.amfi-play-intro {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text, #0f172a);
  margin-bottom: 0.75rem;
}

.amfi-play-sections {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.amfi-play-sections li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border, #e2e8f0);
  font-size: 0.78rem;
  line-height: 1.45;
}

.amfi-play-sections li strong {
  display: block;
  color: var(--text, #0f172a);
  margin-bottom: 0.15rem;
}

.amfi-play-sections li span {
  color: var(--muted, #64748b);
}

.amfi-gear-tip {
  font-size: 0.75rem;
  color: var(--muted, #64748b);
  line-height: 1.45;
  padding: 0.65rem;
  border-radius: 10px;
  background: var(--gray-50, #f8faff);
  border: 1px solid var(--border, #e2e8f0);
}

.amfi-gear-tip-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ea580c;
  margin-bottom: 0.25rem;
}

/* Amfi sahne görseli */
.amfi-stage {
  position: relative;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.amfi-stage-glow {
  position: absolute;
  inset: 10% 5% 25%;
  background: radial-gradient(ellipse at center, rgba(234, 88, 12, 0.35) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.amfi-amp {
  position: relative;
  margin: 0 auto;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.amfi-amp-grill {
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    #1a1a1a 0,
    #1a1a1a 3px,
    #2a2a2a 3px,
    #2a2a2a 6px
  );
}

.amfi-amp-panel {
  padding: 14px 12px;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  min-height: 72px;
}

.amfi-amp-knobs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.amfi-amp-knobs span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #555, #111);
  border: 2px solid #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.amfi-amp-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: #d4af37;
  text-align: center;
  letter-spacing: 0.04em;
}

.amfi-amp--katana .amfi-amp-brand {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.amfi-amp--fender .amfi-amp-brand {
  color: #f4e4bc;
  font-size: 0.95rem;
}

.amfi-amp-speaker {
  height: 120px;
  background: radial-gradient(circle at center, #3d3d3d 0%, #1a1a1a 55%, #0a0a0a 100%);
  border-top: 3px solid #222;
}

.amfi-amp--marshall .amfi-amp-grill {
  background: repeating-linear-gradient(90deg, #0d0d0d, #1f1f1f 4px);
}

.amfi-amp--katana .amfi-amp-panel {
  background: linear-gradient(180deg, #1a1a1a, #000);
}

.amfi-amp--fender .amfi-amp-panel {
  background: linear-gradient(180deg, #3d2817, #1a1208);
}

.amfi-amp--fender .amfi-amp-grill {
  background: #2c1810;
}

.amfi-amp--orange .amfi-amp-panel {
  background: linear-gradient(180deg, #ea580c, #7c2d12);
}

.amfi-amp--orange .amfi-amp-brand {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.amfi-amp--blackstar .amfi-amp-panel {
  background: linear-gradient(180deg, #1e293b, #0f172a);
}

.amfi-amp--blackstar .amfi-amp-brand {
  color: #94a3b8;
}

.amfi-amp--line6 .amfi-amp-panel {
  background: linear-gradient(180deg, #14532d, #052e16);
}

.amfi-amp--line6 .amfi-amp-brand {
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
}

.amfi-amp--vox .amfi-amp-panel {
  background: linear-gradient(180deg, #422006, #1c1917);
}

.amfi-amp--vox .amfi-amp-brand {
  color: #fde68a;
}

.amfi-amp--peavey .amfi-amp-panel {
  background: linear-gradient(180deg, #1e3a5f, #0f172a);
}

.amfi-amp--peavey .amfi-amp-brand {
  color: #93c5fd;
}

.amfi-stage-name {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text, #0f172a);
}

.amfi-stage-tag {
  font-size: 0.75rem;
  color: var(--muted, #64748b);
  line-height: 1.4;
  max-width: 280px;
  margin: 0.35rem auto 0;
}

@media (max-width: 900px) {
  .amfi-layout {
    grid-template-columns: 1fr;
  }
  .amfi-layout .left-sidebar {
    display: none;
  }

  .amfi-main {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  #amfiStageMount,
  .amfi-panel--stage {
    display: none !important;
  }

  .amfi-panel {
    min-height: 0;
  }
}

/* Mobil alt menü + burger drawer stilleri ortak mobile_shell.css'ten gelir
   (amfi.html mobile_shell.css'i yükler). Buradaki kopya kaldırıldı; böylece
   drawer tüm sayfalarda (keşfet / etkinlikler vb.) birebir aynı görünür.
   Yalnız amfi.html app_nav.css yüklemediği için mod linki koruması burada kalır. */
#feedMobileModLink[hidden] {
  display: none !important;
}

/* Düzeltme öner (giriş yapmış) */
.amfi-suggest-row {
  display: flex;
  justify-content: flex-end;
  margin: 0.35rem 0 0.85rem;
}

.amfi-suggest-btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--blue-600);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 10px;
  cursor: pointer;
}

.amfi-suggest-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
}

html.dark .amfi-suggest-btn:hover {
  background: #0d1829;
}

.amfi-suggest-btn[hidden] {
  display: none !important;
}

/* Düzeltme modal */
.amfi-corr-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.amfi-corr-overlay[hidden] {
  display: none !important;
}

.amfi-corr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.amfi-corr-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem 1.1rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.amfi-corr-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

.amfi-corr-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 1.5rem 0.35rem 0;
}

.amfi-corr-intro {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.amfi-corr-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.amfi-corr-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.amfi-corr-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.amfi-corr-current {
  font-size: 0.75rem;
  color: var(--muted);
}

.amfi-corr-current--block {
  white-space: pre-wrap;
  line-height: 1.4;
  max-height: 5.5rem;
  overflow: auto;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

html.dark .amfi-corr-current--block {
  background: #0d1829;
  border-color: #1e2d4a;
}

.amfi-corr-input,
.amfi-corr-textarea {
  font-family: inherit;
  font-size: 0.88rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: var(--card);
  color: var(--text);
  resize: vertical;
}

.amfi-corr-input:focus,
.amfi-corr-textarea:focus {
  outline: 2px solid var(--blue-400);
  outline-offset: 1px;
}

.amfi-corr-field--settings {
  border: none;
  padding: 0;
  margin: 0;
}

.amfi-corr-field--settings legend {
  margin-bottom: 0.35rem;
}

.amfi-corr-knob-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.amfi-corr-knob-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.65rem;
}

.amfi-corr-knob-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
}

.amfi-corr-knob-item span em {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}

.amfi-corr-knob-item input,
.amfi-corr-knob-item select {
  font-family: inherit;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  background: var(--card);
  color: var(--text);
}

.amfi-corr-knob-item--wide {
  grid-column: 1 / -1;
}

.amfi-corr-mini span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.amfi-corr-textarea--sm {
  min-height: 2.5rem;
}

.amfi-corr-knob-empty {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.amfi-corr-hint {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
}

.amfi-corr-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.amfi-corr-cancel {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
}

.amfi-corr-submit {
  border: none;
  background: var(--blue-600);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.15rem;
  border-radius: 10px;
  cursor: pointer;
}

.amfi-corr-submit:hover {
  background: var(--blue-700);
}

.amfi-corr-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.amfi-corr-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1300;
  background: var(--gray-900);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.amfi-corr-toast.show {
  transform: translateX(-50%) translateY(0);
}

html.dark .amfi-corr-toast {
  background: #1a2236;
  border: 1px solid #1e2d4a;
}
