:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --cream: #f5f0e8;
  --text: #ffffff;
  --muted: #aaaaaa;
  --danger: #ff7b7b;
  --success: #9be29b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section > .container > * + * {
  margin-top: 18px;
}

.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#fff 0.35px, transparent 0.35px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
}

.kicker {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  margin: 0;
}

.sub-kicker {
  color: var(--gold-light);
  font-weight: 600;
  margin: 0;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}

.section-sub {
  color: var(--muted);
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  margin-top: 14px;
  margin-bottom: 10px;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn.is-loading {
  position: relative;
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid rgba(13, 13, 13, 0.35);
  border-top-color: rgba(13, 13, 13, 0.95);
  animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-primary {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #090909;
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(201, 168, 76, 0.45);
}

.status {
  margin-top: 10px;
  font-size: 0.92rem;
}

.status.error {
  color: var(--danger);
}

.status.success {
  color: var(--success);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.25s ease, border-bottom-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.45);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-main {
  font-family: "Bebas Neue", sans-serif;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-size: 1.8rem;
}

.brand-sub {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.8;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 10px;
  background: transparent;
  color: var(--cream);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 13, 13, 0.38), rgba(13, 13, 13, 0.58));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(140deg, rgba(34, 34, 34, 0.12) 0%, rgba(17, 17, 17, 0.22) 50%, rgba(31, 26, 18, 0.2) 100%), url("../images/developer-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.event-meta {
  margin: 18px 0;
  color: var(--cream);
}

.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.pill {
  border: 1px solid rgba(201, 168, 76, 0.7);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--gold-light);
  font-weight: 600;
}

.pill-sold-out {
  border-color: #e07a7a;
  color: #ffb4b4;
  background: rgba(224, 122, 122, 0.12);
  animation: none;
}

.sold-out-panel {
  max-width: 720px;
  margin: 0 auto;
}

.sold-out-panel .section-title {
  color: #ffb4b4;
}

#soldOutPanel {
  display: none;
}

html.is-sold-out #soldOutPanel {
  display: block;
}

html.is-sold-out #registrationOpen {
  display: none;
}

.pill-early-bird {
  background: linear-gradient(130deg, rgba(201, 168, 76, 0.22), rgba(224, 192, 112, 0.1));
  border-color: rgba(224, 192, 112, 0.95);
  color: #f4dd9f;
  box-shadow: 0 0 0 rgba(224, 192, 112, 0.25), 0 0 0 rgba(224, 192, 112, 0.18);
  animation: early-bird-flicker 2.2s ease-in-out infinite;
}

@keyframes early-bird-flicker {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(224, 192, 112, 0.25), 0 0 18px rgba(224, 192, 112, 0.2);
    transform: translateY(0);
  }
  40% {
    box-shadow: 0 0 0 rgba(224, 192, 112, 0.2), 0 0 26px rgba(224, 192, 112, 0.35);
    transform: translateY(-1px);
  }
  60% {
    box-shadow: 0 0 0 rgba(224, 192, 112, 0.12), 0 0 14px rgba(224, 192, 112, 0.16);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill-early-bird {
    animation: none;
  }
}

.countdown {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.partners-strip {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.35) 0%, transparent 100%);
}

.partners-strip > .container > * + * {
  margin-top: 0;
}

.partners-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}

.partners-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
}

.partners-logos li {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-logos img {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: min(132px, 38vw);
  object-fit: contain;
  background: #ffffff;
  padding: 6px 10px;
  box-sizing: content-box;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partners-logos img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.cards-3 {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.learn-card,
.speaker-card,
.price-card,
.panel {
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.8), rgba(20, 20, 20, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.learn-card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.17);
}

.learn-icon {
  width: 62px;
  height: 62px;
  color: var(--gold-light);
}

.learn-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  margin: 10px 0 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
}

@media (min-width: 961px) {
  #how .split {
    gap: clamp(32px, 4vw, 52px);
  }

  #how .workshop-carousel.img-placeholder {
    width: 100%;
    min-height: clamp(480px, 70vh, 880px);
  }

  #how .workshop-carousel-slide,
  #how .workshop-carousel-slide img {
    min-height: clamp(480px, 70vh, 880px);
  }

  #how .workshop-carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }
}

.img-placeholder {
  min-height: 300px;
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: linear-gradient(160deg, #2a2a2a, #151515);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: attr(data-label);
  position: absolute;
  inset: auto 10px 10px 10px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.workshop-carousel.img-placeholder::before {
  content: none;
}

.workshop-carousel-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.workshop-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.28s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .workshop-carousel-track {
    transition: none;
  }
}

.workshop-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  min-height: 300px;
}

.workshop-carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.workshop-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.55);
  background: rgba(13, 13, 13, 0.65);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.workshop-carousel-btn:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold-light);
}

.workshop-carousel-prev {
  left: 10px;
}

.workshop-carousel-next {
  right: 10px;
}

.workshop-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 48px;
}

.workshop-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.6);
  background: rgba(13, 13, 13, 0.5);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.workshop-carousel-dots button.is-active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.15);
}

