:root {
  --header-h: 112px;
  --bg: #141414;
  --bg-soft: #181818;
  --panel: #1f1f1f;
  --panel-2: #262626;
  --line: rgba(255,255,255,0.08);
  --text: #f5f5f1;
  --muted: #b3b3b3;
  --accent: #e85b43;
  --shadow: 0 18px 40px rgba(0,0,0,0.35);
  --radius: 14px;
  --header-h: 76px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(20,20,20,0.85), rgba(20,20,20,1)),
    url("/static/img/background.jpg");
  background-size: cover;
  background-position: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.78), rgba(0,0,0,0.28));
  backdrop-filter: blur(10px);
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav__link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
}

.button--accent {
  background: var(--accent);
  color: #fff;
}

.button--accent:hover {
  filter: brightness(1.06);
}

.site-main {
  padding-bottom: 60px;
}



.landing-hero__content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 14px;
}

.landing-hero__title {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.landing-hero__summary {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #e2e2e2;
  max-width: 58ch;
}

.landing-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn--primary {
  background: #fff;
  color: #111;
}

.hero-btn--secondary {
  background: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.landing-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e8e8e8;
  font-size: 13px;
}

.row-block {
  margin-top: 6px;
}

.row-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px 8px;
}

.row-block__head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.row-controls {
  display: flex;
  gap: 8px;
}

.row-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}



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

.media-card {
  position: relative;
  flex: 0 0 140px;   /* was 240px */
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  transform-origin: center center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.media-card:hover {
  transform: scale(1.03);
  z-index: 5;
  box-shadow: var(--shadow);
}


.media-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.1) 55%, rgba(0,0,0,0));
}

.media-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 14px;
}

.media-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.media-card__meta {
  margin-top: 6px;
  color: #c7c7c7;
  font-size: 13px;
}

.media-row--dailies .daily-card {
  flex: 0 0 320px;
}

.daily-card {
  position: relative;
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.daily-card:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

.daily-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.1) 58%, rgba(0,0,0,0));
}

.daily-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
}

.daily-card__title {
  font-size: 15px;
  font-weight: 700;
}

.daily-card__meta {
  margin-top: 5px;
  color: #d0d0d0;
  font-size: 12px;
}

.media-card,
.daily-card,
.row-empty {
  background: rgba(31,31,31,0.75);
  backdrop-filter: blur(6px);
  min-height: 80px;
}

