:root {
  --tk-bg: #f5f5f5;
  --tk-surface: #ffffff;
  --tk-ink: #1a1a1a;
  --tk-muted: #666666;
  --tk-border: #e0e0e0;
  --tk-header: #0a0a0a;
  --tk-accent: #ff7700;
  --tk-accent-ink: #000000;
  --tk-danger: #c0392b;
  --tk-radius: 8px;
  --tk-touch: 44px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--tk-bg);
  color: var(--tk-ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--tk-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  background: var(--tk-header);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 119, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

header a {
  color: #eee;
  text-decoration: none;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 500;
}

header a:hover { color: var(--tk-accent); text-decoration: none; }

header a.nav-active {
  color: var(--tk-accent);
  font-weight: 700;
}

header .brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

header nav a,
.header-stage-nav a,
.user-menu-dropdown a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

header nav svg,
.header-stage-nav svg,
.user-menu-dropdown svg,
.user-menu-caret,
.icon-action {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  flex-shrink: 0;
}

.user-menu-caret {
  color: var(--tk-accent);
  width: 14px;
  height: 14px;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  justify-content: flex-end;
}

.header-stage {
  gap: 16px;
}

.header-stage-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.header-stage-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-stage-nav a {
  margin-left: 12px;
}

.header-stage-user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.stage-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tk-accent);
  line-height: 1.2;
  text-align: right;
  max-width: 160px;
}

.user-menu {
  position: relative;
}

.user-menu > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  cursor: pointer;
  color: #eee;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

.user-menu > summary::-webkit-details-marker { display: none; }

.user-menu-name {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 119, 0, 0.25);
  border-radius: var(--tk-radius);
  padding: 6px 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 200;
}

.user-menu-dropdown a {
  display: block;
  margin: 0;
  padding: 10px 14px;
  color: #eee;
  font-size: 14px;
  font-weight: 500;
}

.user-menu-dropdown a:hover {
  background: rgba(255, 119, 0, 0.12);
  color: var(--tk-accent);
  text-decoration: none;
}

.logo-auth {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto 20px;
}

main {
  max-width: 960px;
  margin: 24px auto 48px;
  padding: 0 16px;
}

.messages { margin-bottom: 16px; list-style: none; }

.messages li {
  padding: 12px 14px;
  border-radius: var(--tk-radius);
  margin-bottom: 8px;
  font-size: 14px;
}

.messages .success { background: #e8f5e9; color: #2e7d32; border: 1px solid #81c784; }
.messages .error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }
.messages .warning { background: #fff8e1; color: #856404; border: 1px solid #ffe082; }
.messages .info { background: #e3f2fd; color: #0c5460; border: 1px solid #90caf9; }

h1 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--tk-surface);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  overflow: hidden;
}

th, td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--tk-border);
  text-align: left;
  font-size: 14px;
}

th {
  background: #fafafa;
  font-weight: 600;
  color: var(--tk-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td { border-bottom: none; }

form label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--tk-ink);
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: 500 !important;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--tk-accent);
}

form input,
form select,
form textarea {
  width: 100%;
  min-height: var(--tk-touch);
  padding: 10px 14px;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  background: var(--tk-surface);
  color: var(--tk-ink);
  font: inherit;
  font-size: 14px;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--tk-accent);
  box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tk-touch);
  padding: 10px 18px;
  border: none;
  border-radius: var(--tk-radius);
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.btn:hover { text-decoration: none; filter: brightness(1.05); }

.btn-primary {
  background: var(--tk-accent);
  color: var(--tk-accent-ink);
}

.btn-danger {
  background: var(--tk-danger);
  color: #fff;
}

.btn-secondary {
  background: var(--tk-surface);
  color: var(--tk-accent);
  border: 1px solid var(--tk-accent);
}