.speaker-grid {
  margin-top: 26px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.speaker-card {
  padding: 20px;
  text-align: center;
}

.speaker-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--gold-light);
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-bio-wrap {
  text-align: center;
  margin-top: 8px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.speaker-bio {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 8px;
}

.speaker-bio.is-truncated {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.speaker-bio.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.speaker-read-more {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold-light);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.speaker-read-more:hover {
  color: var(--cream);
}

.speaker-read-more[hidden] {
  display: none;
}

.speaker-name {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
}

.muted {
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.price-card {
  padding: 22px;
  position: relative;
}

.price-card.selected {
  outline: 2px solid rgba(248, 220, 140, 0.98);
  animation: selected-card-glow 0.78s steps(1, end) infinite;
}

@keyframes selected-card-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(224, 192, 112, 0), inset 0 0 0 rgba(224, 192, 112, 0);
  }
  15% {
    box-shadow: 0 0 24px rgba(224, 192, 112, 0.52), 0 0 48px rgba(224, 192, 112, 0.28), inset 0 0 18px rgba(224, 192, 112, 0.14);
  }
  32% {
    box-shadow: 0 0 0 rgba(224, 192, 112, 0), inset 0 0 0 rgba(224, 192, 112, 0);
  }
  46% {
    box-shadow: 0 0 28px rgba(224, 192, 112, 0.58), 0 0 56px rgba(224, 192, 112, 0.32), inset 0 0 20px rgba(224, 192, 112, 0.18);
  }
  61% {
    box-shadow: 0 0 0 rgba(224, 192, 112, 0), inset 0 0 0 rgba(224, 192, 112, 0);
  }
  76% {
    box-shadow: 0 0 22px rgba(224, 192, 112, 0.48), 0 0 42px rgba(224, 192, 112, 0.24), inset 0 0 14px rgba(224, 192, 112, 0.13);
  }
}

.badge {
  position: absolute;
  top: 10px;
  right: 14px;
  background: var(--gold-light);
  color: #151515;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 10px;
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1rem;
  margin: 0;
}

.closed {
  opacity: 0.45;
}

form {
  margin-top: 30px;
}

form .btn {
  margin-top: 18px;
  margin-bottom: 6px;
}

.promo-wrap {
  margin-top: 18px;
}

.promo-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.promo-row input {
  flex: 1;
  min-width: 0;
}

.promo-feedback {
  margin: 8px 0 0;
  min-height: 1.2em;
}

.promo-feedback.success {
  color: var(--gold-light);
}

.promo-feedback.error {
  color: #f08a8a;
}

.promo-applied {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.08);
  text-align: center;
}

.promo-applied-title {
  margin: 0;
  color: var(--gold-light);
  font-weight: 600;
}

.promo-applied-price {
  margin: 6px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.promo-remove {
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.promo-remove:hover {
  color: var(--cream);
}

.price-card .btn,
.panel .btn {
  margin-top: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  color: var(--cream);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #101010;
  color: #fff;
  padding: 12px 13px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.final-message {
  text-align: center;
}

.final-message .gold {
  color: var(--gold-light);
}

.ambassador-invite {
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.13), rgba(26, 26, 26, 0.96) 40%);
  text-align: left;
}

.ambassador-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.ambassador-perks p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2000;
}

.modal-overlay.open {
  display: flex;
}

.success-modal {
  width: min(520px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.96), rgba(20, 20, 20, 0.98));
  padding: 28px 22px 18px;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--cream);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  border-color: rgba(201, 168, 76, 0.55);
  color: var(--gold-light);
}

.footer {
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  padding: 42px 0;
  text-align: center;
}

.auth-wrap,
.dashboard-wrap,
.admin-wrap {
  min-height: 100vh;
  padding: 32px 0;
}

.panel {
  padding: 22px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.stat {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.84rem;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
}

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

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 8px;
  text-align: left;
  font-size: 0.9rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-data-table {
  min-width: 980px;
}

.admin-data-table thead th {
  background: rgba(201, 168, 76, 0.12);
  color: var(--cream);
  font-weight: 600;
  white-space: nowrap;
}

.admin-data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.admin-data-table td {
  white-space: nowrap;
  vertical-align: top;
}

.progress {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.mobile-menu {
  display: flex;
}

@media (max-width: 960px) {
  .cards-3,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .price-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 52px 0;
  }

  .section > .container > * + * {
    margin-top: 12px;
  }

  .panel {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #101010;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    flex-direction: column;
    padding: 14px 0 18px;
    display: none;
  }
  .nav-links.mobile-menu {
    display: flex;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .cards-3,
  .speaker-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .ambassador-perks {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    gap: 14px 16px;
  }

  .partners-logos img {
    max-height: 30px;
    max-width: min(96px, 28vw);
    padding: 4px 7px;
    border-radius: 9px;
  }

  .success-modal {
    padding: 24px 16px 14px;
  }

  .ambassador-reg-table thead {
    display: none;
  }

  .ambassador-reg-table,
  .ambassador-reg-table tbody,
  .ambassador-reg-table tr,
  .ambassador-reg-table td {
    display: block;
    width: 100%;
  }

  .ambassador-reg-table tr {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

  .ambassador-reg-table td {
    border-bottom: 0;
    padding: 6px 0;
    font-size: 0.88rem;
  }

  .ambassador-reg-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-light);
    margin-bottom: 2px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .admin-data-table {
    min-width: 0;
  }

  .admin-data-table thead {
    display: none;
  }

  .admin-data-table,
  .admin-data-table tbody,
  .admin-data-table tr,
  .admin-data-table td {
    display: block;
    width: 100%;
  }

  .admin-data-table tr {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

  .admin-data-table td {
    border-bottom: 0;
    padding: 6px 0;
    font-size: 0.88rem;
    white-space: normal;
    word-break: break-word;
  }

  .admin-data-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-light);
    margin-bottom: 2px;
  }
}