.media-card--loading,
.daily-card--loading {
  background:
    linear-gradient(110deg, #202020 8%, #2a2a2a 18%, #202020 33%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

.media-card--loading {
  flex: 0 0 240px;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.daily-card--loading {
  flex: 0 0 320px;
  min-height: 180px;
  border-radius: 14px;
}

@keyframes shimmer {
  to {
    background-position-x: -200%;
  }
}

@media (max-width: 900px) {
  .site-header,
  .landing-hero,
  .row-block__head,
  .media-row {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav {
    display: none;
  }

  .site-header__right {
    gap: 12px;
  }

  .landing-hero {
    min-height: 58vh;
    padding-bottom: 28px;
  }

  .landing-hero__summary {
    font-size: 15px;
  }

  .media-row--dailies .daily-card {
    flex-basis: 260px;
  }
}

/* ============================= */
/* LOGIN / MFA FIX (RESTORED)   */
/* ============================= */

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0b0e14;
}

.login-panel,
.login-card {
  width: 420px;
  padding: 40px;
  background: #141822;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.login-logo img,
.logo img {
  width: 260px;
  opacity: 0.9;
}

.login-input,
.login-card input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #0e1118;
  border: 1px solid #2a3142;
  color: #fff;
  border-radius: 6px;
}

.login-button,
.login-card button {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

.media-row {
  scroll-snap-type: x mandatory;
}

.media-card {
  scroll-snap-align: start;
}

.media-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-card:hover .media-card__video {
  opacity: 1;
}

.media-card:hover .media-card__image {
  opacity: 0;
}

.filter-bar {
  padding: 20px 42px;
}

.filter-bar button {
  margin-right: 10px;
  background: #222;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== Production workspace patch ===== */

:root {
  --header-h: 112px;
}

.site-logo {
  height: 148px;
  width: auto;
  object-fit: contain;
}

.site-header {
  min-height: var(--header-h);
}

.filter-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 42px 8px;
}

.filter-strip__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.filter-pill:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
}

.filter-pill.is-active {
  background: var(--accent);
  border-color: transparent;
}

.landing-hero {
  min-height: 42vh;   /* was 70vh */
  padding-bottom: 20px;
}

.landing-hero__backdrop {
  background-size: cover;
  opacity: 0.35;   /* THIS reveals your main background */
}

.landing-hero__meta {
  min-height: 40px;
}

.media-row {
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.media-card,
.daily-card {
  scroll-snap-align: start;
}

.media-card__image-wrap {
  position: relative;
  aspect-ratio: 2 / 2.8;
  overflow: hidden;
}

.media-card__image,
.daily-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.media-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  background: #111;
}

.media-card:hover .media-card__video {
  opacity: 1;
}

.media-card:hover .media-card__image {
  opacity: 0;
}

.media-card:hover .media-card__image,
.daily-card:hover .daily-card__image {
  transform: scale(1.03);
}

.media-card__body,
.daily-card__body {
  z-index: 2;
}

.row-empty h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.row-empty p {
  margin: 0;
  color: var(--muted);
}

.media-card--work {
  flex-basis: 260px;
}

@media (max-width: 900px) {
  .site-logo {
    height: 96px;
  }

  .filter-strip,
  .row-block__head,
  .media-row,
  .landing-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .filter-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

.landing-hero__shade {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );
}

.site-main {
  padding-bottom: 20px; /* was 60px */
}

.site-header {
  height: 70px;   /* was 112px */
}

/* ===== Final workspace override ===== */

.shell {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(10,10,14,0.55), rgba(10,10,14,0.78)),
    url("/static/img/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.site-main {
  padding-bottom: 16px;
}

.site-header {
  height: 70px;
  min-height: 70px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.28));
}

.site-logo {
  height: 92px;
}

.landing-hero {
  min-height: 210px;
  padding: 18px 42px 8px;
  display: flex;
  align-items: flex-start;
}

.landing-hero__content {
  width: min(520px, 100%);
}

.landing-hero__content--compact {
  padding-top: 4px;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}

.landing-hero__title {
  font-size: clamp(34px, 4vw, 56px);
  margin: 0;
}

.landing-hero__summary {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  max-width: 48ch;
}

.filter-strip {
  padding: 6px 42px 6px;
}

.filter-strip__label {
  font-size: 11px;
}

.filter-bar {
  padding: 0;
  gap: 8px;
}

.filter-pill {
  padding: 7px 12px;
  font-size: 12px;
  border-radius: 10px;
}

.row-block {
  margin-top: 2px;
}

.row-block--compact .row-block__head {
  padding: 0 42px 6px;
}

.row-block__head h2 {
  font-size: 16px;
}

.media-row {
  display: flex;
  gap: 10px;
  padding: 0 42px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

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

.media-card,
.daily-card {
  background: rgba(24,24,24,0.55);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.media-card {
  flex: 0 0 160px;
  min-height: unset;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.media-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.media-card__image-wrap {
  position: relative;
  aspect-ratio: 2 / 2.3;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.media-card__image,
.daily-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.media-card:hover .media-card__video {
  opacity: 1;
}

.media-card:hover .media-card__image {
  opacity: 0;
}

.media-card__gradient,
.daily-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.08) 55%, rgba(0,0,0,0));
}

.media-card__body,
.daily-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px;
  z-index: 2;
}

.media-card__title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.media-card__meta,
.daily-card__meta {
  margin-top: 3px;
  font-size: 10px;
  color: #c9c9c9;
}

.media-row--work .media-card {
  flex-basis: 140px;
}

.media-row--dailies .daily-card {
  flex: 0 0 220px;
  min-height: 118px;
}

.daily-card:hover {
  transform: scale(1.02);
}

.daily-card__title {
  font-size: 12px;
  font-weight: 700;
}

.row-empty {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(24,24,24,0.45);
  color: var(--muted);
  font-size: 12px;
}

.row-empty--slim {
  min-height: 42px;
}

.landing-hero__meta,
.meta-chip,
.landing-hero__backdrop,
.landing-hero__shade {
  display: none !important;
}

@media (max-width: 900px) {
  .site-logo {
    height: 72px;
  }

  .landing-hero,
  .filter-strip,
  .row-block--compact .row-block__head,
  .media-row {
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-hero {
    min-height: 180px;
  }

  .media-card {
    flex-basis: 102px;
  }

  .media-row--work .media-card {
    flex-basis: 128px;
  }

  .media-row--dailies .daily-card {
    flex-basis: 200px;
  }
}

.media-card--show {
  flex: 0 0 152px;
}

.media-card--show .media-card__image-wrap {
  aspect-ratio: 2 / 3;
}

.admin-container {
  display: flex;
  height: 100vh;
}

.admin-sidebar {
  width: 220px;
  background: #0f0f12;
  padding: 20px;
}

.admin-content {
  flex: 1;
  padding: 30px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 12px;
  opacity: 0.6;
}

.admin-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-table tr:hover {
  background: rgba(255,255,255,0.03);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: #121212;
  padding: 24px;
  border-left: 1px solid #333;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.modal-content {
  background: #111;
  padding: 30px;
  width: 400px;
  margin: 100px auto;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 70px);
}

.admin-sidebar {
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,12,0.6);
  backdrop-filter: blur(10px);
  padding: 28px 18px;
}