.card {
  background: var(--tk-surface);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--tk-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

nav a { margin-right: 8px; }

p { color: var(--tk-muted); font-size: 14px; line-height: 1.5; }

.icon-action-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 640px) {
  header { padding: 10px 14px; }
  header nav a { margin-left: 8px; font-size: 13px; }
  main { margin-top: 16px; }
  table { display: block; overflow-x: auto; }
  .header-stage {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .header-stage-user {
    order: -1;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .user-menu-name { max-width: 140px; }
}

/* —— Platéia (mobile-first PWA) —— */
.plateia-app main {
  margin: 12px auto 88px;
  max-width: 640px;
  padding: 0 14px 24px;
}

.plateia-app .header-plateia {
  position: sticky;
  top: 0;
}

.plateia-page-head {
  margin-bottom: 16px;
}

.plateia-page-head h1 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.plateia-page-head p {
  margin: 0;
}

.plateia-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.plateia-filters::-webkit-scrollbar { display: none; }

.plateia-filters-wrap {
  flex-wrap: wrap;
  overflow: visible;
}

.plateia-chip {
  flex-shrink: 0;
  min-height: var(--tk-touch);
  padding: 0 14px;
  border: 1px solid var(--tk-border);
  border-radius: 999px;
  background: var(--tk-surface);
  color: var(--tk-ink);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: default;
}

.plateia-chip.chip-active {
  background: var(--tk-ink);
  color: #fff;
  border-color: var(--tk-ink);
}

.plateia-chip-ai {
  background: linear-gradient(135deg, #ede9fe, #ffedd5);
  border-color: #c4b5fd;
  color: #5b21b6;
}

.plateia-block {
  margin-bottom: 20px;
}

.plateia-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.plateia-block-head h2 {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.plateia-block-head h2 svg {
  width: 18px;
  height: 18px;
  color: var(--tk-accent);
}

.plateia-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tk-muted);
  background: #eee;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.plateia-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.plateia-card-ghost {
  flex: 0 0 72%;
  max-width: 260px;
  height: 120px;
  border-radius: var(--tk-radius);
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  border: 1px solid var(--tk-border);
}

.plateia-hero {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  text-decoration: none !important;
  color: #fff !important;
  min-height: 88px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.plateia-hero:hover { text-decoration: none; filter: brightness(1.03); color: #fff; }

.plateia-hero-ai {
  background: #7c3aed;
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 55%, #ff7700 100%);
  color: #fff !important;
}

.plateia-hero-ai strong,
.plateia-hero-ai span,
.plateia-hero-ai .plateia-hero-kicker {
  color: #fff !important;
}

.plateia-hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plateia-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.plateia-hero-kicker svg { width: 14px; height: 14px; }

.plateia-hero-text strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.plateia-hero-text span:last-child {
  font-size: 13px;
  opacity: 0.88;
}

.plateia-hero-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.plateia-hero-cta svg { width: 14px; height: 14px; }

.plateia-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.plateia-quick-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 76px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 10px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.plateia-quick-item:hover { text-decoration: none; filter: brightness(1.06); color: #fff; }

.plateia-quick-item svg { width: 22px; height: 22px; stroke: currentColor; }

.plateia-q-orange { background: #ff7700 !important; color: #111 !important; }
.plateia-q-dark { background: #1a1a1a !important; color: #fff !important; }
.plateia-q-rose { background: #e11d48 !important; color: #fff !important; }
.plateia-q-teal { background: #0d9488 !important; color: #fff !important; }

.plateia-block-sub {
  margin: -4px 0 12px;
  font-size: 13px;
  color: var(--tk-muted);
}

.plateia-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tk-accent);
  text-decoration: none;
}

.plateia-link-cta svg { width: 14px; height: 14px; }

.plateia-showcase {
  flex: 0 0 78% !important;
  max-width: 280px;
  min-height: 168px;
  border-radius: 14px;
  padding: 14px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.plateia-show-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plateia-show-icon svg { width: 18px; height: 18px; stroke: #fff; }

.plateia-show-body h3 {
  margin: 10px 0 4px;
  font-size: 1rem;
  line-height: 1.25;
  color: #fff !important;
}

.plateia-show-body p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88) !important;
}

.plateia-show-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  width: fit-content;
  color: #fff !important;
}

.plateia-show-cta svg { width: 14px; height: 14px; stroke: #fff; }

.plateia-show-orange { background: #ff7700 !important; }
.plateia-show-teal { background: #0d9488 !important; }
.plateia-show-violet { background: #7c3aed !important; }
.plateia-show-rose { background: #e11d48 !important; }
.plateia-show-dark { background: #1a1a1a !important; }
.plateia-show-amber { background: #d97706 !important; }
.plateia-show-blue { background: #2563eb !important; }
.plateia-show-green { background: #16a34a !important; }
.plateia-show-lime { background: #84cc16 !important; color: #111 !important; }
.plateia-show-lime .plateia-show-body h3,
.plateia-show-lime .plateia-show-cta { color: #111 !important; }
.plateia-show-lime .plateia-show-body p { color: rgba(0, 0, 0, 0.7) !important; }
.plateia-show-lime .plateia-show-icon svg,
.plateia-show-lime .plateia-show-cta svg { stroke: #111; }
.plateia-show-lime .plateia-show-cta { background: rgba(0, 0, 0, 0.12); }

.plateia-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.plateia-promo {
  border-radius: 14px;
  padding: 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.plateia-promo:hover { text-decoration: none; filter: brightness(1.04); }

.plateia-promo-wide { grid-column: 1 / -1; min-height: 96px; flex-direction: row; align-items: center; }

.plateia-promo strong { font-size: 1rem; display: block; margin-bottom: 4px; }
.plateia-promo span { font-size: 12px; opacity: 0.9; }

.plateia-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 999px;
  width: fit-content;
}

.plateia-promo-cta svg { width: 14px; height: 14px; }

.plateia-promo-orange { background: linear-gradient(135deg, #ea580c, #ffb347); color: #111; }
.plateia-promo-violet { background: linear-gradient(135deg, #6d28d9, #a78bfa); }
.plateia-promo-teal { background: linear-gradient(135deg, #0f766e, #5eead4); color: #063; }
.plateia-promo-rose { background: linear-gradient(135deg, #db2777, #fda4af); }
.plateia-promo-dark { background: linear-gradient(135deg, #111, #525252); }

.plateia-empty {
  text-align: center;
  padding: 32px 16px;
  background: var(--tk-surface);
  border: 1px dashed var(--tk-border);
  border-radius: var(--tk-radius);
}

.plateia-empty.compact {
  padding: 16px;
}

.plateia-empty svg {
  width: 36px;
  height: 36px;
  color: var(--tk-muted);
  margin-bottom: 10px;
}

.plateia-empty p {
  margin-bottom: 14px;
}

.plateia-hint {
  margin: 0 0 16px;
  font-size: 13px;
}

.plateia-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tk-surface);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  padding: 0 14px;
  min-height: var(--tk-touch);
  margin-bottom: 16px;
}

.plateia-search svg {
  width: 18px;
  height: 18px;
  color: var(--tk-muted);
  flex-shrink: 0;
}

.plateia-search input {
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: var(--tk-touch);
}

.plateia-seg {
  display: flex;
  gap: 4px;
  background: #eaeaea;
  border-radius: var(--tk-radius);
  padding: 4px;
  margin-bottom: 14px;
}

.plateia-seg button {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--tk-muted);
  cursor: default;
}

.plateia-seg .seg-active {
  background: var(--tk-surface);
  color: var(--tk-ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.plateia-list {
  background: var(--tk-surface);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  overflow: hidden;
}

.plateia-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--tk-touch);
  padding: 0 14px;
  border-bottom: 1px solid var(--tk-border);
  font-size: 14px;
  font-weight: 500;
}

.plateia-list-item:last-child { border-bottom: 0; }

.plateia-list-item svg {
  width: 18px;
  height: 18px;
  color: var(--tk-accent);
  flex-shrink: 0;
}

.plateia-list-item.muted {
  color: var(--tk-muted);
  font-weight: 400;
  justify-content: space-between;
}

.plateia-menu {
  display: flex;
  flex-direction: column;
  background: var(--tk-surface);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  overflow: hidden;
}

.plateia-menu a,
.plateia-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--tk-touch);
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid var(--tk-border);
  background: transparent;
  color: var(--tk-ink);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}

.plateia-menu a:last-child,
.plateia-menu button:last-child { border-bottom: 0; }

.plateia-menu a:hover,
.plateia-menu button:not(:disabled):hover {
  background: #fafafa;
  text-decoration: none;
}

.plateia-menu a svg:first-child,
.plateia-menu button svg:first-child {
  width: 20px;
  height: 20px;
  color: var(--tk-accent);
  flex-shrink: 0;
}

.plateia-menu span:not(.plateia-badge) { flex: 1; }

.plateia-menu .menu-chevron {
  width: 16px;
  height: 16px;
  color: #bbb;
}

.plateia-menu .danger-item { color: var(--tk-danger); }
.plateia-menu .danger-item svg:first-child { color: var(--tk-danger); }

.plateia-menu button:disabled {
  opacity: 0.85;
  cursor: default;
}

.plateia-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.plateia-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plateia-avatar svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.plateia-chip-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.plateia-chat-input {
  display: flex;
  gap: 8px;
  position: sticky;
  bottom: 80px;
  background: var(--tk-bg);
  padding: 8px 0;
}

.plateia-chat-input input {
  flex: 1;
  margin: 0;
}

.plateia-chat-input .btn {
  min-width: var(--tk-touch);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plateia-chat-input .btn svg {
  width: 18px;
  height: 18px;
}

.plateia-tabs {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 119, 0, 0.2);
  padding: 4px 0 calc(4px + env(safe-area-inset-bottom));
}

.plateia-tabs a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 56px;
  margin: 0;
  color: #999;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.plateia-tabs a:hover {
  color: #ccc;
  text-decoration: none;
}

.plateia-tabs a.tab-active {
  color: var(--tk-accent);
}

.plateia-tabs svg {
  width: 22px;
  height: 22px;
}

.user-menu-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-menu-dropdown a svg {
  width: 16px;
  height: 16px;
  color: var(--tk-accent);
}

textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  margin-top: 4px;
  margin-bottom: 8px;
}

/* —— Platéia DC home (ref: TOKKA - App Logada.dc.html) —— */
.plateia-tabs-light {
  background: #fff;
  border-top: 1px solid var(--tk-border);
}

.plateia-tabs-light a { color: #999; }
.plateia-tabs-light a:hover { color: #666; }
.plateia-tabs-light a.tab-active { color: var(--tk-accent); }
.plateia-tabs-light a.tab-active span { color: var(--tk-ink); font-weight: 700; }

.dc-home .dc-welcome {
  margin-bottom: 24px;
  background: #0a0a0a !important;
  color: #fff !important;
  padding: 18px 16px !important;
  border: 0 !important;
  border-radius: 12px;
  display: block !important;
  position: static !important;
  box-shadow: none !important;
}

.dc-home .dc-welcome h1 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ff7700 !important;
}

.dc-home .dc-welcome p {
  margin: 0;
  font-size: 14px;
  color: #dddddd !important;
}

.dc-search {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.dc-search input {
  flex: 1;
  margin: 0;
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  padding: 12px 16px;
  min-height: var(--tk-touch);
  font-size: 14px;
}

.dc-search-btn {
  flex-shrink: 0;
  width: var(--tk-touch);
  min-height: var(--tk-touch);
  border: 0;
  border-radius: var(--tk-radius);
  background: var(--tk-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dc-search-btn svg { width: 20px; height: 20px; }

.dc-section { margin-bottom: 28px; }

.dc-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 14px;
}

.dc-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.dc-section-head h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.dc-section-head a {
  font-size: 13px;
  font-weight: 600;
  color: var(--tk-accent);
  text-decoration: none;
}

.dc-banners {
  display: grid;
  gap: 12px;
}

.dc-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 28px 24px;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
  min-height: 120px;
}

.dc-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.dc-banner > * { position: relative; z-index: 1; }

.dc-banner-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.dc-banner strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.dc-banner span:last-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.dc-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.dc-chips::-webkit-scrollbar { display: none; }

.dc-chip {
  flex-shrink: 0;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: var(--tk-radius);
  border: 1px solid var(--tk-border);
  background: #fff;
  color: var(--tk-ink);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  cursor: default;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

a.dc-chip {
  cursor: pointer;
}

.dc-chip.is-active {
  background: var(--tk-accent);
  color: #fff !important;
  border-color: var(--tk-accent);
}

a.dc-event-card.dc-link-card:active,
a.dc-event-card.dc-link-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.dc-event-list { display: grid; gap: 14px; }

.dc-event-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
  padding: 16px;
}

.dc-event-top {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.dc-event-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  flex-shrink: 0;
}

.dc-event-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.dc-event-info p {
  font-size: 13px;
  color: var(--tk-muted);
  margin: 0 0 6px;
}

.dc-event-info time {
  font-size: 12px;
  color: var(--tk-accent);
  font-weight: 600;
}

.dc-event-actions {
  display: flex;
  gap: 8px;
}

.dc-btn-fill,
.dc-btn-outline {
  flex: 1;
  min-height: 40px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: default;
}

.dc-btn-fill {
  background: var(--tk-accent);
  color: #fff;
  border: 0;
}

.dc-btn-outline {
  background: #fff;
  color: var(--tk-accent);
  border: 1px solid var(--tk-accent);
}

.dc-btn-sm {
  flex: none;
  width: 100%;
  min-height: 32px;
  padding: 6px;
  font-size: 11px;
}

.dc-artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dc-artist-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.dc-artist-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.dc-artist-card h4 {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 2px;
}

.dc-artist-card p {
  font-size: 10px;
  color: #999;
  margin: 0 0 10px;
}

.dc-venue-list { display: grid; gap: 12px; }

.dc-venue-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.dc-venue-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
}

.dc-venue-card p {
  font-size: 12px;
  color: var(--tk-muted);
  margin: 0 0 4px;
}

.dc-venue-when {
  font-size: 11px;
  color: var(--tk-accent);
  font-weight: 600;
}

.dc-heart {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--tk-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
}

.dc-heart svg { width: 22px; height: 22px; }

.dc-ai-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dc-ai-strip > svg:first-child {
  width: 22px;
  height: 22px;
  color: var(--tk-accent);
  flex-shrink: 0;
}

.dc-ai-strip > svg:last-child {
  width: 18px;
  height: 18px;
  color: #bbb;
  margin-left: auto;
}

.dc-ai-strip strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.dc-ai-strip span {
  font-size: 12px;
  color: var(--tk-muted);
}

.dc-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.dc-stat-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.dc-stat-card strong {
  font-size: 1.1rem;
  color: var(--tk-ink);
}

.dc-stat-card span {
  font-size: 11px;
  color: var(--tk-muted);
}

.dc-stat-card svg {
  width: 18px;
  height: 18px;
  color: var(--tk-accent);
}

.dc-empty-card {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
}

.dc-empty-card.compact { padding: 18px 14px; }

.dc-empty-card svg {
  width: 36px;
  height: 36px;
  color: #999;
  margin-bottom: 10px;
}

.dc-empty-card p {
  margin: 0 0 14px;
  color: var(--tk-muted);
  font-size: 14px;
}

.dc-link-card {
  text-decoration: none !important;
  color: inherit !important;
}

.dc-chevron {
  width: 18px;
  height: 18px;
  color: #bbb;
  flex-shrink: 0;
}

.dc-mini-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tk-muted);
  background: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.dc-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.dc-avatar-lg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.dc-form-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: 12px;
  padding: 16px;
}

.dc-form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 4px;
}

.dc-form-card input,
.dc-form-card textarea,
.dc-form-card select {
  width: 100%;
  margin: 0 0 4px;
}

.dc-form-card select {
  padding: 10px 12px;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  font-size: 14px;
  font-family: inherit;
  min-height: var(--tk-touch);
  background: #fff;
}

.dc-chips-wrap {
  flex-wrap: wrap;
  overflow: visible;
}

.dc-artist-card.dc-ghost { opacity: 0.55; }

.dc-danger-card h4 { color: var(--tk-danger); }

.dc-chat-bar {
  position: sticky;
  bottom: 72px;
  background: var(--tk-bg);
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 0;
}

/* contraste + voltar (Platéia) */
.plateia-app {
  --tk-muted: #3d3d3d;
  --tk-border: #c8c8c8;
}

.plateia-tabs-light a { color: #555 !important; }
.plateia-tabs-light a:hover { color: #1a1a1a !important; }
.plateia-tabs-light a.tab-active { color: #c45a00 !important; }
.plateia-tabs-light a.tab-active span { color: #1a1a1a !important; font-weight: 700; }

.dc-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  margin: 0 0 8px;
  padding: 0;
  color: #ff7700 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

.dc-back svg {
  width: 20px;
  height: 20px;
  color: #ff7700;
}

.dc-back:hover { color: #e56a00 !important; filter: brightness(0.95); }

.dc-home .dc-welcome p,
.dc-event-info p,
.dc-venue-card p,
.dc-empty-card p,
.dc-stat-card span,
.dc-ai-strip span,
.dc-artist-card p {
  color: #3d3d3d !important;
}

.dc-home .dc-welcome p {
  color: #dddddd !important;
}

.dc-label {
  color: #555 !important;
}

.dc-chip {
  border-color: #b0b0b0 !important;
  color: #1a1a1a !important;
  background: #fff !important;
}

.dc-chip.is-active {
  background: #ff7700 !important;
  border-color: #e56a00 !important;
  color: #000 !important;
}

.dc-btn-fill {
  background: #ff7700 !important;
  color: #000 !important;
}

.dc-btn-outline {
  color: #c45a00 !important;
  border-color: #c45a00 !important;
}

a.dc-btn-fill,
a.dc-btn-outline,
button.dc-btn-fill,
button.dc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  min-height: 44px;
  padding: 0 16px;
}

a.dc-btn-fill.dc-btn-block,
a.dc-btn-outline.dc-btn-block {
  display: flex;
  width: 100%;
}

.dc-event-info time,
.dc-venue-when {
  color: #c45a00 !important;
}

.dc-banner span:last-child {
  color: #fff !important;
  opacity: 0.95;
}

.dc-banner-tag {
  background: rgba(0, 0, 0, 0.28) !important;
  color: #fff !important;
}

.dc-search-btn {
  background: #ff7700 !important;
  color: #000 !important;
}

.dc-form-card label {
  color: #1a1a1a !important;
}

.dc-form-card input:disabled,
.dc-form-card textarea:disabled {
  color: #555 !important;
  background: #f0f0f0 !important;
  border-color: #b0b0b0 !important;
}

.dc-mini-badge {
  color: #333 !important;
  background: #ddd !important;
}