.admin-brand__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8e8e96;
}

.admin-brand__title {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

.admin-nav {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.admin-tab {
  border: 0;
  background: transparent;
  color: #c9c9d1;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
}

.admin-tab.is-active,
.admin-tab:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 32px;
}

.admin-subtitle {
  margin: 6px 0 0;
  color: #9b9ba3;
}

.admin-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-search,
.admin-select,
.admin-field input,
.admin-field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,20,24,0.82);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

.admin-search {
  max-width: 440px;
}

.admin-primary-btn,
.admin-secondary-btn,
.admin-mini-btn,
.admin-icon-btn {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.admin-primary-btn {
  background: #f15a3b;
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
}

.admin-secondary-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 12px 18px;
}

.admin-icon-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 24px;
}

.admin-panel {
  display: none;
}

.admin-panel--active {
  display: block;
}

.admin-table-wrap {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(14,14,18,0.72);
  backdrop-filter: blur(10px);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  vertical-align: top;
}

.admin-table thead tr {
  background: rgba(255,255,255,0.03);
}

.admin-table th {
  color: #9b9ba3;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
}

.admin-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.admin-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-mini-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  margin: 2px 6px 2px 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
}

.admin-pill--soft {
  background: rgba(255,255,255,0.06);
}

.admin-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.admin-inline-muted,
.admin-empty-state {
  color: #9b9ba3;
}

.admin-empty-state {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  background: rgba(14,14,18,0.72);
  padding: 18px;
}

.admin-modal.hidden {
  display: none;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.admin-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  margin: 48px auto;
  border-radius: 20px;
  background: #111216;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
}

.admin-modal__header,
.admin-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.admin-field label {
  display: block;
  margin-bottom: 8px;
  color: #b6b6be;
  font-size: 13px;
}

.admin-section {
  margin-top: 18px;
}

.admin-section__title {
  margin-bottom: 10px;
  color: #b6b6be;
  font-size: 13px;
}

.admin-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
  border-radius: 12px;
}

.admin-section--toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 960px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .admin-form-grid,
  .admin-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

.workspace-container {
  padding: 24px;
  color: white;
}

.workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.tabs {
  display: flex;
  gap: 8px;
}

.tab {
  background: #222;
  border: none;
  padding: 8px 16px;
  color: white;
  cursor: pointer;
  border-radius: 6px;
}

.tab.active {
  background: #ff5a3c;
}

.workspace-content .card {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 10px;
}

.hidden {
  display: none;
}

.show-card {
  background: rgba(255,255,255,0.08);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.workspace-hero {
  padding: 40px 0;
}

.workspace-hero h1 {
  font-size: 42px;
  margin-bottom: 8px;
}

.workspace-filters {
  margin-bottom: 24px;
}

.workspace-section {
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 12px;
}

.media-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

/* ===== GLASS SYSTEM ===== */
.glass {
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
}

/* ===== GRID ===== */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

/* ===== USER CARD ===== */
.user-card {
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}

.user-name {
  font-weight: 600;
  font-size: 16px;
}

.user-role {
  font-size: 12px;
  opacity: 0.7;
}

/* ROLE BADGES */
.badge {
  display:inline-block;
  padding:4px 8px;
  border-radius:6px;
  font-size:11px;
  margin-top:6px;
}

.badge.admin { background:#ff4d4d33; color:#ff4d4d; }
.badge.artist { background:#4d9dff33; color:#4da3ff; }

/* ===== SHOW CARD ===== */
.show-card {
  padding: 18px;
  transition: all 0.2s ease;
}

.show-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}

.show-title {
  font-size: 18px;
  font-weight: 600;
}

.show-code {
  font-size: 12px;
  opacity: 0.6;
}

/* ===== BUTTON ===== */
.btn {
  background: linear-gradient(135deg, #ff4d6d, #ff7a3d);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

/* ===== MODAL (UPGRADE → SIDE PANEL) ===== */
.modal {
  position: fixed;
  top:0;
  right:0;
  width:400px;
  height:100%;
  background:#121212;
  padding:20px;
  border-left:1px solid #333;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.modal.active {
  transform: translateX(0);
}


.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  font-size: 12px;
  opacity: 0.6;
  padding-bottom: 10px;
}

.admin-table td {
  padding: 10px 0;
  border-top: 1px solid #333;
}

.admin-table tr:hover {
  background: rgba(255,255,255,0.03);
}

.app-layout {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 240px;
  background: #0d0d0d;
  padding: 20px;
  border-right: 1px solid #222;
}

.sidebar a {
  display: block;
  padding: 10px;
  color: #aaa;
  text-decoration: none;
  border-radius: 6px;
}

.sidebar a.active,
.sidebar a:hover {
  background: #222;
  color: white;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}