.search-header {
  margin: 0;
  align-items: center;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 700px) {
  .search-header {
    margin: 16px 0 0 0;
    min-width: 0;
    width: 100%;
  }
}

@font-face {
  font-family: "Exo 2";
  src: url("fonts/exo-2/Exo2-wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Audiowide";
  src: url("fonts/audiowide/Audiowide-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oxanium";
  src: url("fonts/oxanium/Oxanium-wght.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("fonts/orbitron/Orbitron-wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050810;
  --panel: #101724;
  --card: #0c1321;
  --accent: #0ea5ff;
  --accent-2: #38e8ff;
  --neon-soft: rgba(56, 232, 255, 0.18);
  --neon-faint: rgba(14, 165, 255, 0.08);
  --scanline-color: rgba(110, 210, 255, 0.035);
  --heading-font: "Exo 2", "Oxanium", "Inter", system-ui, sans-serif;
  --brand-font: "Oxanium", "Exo 2", "Inter", system-ui, sans-serif;
  --ui-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text: #e6e8f2;
  --muted: #9aa3b2;
  --site-width: 980px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ui-font);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 18% 10%, rgba(56, 232, 255, 0.13), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(14, 165, 255, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.08), rgba(5, 8, 16, 0.36)),
    url("images/tu-nightflight-background.png");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center top;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      var(--scanline-color) 0,
      var(--scanline-color) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.018),
      transparent 18%,
      rgba(14, 165, 255, 0.012) 50%,
      transparent 82%,
      rgba(0, 0, 0, 0.035)
    );
  opacity: 0.72;
  animation: tuCrtShimmer 6s steps(2, end) infinite;
}

@keyframes tuCrtShimmer {
  0%, 100% { opacity: 0.64; }
  50% { opacity: 0.78; }
}

h1,
h2,
h3,
.page-title,
.admin-page-title,
.comments-title,
.section-title,
.panel-header h2,
.card h2,
.result-section h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.03em;
}

button,
label,
.status,
.pill,
.role-pill,
.recent-type,
.result-item-id,
.rating-average {
  font-family: var(--brand-font);
  font-weight: 600;
  letter-spacing: 0.025em;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

.app {
  width: min(var(--site-width), 100%);
  margin: 0 auto;
  padding: clamp(12px, 3vw, 32px);
  display: grid;
  gap: 24px;
}

@keyframes tuHeaderScan {
  0%, 92% {
    opacity: 0;
    transform: translateX(-120%);
  }
  95% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
    opacity: 0.62;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, rgba(14, 165, 255, 0.18), rgba(56, 232, 255, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.28);
  padding: 24px;
  border-radius: 16px;
}

/* Keep the dynamic header styled before its fragment-level CSS is parsed. */
#mainHeader {
  min-width: 0;
  max-width: 100%;
  opacity: 1;
}

#mainHeader.tu-header-loading {
  min-height: clamp(120px, 20vw, 205px);
  opacity: 0;
  pointer-events: none;
}

#mainHeader.tu-header-ready {
  transition: opacity 160ms ease;
}

body.tu-skin-vacation #mainHeader.tu-header-loading {
  min-height: clamp(210px, 34vw, 350px);
}

#mainHeader .hdr-hero {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 16px 16px 0 0;
}

#mainHeader .hdr-hero > a {
  display: block;
  width: 100%;
  min-width: 0;
}

#mainHeader .hdr-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
}

@media (max-width: 700px) {
  #mainHeader.tu-header-loading {
    min-height: clamp(92px, 32vw, 150px);
  }

  body.tu-skin-vacation #mainHeader.tu-header-loading {
    min-height: clamp(150px, 58vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #mainHeader.tu-header-ready {
    transition: none;
  }
}

.admin-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.admin-toggle-label {
  font-size: 12px;
  color: var(--text);
  opacity: 0.9;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s;
  border-radius: 999px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 2px;
  background: #fff;
  transition: 0.2s;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.switch input:checked + .slider {
  background: rgba(14, 165, 255, 0.72);
  border-color: rgba(56, 232, 255, 0.88);
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

@media (max-width: 700px) {
  .admin-toggle {
    top: 12px;
    right: 12px;
    transform: scale(0.95);
  }
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.status {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.status.ok {
  background: rgba(56, 232, 255, 0.18);
  color: var(--accent-2);
}

.status.bad {
  background: rgba(255, 77, 77, 0.2);
  color: #ff6b6b;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 12px;
}

.card,
.panel,
.result-item,
.form-section,
.catalog-panel,
.recent-section {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.card:hover,
.panel:hover,
.result-item:hover,
.form-section:hover,
.catalog-panel:hover,
.recent-section:hover {
  border-color: rgba(56, 232, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(56, 232, 255, 0.06), 0 12px 34px var(--neon-faint);
}

.card h2 {
  margin-top: 0;
}

.search {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.search input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1420;
  color: var(--text);
}

.search button {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 255, 0.16);
  border: 1px solid rgba(56, 232, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
}

.panel {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.results-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.result-section {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 24px;
}

.result-section:last-child {
  border-bottom: none;
}

.result-section h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 600;
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.result-item {
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.result-item:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(56,189,248,0.34);
}

.result-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
}

.result-item-main {
  flex: 1;
  min-width: 0;
}

.result-item-title {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.result-item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.result-item-id {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'Courier New', monospace;
  padding: 4px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.list li {
  background: #0f1420;
  border-radius: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.list li .meta {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.list li.empty {
  color: var(--muted);
  text-align: center;
  border-style: dashed;
  padding: 12px;
}

.list-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.list-link:hover {
  background: rgba(14, 165, 255, 0.1);
}

.list-link.with-image {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #181c2a;
  flex-shrink: 0;
}

.list-content {
  flex: 1;
  min-width: 0;
}

.list-content strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Checkbox Group Styles */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  background: #0f1420;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.checkbox-label:hover {
  background: rgba(14, 165, 255, 0.14);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Roles Display Styles */
.roles-display {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.role-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56, 232, 255, 0.14);
  border: 1px solid rgba(56, 232, 255, 0.34);
  font-size: 12px;
  color: var(--accent-2);
}

/* Comments Section */
.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.comments-title {
  margin: 0 0 24px;
  font-size: 1.3rem;
  color: var(--text);
}

.comments-language-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.comments-language-section {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(56, 232, 255, 0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
}

.comments-language-head {
  margin-bottom: 14px;
}

.comments-language-title {
  margin: 0 0 4px;
  font-family: var(--brand-font);
  font-size: 1rem;
  color: var(--text);
}

.comments-language-hint {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

body.tu-skin-vacation .comments-language-section {
  border-color: rgba(255, 137, 51, 0.32);
  background: rgba(84, 45, 18, 0.18);
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.comment-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #0f1420;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}

.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.comment-form button {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.comment-form button:hover {
  background: #0284c7;
}

.comment-login-hint {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin-bottom: 24px;
  color: var(--muted);
}

.comment-login-hint a {
  color: var(--accent);
  text-decoration: none;
}

.comment-login-hint a:hover {
  text-decoration: underline;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.no-comments {
  color: var(--muted);
  font-style: italic;
}

.comment-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px;
}

.comment-item.comment-level-1 {
  margin-left: 24px;
}

.comment-item.comment-level-2 {
  margin-left: 48px;
}

.comment-item.comment-level-3 {
  margin-left: 72px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: 600;
  color: var(--text);
}

.comment-date {
  font-size: 12px;
  color: var(--muted);
}

.comment-delete {
  margin-left: auto;
  background: none;
  border: none;
  color: #ff6b6b;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.comment-delete:hover {
  opacity: 1;
}

.comment-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.comment-reply-btn {
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}

.comment-reply-btn:hover {
  text-decoration: underline;
}

.comment-reply-form {
  margin-top: 12px;
  padding: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
}

.comment-hidden {
  display: none !important;
}

.comment-reply-form textarea {
  width: 100%;
  min-height: 60px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #0f1420;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  resize: vertical;
  margin-bottom: 8px;
}

.comment-form-actions {
  display: flex;
  gap: 8px;
}

.comment-form-actions button {
  padding: 6px 12px;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  cursor: pointer;
}

.comment-form-actions button:first-child {
  background: var(--accent);
  color: white;
}

.comment-form-actions button.cancel {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}

.favorite-btn {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #173d91;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.favorite-btn:hover {
  transform: translateY(-1px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.favorite-btn.favorited {
  background: transparent;
  border-color: transparent;
  color: #0f3c9f;
  box-shadow: none;
}

.favorite-btn-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.2s, filter 0.2s;
  filter: hue-rotate(215deg) saturate(1.55) brightness(0.74) contrast(1.14) drop-shadow(0 0 5px rgba(18, 63, 165, 0.34));
}

.favorite-btn:hover .favorite-btn-icon {
  transform: scale(1.06);
}

.favorite-btn.favorited .favorite-btn-icon {
  filter: hue-rotate(215deg) saturate(1.8) brightness(0.82) contrast(1.18) drop-shadow(0 0 9px rgba(22, 72, 190, 0.58));
}

body.tu-skin-vacation .favorite-btn-icon {
  filter: none;
}

body.tu-skin-vacation .favorite-btn.favorited .favorite-btn-icon {
  filter: drop-shadow(0 0 8px rgba(255, 156, 36, 0.44));
}

.inline-handler-hidden {
  display: none !important;
}

.inline-handler-visible {
  display: flex !important;
}

.ui-display-none { display: none !important; }
.ui-display-block { display: block !important; }
.ui-display-flex { display: flex !important; }
.ui-display-inline { display: inline !important; }
.ui-display-inline-block { display: inline-block !important; }
.ui-display-inline-flex { display: inline-flex !important; }

.ui-color-text { color: var(--text) !important; }
.ui-color-accent { color: var(--accent) !important; }
.ui-color-error { color: #f87171 !important; }
.ui-color-danger { color: #ef4444 !important; }

.ui-bg-input-active { background: #0f1420 !important; }
.ui-bg-input-passive { background: rgba(255,255,255,0.02) !important; }

/* Rating Component Styles */
.rating-component {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-star {
  font-size: 18px;
  color: #444;
  cursor: default;
  transition: color 0.15s ease, transform 0.15s ease;
  user-select: none;
}

.rating-star.filled {
  color: #ffd700;
}

.rating-star.interactive {
  cursor: pointer;
}

.rating-star.interactive:hover,
.rating-star.preview {
  color: #ffec8b;
  transform: scale(1.15);
}

.rating-info {
  display: flex;
  gap: 6px;
  font-size: 13px;
}

.rating-average {
  color: var(--accent-2);
  font-weight: 600;
}

.rating-count {
  color: var(--muted);
}

.rating-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.rating-remove:hover {
  background: rgba(255,77,77,0.2);
  color: #ff6b6b;
}

.rating-login-hint {
  width: 100%;
  font-size: 12px;
  color: var(--muted);
}

.rating-login-hint a {
  color: var(--accent);
}


/* TU artist neon frame */
.artist-image-box,
.artist-thumb,
.artist-card-image-container,
.group-member-link,
.catalog-thumb {
  position: relative;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(3, 22, 92, 0.95),
    0 0 12px rgba(8, 45, 170, 0.32),
    inset 0 0 10px rgba(10, 40, 120, 0.42);
}

.artist-image-box,
.artist-thumb,
.artist-card-image-container,
.group-member-link {
  overflow: hidden;
}

.artist-image-box::before,
.artist-thumb::before,
.artist-card-image-container::before,
.group-member-link::before,
.catalog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, transparent 43%, rgba(78, 130, 255, 0.62) 49%, rgba(125, 176, 255, 0.42) 52%, transparent 59%, transparent 100%);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-155%) skewX(-18deg);
  animation: tuArtistNeonSweep 60s ease-in-out infinite;
}

.artist-image-box::after,
.artist-thumb::after,
.artist-card-image-container::after,
.group-member-link::after,
.catalog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(5, 36, 132, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(48, 104, 255, 0.34),
    0 0 13px rgba(12, 57, 200, 0.28);
  animation: tuArtistNeonFrameGlow 60s ease-in-out infinite;
}

.artist-image,
.group-member-image,
.alias-card img,
.main-alias-hero-link img,
.remixer-mini-img {
  box-shadow:
    0 0 0 1px rgba(3, 22, 92, 0.95),
    0 0 11px rgba(8, 45, 170, 0.26) !important;
  animation: tuArtistNeonImgGlow 60s ease-in-out infinite;
}

@keyframes tuArtistNeonSweep {
  0%, 96.8%, 100% {
    opacity: 0;
    transform: translateX(-155%) skewX(-18deg);
  }
  97.4% {
    opacity: 0.58;
  }
  98.7% {
    opacity: 0.16;
    transform: translateX(155%) skewX(-18deg);
  }
}

@keyframes tuArtistNeonFrameGlow {
  0%, 96.8%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(48, 104, 255, 0.34),
      0 0 13px rgba(12, 57, 200, 0.28);
  }
  97.8% {
    box-shadow:
      inset 0 0 0 1px rgba(82, 137, 255, 0.72),
      0 0 22px rgba(23, 82, 255, 0.56);
  }
}

@keyframes tuArtistNeonImgGlow {
  0%, 96.8%, 100% {
    box-shadow:
      0 0 0 1px rgba(3, 22, 92, 0.95),
      0 0 11px rgba(8, 45, 170, 0.26);
  }
  97.8% {
    box-shadow:
      0 0 0 1px rgba(28, 82, 220, 0.95),
      0 0 18px rgba(35, 92, 255, 0.46);
  }
}

@media (prefers-reduced-motion: reduce) {
  .artist-image-box::before,
  .artist-thumb::before,
  .artist-card-image-container::before,
  .group-member-link::before,
  .catalog-thumb::before,
  .artist-image,
  .group-member-image,
  .alias-card img,
  .main-alias-hero-link img,
  .remixer-mini-img {
    animation: none;
  }
}
/* End TU artist neon frame */

/* Alternative skin: Ich bin im Urlaub */
body.tu-skin-vacation {
  --bg: #8a5529;
  --panel: #4d3321;
  --card: #36271d;
  --accent: #19c7c9;
  --accent-2: #ffb84a;
  --neon-soft: rgba(25, 199, 201, 0.16);
  --neon-faint: rgba(25, 199, 201, 0.08);
  --scanline-color: rgba(255, 214, 137, 0.020);
  --text: #fff4df;
  --muted: #d6c3a5;
  background-color: #8a5529;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 226, 152, 0.055) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 64%, rgba(73, 42, 18, 0.070) 0 1px, transparent 2px),
    repeating-linear-gradient(13deg, rgba(255, 222, 145, 0.022) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 6% 30%, rgba(20, 190, 197, 0.20), transparent 26%),
    radial-gradient(circle at 94% 38%, rgba(51, 126, 64, 0.18), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255, 184, 74, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(184, 121, 61, 0.22) 0%, rgba(138, 85, 41, 0.28) 46%, rgba(82, 51, 29, 0.38) 100%),
    url("images/tu-vacation-background.png");
  background-size: 92px 92px, 138px 138px, auto, auto, auto, auto, auto, cover;
  background-position: 0 0, 0 0, 0 0, center, center, center top, center top, center top;
  background-repeat: repeat, repeat, repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
}


/* Vacation ambience effects */
body.tu-skin-vacation::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(58deg, transparent 0 8%, rgba(24, 59, 32, 0.145) 8.3% 10.2%, transparent 10.6% 100%),
    linear-gradient(70deg, transparent 0 13%, rgba(24, 59, 32, 0.115) 13.4% 15.1%, transparent 15.5% 100%),
    linear-gradient(43deg, transparent 0 17%, rgba(24, 59, 32, 0.095) 17.3% 18.7%, transparent 19.1% 100%),
    linear-gradient(122deg, transparent 0 82%, rgba(24, 59, 32, 0.135) 82.3% 84.2%, transparent 84.6% 100%),
    linear-gradient(108deg, transparent 0 86%, rgba(24, 59, 32, 0.105) 86.3% 88.1%, transparent 88.5% 100%),
    radial-gradient(ellipse at -6% 18%, rgba(18, 47, 29, 0.12) 0 18%, transparent 32%),
    radial-gradient(ellipse at 107% 25%, rgba(18, 47, 29, 0.10) 0 17%, transparent 31%);
  background-repeat: no-repeat;
  background-size:
    460px 520px,
    520px 540px,
    390px 460px,
    520px 560px,
    430px 520px,
    520px 760px,
    520px 760px;
  background-position:
    left -145px top 90px,
    left -180px top 250px,
    left -105px bottom 110px,
    right -170px top 120px,
    right -128px bottom 80px,
    left top,
    right top;
  opacity: 0.42;
}

body.tu-skin-vacation .app {
  position: relative;
  z-index: 1;
}

body.tu-skin-vacation .hdr-hero {
  isolation: isolate;
}

body.tu-skin-vacation .hdr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 18% 48%, rgba(42, 226, 226, 0.12) 0 1px, transparent 2px 13px),
    repeating-radial-gradient(ellipse at 72% 35%, rgba(255, 226, 132, 0.075) 0 1px, transparent 2px 16px),
    linear-gradient(100deg, transparent 0%, rgba(21, 210, 217, 0.10) 42%, rgba(255, 217, 120, 0.085) 51%, transparent 64%);
  background-size: 220px 86px, 260px 92px, 230% 100%;
  background-position: 0 0, 40px 12px, 0 0;
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: tuVacationWaterShimmer 54s ease-in-out infinite;
}

body.tu-skin-vacation .hdr-hero::after {
  z-index: 1;
}

@keyframes tuVacationWaterShimmer {
  0%, 100% {
    opacity: 0.24;
    background-position: 0 0, 40px 12px, 0 0;
  }
  50% {
    opacity: 0.40;
    background-position: 120px 8px, -80px 18px, 100% 0;
  }
}

@media (max-width: 700px) {
  body.tu-skin-vacation {
    background-attachment: scroll;
    background-position: 0 0, 0 0, 0 0, center, center, center top, center top, center top;
  }
}

@media (max-width: 700px) {
  body.tu-skin-vacation::after {
    opacity: 0.34;
    background-position:
      left -210px top 80px,
      left -250px top 250px,
      left -185px bottom 90px,
      right -245px top 120px,
      right -205px bottom 70px,
      left top,
      right top;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.tu-skin-vacation .hdr-hero::before {
    animation: none;
    opacity: 0.24;
  }
}

body.tu-skin-vacation .hdr-hero::after {
  background: linear-gradient(110deg, transparent 0%, transparent 43%, rgba(255, 230, 140, 0.30) 50%, transparent 58%, transparent 100%);
}

body.tu-skin-vacation .app {
  margin-top: 0;
  margin-bottom: clamp(14px, 3vw, 28px);
  padding-top: clamp(4px, 0.8vw, 8px);
  gap: clamp(14px, 2vw, 22px);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.tu-skin-vacation #mainHeader,
body.tu-skin-vacation .app > :not(#mainHeader):not(#mainFooter):not(script):not(style),
body.tu-skin-vacation #mainFooter {
  border: 2px solid rgba(255, 132, 24, 0.98);
  border-radius: 10px;
  background: rgba(48, 31, 19, 0.54);
  box-shadow:
    0 0 0 1px rgba(255, 190, 92, 0.24),
    0 0 18px rgba(255, 132, 24, 0.13),
    0 12px 30px rgba(78, 43, 8, 0.18);
  overflow: hidden;
}

body.tu-skin-vacation .app > :not(#mainHeader):not(#mainFooter):not(script):not(style):not(.artists-page):not(.catalog-page):not(.calendar-container) {
  padding: clamp(12px, 2vw, 18px);
}

body.tu-skin-vacation .app > .artists-page {
  padding: 0;
  gap: 0;
  overflow: visible !important;
}

body.tu-skin-vacation .app > .catalog-page {
  padding: 0;
  gap: 0;
  overflow: visible !important;
}

body.tu-skin-vacation .artists-page .artists-header,
body.tu-skin-vacation .catalog-page .catalog-header {
  position: relative;
  z-index: 30;
}

body.tu-skin-vacation .app > .calendar-container {
  max-width: none;
  padding: 0;
  display: grid;
  gap: 0;
}

body.tu-skin-vacation .artists-page .artists-header {
  padding: clamp(14px, 2vw, 18px);
}

body.tu-skin-vacation .catalog-page .catalog-header {
  padding: clamp(14px, 2vw, 18px);
}

body.tu-skin-vacation .calendar-container .calendar-header {
  margin-bottom: 0;
  padding: clamp(14px, 2vw, 18px);
}

body.tu-skin-vacation .artists-page .artists-panel {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

body.tu-skin-vacation .catalog-page .catalog-panel {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

body.tu-skin-vacation .calendar-container .calendar-grid {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(46, 31, 22, 0.98), rgba(30, 24, 20, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.045) 0 1px, transparent 1px 18px);
}

body.tu-skin-vacation .calendar-container .legend {
  margin-top: 0;
  padding: 12px clamp(14px, 2vw, 18px);
  background:
    linear-gradient(180deg, rgba(30, 24, 20, 0.98), rgba(46, 31, 22, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.045) 0 1px, transparent 1px 18px);
  border-top: 1px solid rgba(25, 199, 201, 0.14);
}

body.tu-skin-vacation .calendar-container .upcoming-section {
  margin-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(46, 31, 22, 0.98), rgba(30, 24, 20, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.045) 0 1px, transparent 1px 18px);
}

body.tu-skin-vacation .artists-page .pagination {
  min-height: 0;
  padding: 12px clamp(14px, 2vw, 18px) 14px;
  background:
    linear-gradient(180deg, rgba(46, 31, 22, 0.98), rgba(30, 24, 20, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.045) 0 1px, transparent 1px 18px);
  border-top: 1px solid rgba(25, 199, 201, 0.14);
}

body.tu-skin-vacation .catalog-page .catalog-pagination {
  min-height: 0;
  padding: 12px clamp(14px, 2vw, 18px) 14px;
  background:
    linear-gradient(180deg, rgba(46, 31, 22, 0.98), rgba(30, 24, 20, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.045) 0 1px, transparent 1px 18px);
  border-top: 1px solid rgba(25, 199, 201, 0.14);
}

body.tu-skin-vacation .artists-page .pagination:empty {
  display: none;
  padding: 0;
  border-top: 0;
}

body.tu-skin-vacation .catalog-page .catalog-pagination:empty {
  display: none;
  padding: 0;
  border-top: 0;
}

body.tu-skin-vacation .artists-page .artist-list-name {
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

body.tu-skin-vacation .artists-page .artist-list-card:hover .artist-list-name {
  color: #ffae43;
  text-shadow: 0 0 10px rgba(255, 174, 67, 0.28);
}

body.tu-skin-vacation .catalog-card .catalog-name {
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

body.tu-skin-vacation .catalog-card:hover .catalog-name {
  color: #ffae43;
  text-shadow: 0 0 10px rgba(255, 174, 67, 0.28);
}

body.tu-skin-vacation #mainFooter .ftr-root {
  margin-top: 0;
  border-top: 0;
}

@media (max-width: 700px) {
  body.tu-skin-vacation .app {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}

body.tu-skin-vacation .hdr-user-nav {
  background:
    linear-gradient(90deg, rgba(16, 190, 193, 0.18) 0%, transparent 23%, transparent 74%, rgba(47, 132, 67, 0.20) 100%),
    linear-gradient(135deg, rgba(132, 58, 16, 0.98) 0%, rgba(218, 116, 27, 0.96) 52%, rgba(157, 70, 18, 0.98) 100%),
    repeating-linear-gradient(90deg, rgba(255, 223, 142, 0.08) 0 2px, transparent 2px 18px);
  border-bottom-color: rgba(42, 213, 196, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 151, 0.22),
    inset 0 -1px 0 rgba(62, 141, 70, 0.28),
    0 10px 24px rgba(78, 34, 10, 0.18);
}

body.tu-skin-vacation .hdr-nav-link,
body.tu-skin-vacation .hdr-favorites-link,
body.tu-skin-vacation .hdr-profile-link {
  color: #fff4df;
  text-shadow: 0 1px 1px rgba(55, 22, 4, 0.42);
}

body.tu-skin-vacation .hdr-nav-link:hover,
body.tu-skin-vacation .hdr-favorites-link:hover,
body.tu-skin-vacation .hdr-profile-link:hover,
body.tu-skin-vacation .hdr-login-link:hover,
body.tu-skin-vacation .hdr-admin-panel-link:hover {
  color: #ffae43;
  text-shadow: 0 0 10px rgba(255, 174, 67, 0.30), 0 1px 1px rgba(55, 22, 4, 0.42);
}

body.tu-skin-vacation .hdr-login-link,
body.tu-skin-vacation .hdr-admin-panel-link {
  color: #fff8e9;
  text-shadow: 0 1px 1px rgba(55, 22, 4, 0.42);
}

body.tu-skin-vacation .hdr-register-link {
  background: linear-gradient(135deg, #19c7c9, #7ef0df);
  color: #063337;
  box-shadow: 0 0 0 1px rgba(255, 247, 211, 0.22), 0 6px 14px rgba(58, 25, 5, 0.18);
}

body.tu-skin-vacation .hdr-logout-btn {
  background: rgba(90, 31, 8, 0.28);
  color: #fff4df;
  border-color: rgba(255, 222, 142, 0.34);
}

body.tu-skin-vacation .hdr-logout-btn:hover {
  background: rgba(116, 38, 9, 0.42);
  border-color: rgba(255, 239, 180, 0.52);
}

body.tu-skin-vacation .hdr-skin-toggle,
body.tu-skin-vacation .admin-toggle {
  border-color: rgba(255, 184, 74, 0.28);
  background: rgba(43, 28, 14, 0.48);
}

body.tu-skin-vacation .hdr-login-link,
body.tu-skin-vacation .hdr-admin-panel-link {
  color: #ffae43;
  text-shadow: 0 0 10px rgba(255, 174, 67, 0.18);
}

body.tu-skin-vacation .ftr-link:hover,
body.tu-skin-vacation a:hover {
  color: #ffae43;
}

body.tu-skin-vacation .back,
body.tu-skin-vacation .person-link,
body.tu-skin-vacation .track-link,
body.tu-skin-vacation .comment-login-hint a,
body.tu-skin-vacation .rating-login-hint a,
body.tu-skin-vacation .mixes-list li a,
body.tu-skin-vacation .external-link-chip,
body.tu-skin-vacation .ui-color-accent,
body.tu-skin-vacation a[data-inline-style*="var(--accent)"],
body.tu-skin-vacation a[style*="var(--accent)"] {
  color: #ffae43 !important;
  text-shadow: 0 0 10px rgba(255, 174, 67, 0.18);
}

body.tu-skin-vacation .back:hover,
body.tu-skin-vacation .person-link:hover,
body.tu-skin-vacation .track-link:hover,
body.tu-skin-vacation .comment-login-hint a:hover,
body.tu-skin-vacation .rating-login-hint a:hover,
body.tu-skin-vacation .mixes-list li a:hover,
body.tu-skin-vacation .tracks-list li a:hover,
body.tu-skin-vacation .group-member-name a:hover,
body.tu-skin-vacation .artist-name a:hover,
body.tu-skin-vacation .external-link-chip:hover,
body.tu-skin-vacation a[data-inline-style*="var(--accent)"]:hover,
body.tu-skin-vacation a[style*="var(--accent)"]:hover {
  color: #ffc46a !important;
  text-shadow: 0 0 12px rgba(255, 196, 106, 0.28);
}

body.tu-skin-vacation .external-link-chip {
  border-color: rgba(255, 177, 74, 0.36) !important;
  background: rgba(92, 48, 23, 0.34) !important;
}

body.tu-skin-vacation .external-link-chip:hover {
  background: rgba(138, 72, 28, 0.42) !important;
}

body.tu-skin-vacation .admin-bar {
  background: rgba(92, 48, 23, 0.34) !important;
  border-color: rgba(255, 177, 74, 0.36) !important;
}

body.tu-skin-vacation .aliases span,
body.tu-skin-vacation .group-member-chip,
body.tu-skin-vacation .genre-pill,
body.tu-skin-vacation .pill,
body.tu-skin-vacation .chip,
body.tu-skin-vacation .badge,
body.tu-skin-vacation .category-pill,
body.tu-skin-vacation .badge-member {
  background: rgba(138, 72, 28, 0.26) !important;
  border-color: rgba(255, 177, 74, 0.36) !important;
  color: #ffcf73 !important;
}

body.tu-skin-vacation .list-link:hover,
body.tu-skin-vacation .checkbox-label:hover,
body.tu-skin-vacation .alias-card:hover {
  background: rgba(229, 121, 32, 0.16) !important;
  border-color: rgba(255, 177, 74, 0.30) !important;
}

body.tu-skin-vacation .group-member-link:hover {
  box-shadow: 0 10px 24px rgba(255, 142, 28, 0.24) !important;
}

body.tu-skin-vacation .hdr-register-link,
body.tu-skin-vacation .status.ok,
body.tu-skin-vacation .recent-type,
body.tu-skin-vacation button:where(:not(.hdr-logout-btn):not(.btn-logout):not(.btn-cancel):not(.cancel):not(.btn-secondary):not(.btn-muted):not(.rating-remove):not(.favorite-btn):not(.comment-delete):not(.comment-reply-btn):not(.btn-delete):not(.btn-danger):not(.danger-btn-delete):not(.btn-delete-row):not(.btn-remove):not(.btn-remove-remixer):not(.group-member-chip-remove)),
body.tu-skin-vacation .btn-primary,
body.tu-skin-vacation .btn-submit,
body.tu-skin-vacation .btn-create,
body.tu-skin-vacation .hdr-admin-link,
body.tu-skin-vacation .catalog-create-link,
body.tu-skin-vacation .link-btn,
body.tu-skin-vacation .profile-nav-link.active {
  background: linear-gradient(135deg, #a94915 0%, #ef9130 58%, #6f7b31 100%);
  color: #fff4df;
  border-color: rgba(255, 220, 132, 0.38);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.08), 0 7px 16px rgba(57, 24, 6, 0.20);
  text-shadow: 0 1px 1px rgba(55, 22, 4, 0.44);
}

body.tu-skin-vacation button:where(:not(.hdr-logout-btn):not(.btn-logout):not(.btn-cancel):not(.cancel):not(.btn-secondary):not(.btn-muted):not(.rating-remove):not(.favorite-btn):not(.comment-delete):not(.comment-reply-btn):not(.btn-delete):not(.btn-danger):not(.danger-btn-delete):not(.btn-delete-row):not(.btn-remove):not(.btn-remove-remixer):not(.group-member-chip-remove)):hover,
body.tu-skin-vacation .btn-primary:hover,
body.tu-skin-vacation .btn-submit:hover,
body.tu-skin-vacation .btn-create:hover,
body.tu-skin-vacation .hdr-admin-link:hover,
body.tu-skin-vacation .catalog-create-link:hover,
body.tu-skin-vacation .link-btn:hover,
body.tu-skin-vacation .profile-nav-link.active:hover {
  background: linear-gradient(135deg, #bb571b 0%, #ffac43 58%, #78923b 100%);
  color: #fff8e9;
  border-color: rgba(174, 247, 226, 0.28);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.12), 0 9px 20px rgba(57, 24, 6, 0.24);
}

body.tu-skin-vacation .comment-form button,
body.tu-skin-vacation .comment-form-actions button:first-child,
body.tu-skin-vacation .tag-row button,
body.tu-skin-vacation .tool-card a {
  background: linear-gradient(135deg, #a94915 0%, #ef9130 58%, #6f7b31 100%);
  color: #fff4df;
  border: 1px solid rgba(255, 220, 132, 0.38);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.08), 0 7px 16px rgba(57, 24, 6, 0.20);
  text-shadow: 0 1px 1px rgba(55, 22, 4, 0.44);
}

body.tu-skin-vacation .comment-form button:hover,
body.tu-skin-vacation .comment-form-actions button:first-child:hover,
body.tu-skin-vacation .tag-row button:hover,
body.tu-skin-vacation .tool-card a:hover {
  background: linear-gradient(135deg, #bb571b 0%, #ffac43 58%, #78923b 100%);
  color: #fff8e9;
  border-color: rgba(174, 247, 226, 0.28);
}

body.tu-skin-vacation .comment-reply-btn {
  background: none;
  border: 0;
  color: #ffae43;
  box-shadow: none;
  text-shadow: none;
}

body.tu-skin-vacation .comment-reply-btn:hover {
  color: #ffc46a;
}

body.tu-skin-vacation .profile-nav-link.active {
  background: linear-gradient(135deg, #a94915 0%, #ef9130 58%, #6f7b31 100%) !important;
  color: #fff4df !important;
}

/* Vacation skin controls */
body.tu-skin-vacation #headerSearchBtn {
  background: linear-gradient(135deg, #b85618 0%, #f29a32 58%, #8e4517 100%);
  color: #fff4df;
  border: 1px solid rgba(255, 224, 150, 0.42);
  box-shadow: 0 0 0 1px rgba(46, 121, 64, 0.12), 0 8px 18px rgba(70, 28, 6, 0.24);
  text-shadow: 0 1px 1px rgba(50, 18, 3, 0.48);
}

body.tu-skin-vacation #headerSearchBtn:hover {
  background: linear-gradient(135deg, #cb6b22 0%, #ffae43 58%, #9d501b 100%);
  border-color: rgba(174, 247, 226, 0.34);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.16), 0 10px 22px rgba(70, 28, 6, 0.28);
}

body.tu-skin-vacation .artists-page .artists-country-filter .artists-country-filter-button {
  background:
    linear-gradient(90deg, rgba(25, 199, 201, 0.08), transparent 32%, rgba(55, 132, 67, 0.10)),
    linear-gradient(180deg, rgba(92, 48, 23, 0.96), rgba(55, 34, 23, 0.96));
  color: #fff4df;
  border-color: rgba(255, 191, 92, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 226, 151, 0.12), 0 5px 14px rgba(42, 22, 8, 0.16);
}

body.tu-skin-vacation .artists-page .artists-country-filter .artists-country-filter-button:hover,
body.tu-skin-vacation .artists-page .artists-country-filter .artists-country-filter-button[aria-expanded="true"] {
  border-color: rgba(255, 206, 101, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 226, 151, 0.18), 0 0 0 1px rgba(25, 199, 201, 0.10), 0 8px 18px rgba(42, 22, 8, 0.20);
}

body.tu-skin-vacation .artists-page .artists-country-filter-chevron {
  color: #ffcf73;
}

body.tu-skin-vacation .artists-page .artists-country-filter-menu {
  background:
    radial-gradient(circle at 0% 0%, rgba(25, 199, 201, 0.10), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(54, 132, 68, 0.12), transparent 38%),
    linear-gradient(180deg, #3b2619, #271d17);
  border-color: rgba(255, 177, 74, 0.36);
  box-shadow: 0 18px 40px rgba(34, 17, 6, 0.42), 0 0 0 1px rgba(25, 199, 201, 0.08);
}

body.tu-skin-vacation .artists-page .artists-country-filter-menu .artists-country-option {
  background: transparent;
  color: #fff4df;
}

body.tu-skin-vacation .artists-page .artists-country-filter-menu .artists-country-option:hover,
body.tu-skin-vacation .artists-page .artists-country-filter-menu .artists-country-option[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(229, 121, 32, 0.30), rgba(255, 188, 78, 0.16));
  color: #fff8e9;
}

body.tu-skin-vacation .catalog-country-filter-button {
  background:
    linear-gradient(90deg, rgba(25, 199, 201, 0.08), transparent 32%, rgba(55, 132, 67, 0.10)),
    linear-gradient(180deg, rgba(92, 48, 23, 0.96), rgba(55, 34, 23, 0.96));
  color: #fff4df;
  border-color: rgba(255, 191, 92, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 226, 151, 0.12), 0 5px 14px rgba(42, 22, 8, 0.16);
}

body.tu-skin-vacation .catalog-country-filter-button:hover,
body.tu-skin-vacation .catalog-country-filter-button[aria-expanded="true"] {
  border-color: rgba(255, 206, 101, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 226, 151, 0.18), 0 0 0 1px rgba(25, 199, 201, 0.10), 0 8px 18px rgba(42, 22, 8, 0.20);
}

body.tu-skin-vacation .catalog-country-filter-chevron {
  color: #ffcf73;
}

body.tu-skin-vacation .catalog-country-filter-menu {
  background:
    radial-gradient(circle at 0% 0%, rgba(25, 199, 201, 0.10), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(54, 132, 68, 0.12), transparent 38%),
    linear-gradient(180deg, #3b2619, #271d17);
  border-color: rgba(255, 177, 74, 0.36);
  box-shadow: 0 18px 40px rgba(34, 17, 6, 0.42), 0 0 0 1px rgba(25, 199, 201, 0.08);
}

body.tu-skin-vacation .catalog-country-option {
  background: transparent;
  color: #fff4df;
}

body.tu-skin-vacation .catalog-country-option:hover,
body.tu-skin-vacation .catalog-country-option[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(229, 121, 32, 0.30), rgba(255, 188, 78, 0.16));
  color: #fff8e9;
}

body.tu-skin-vacation .catalog-condolence-icon {
  color: #ffcf73;
  filter: drop-shadow(0 0 6px rgba(255, 174, 67, 0.30));
}

body.tu-skin-vacation .artists-page .artist-create-link {
  background: linear-gradient(135deg, #a94915 0%, #ef9130 56%, #6f7b31 100%);
  color: #fff4df;
  border: 1px solid rgba(255, 220, 132, 0.38);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.09), 0 8px 18px rgba(57, 24, 6, 0.24);
  text-shadow: 0 1px 1px rgba(55, 22, 4, 0.46);
}

body.tu-skin-vacation .artists-page .artist-create-link:hover {
  opacity: 1;
  color: #fff8e9;
  background: linear-gradient(135deg, #bb571b 0%, #ffac43 56%, #78923b 100%);
  border-color: rgba(174, 247, 226, 0.30);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.15), 0 10px 22px rgba(57, 24, 6, 0.28);
}

body.tu-skin-vacation .hero:not(.hdr-hero),
body.tu-skin-vacation .card,
body.tu-skin-vacation .panel,
body.tu-skin-vacation .form-section,
body.tu-skin-vacation .catalog-panel,
body.tu-skin-vacation .recent-section,
body.tu-skin-vacation .result-item {
  border-color: rgba(25, 199, 201, 0.16);
  background:
    linear-gradient(180deg, rgba(46, 32, 23, 0.98), rgba(28, 23, 20, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.045) 0 1px, transparent 1px 18px);
  box-shadow: 0 10px 28px rgba(28, 18, 10, 0.20);
}

body.tu-skin-vacation .card:hover,
body.tu-skin-vacation .panel:hover,
body.tu-skin-vacation .result-item:hover,
body.tu-skin-vacation .form-section:hover,
body.tu-skin-vacation .catalog-panel:hover,
body.tu-skin-vacation .recent-section:hover {
  border-color: rgba(25, 199, 201, 0.28);
  box-shadow: 0 0 0 1px rgba(25, 199, 201, 0.07), 0 12px 34px rgba(12, 126, 130, 0.12);
}

body.tu-skin-vacation .role-pill {
  color: #d97322;
  background: linear-gradient(180deg, rgba(93, 48, 18, 0.42), rgba(54, 34, 22, 0.50));
  border-color: rgba(218, 116, 27, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 196, 93, 0.10),
    0 0 10px rgba(217, 115, 34, 0.10);
}

body.tu-skin-vacation .roles-checkboxes label {
  color: #e08636;
  background: rgba(92, 48, 20, 0.34);
  border: 1px solid rgba(218, 116, 27, 0.42);
}

body.tu-skin-vacation input,
body.tu-skin-vacation select,
body.tu-skin-vacation textarea {
  border-color: rgba(25, 199, 201, 0.18);
}

body.tu-skin-vacation input:focus,
body.tu-skin-vacation select:focus,
body.tu-skin-vacation textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(25, 199, 201, 0.14);
}

body.tu-skin-vacation .switch input:checked + .slider,
body.tu-skin-vacation .catalog-pagination button.active,
body.tu-skin-vacation .pagination button.active {
  background: linear-gradient(135deg, #b85618 0%, #f29a32 58%, #8e4517 100%);
  border-color: rgba(255, 184, 74, 0.78);
  color: #fff4df;
}

#tuSkinToggle + .slider {
  background: linear-gradient(135deg, #b85618 0%, #f29a32 58%, #8e4517 100%);
  border-color: rgba(255, 184, 74, 0.78);
}

#tuSkinToggle + .slider:before {
  background: #fff4df;
  box-shadow: 0 0 10px rgba(255, 174, 67, 0.36);
}

#tuSkinToggle:checked + .slider,
body.tu-skin-vacation #tuSkinToggle + .slider {
  background: linear-gradient(135deg, rgba(12, 124, 220, 0.98), rgba(38, 232, 255, 0.9));
  border-color: rgba(56, 232, 255, 0.9);
}

#tuSkinToggle:checked + .slider:before,
body.tu-skin-vacation #tuSkinToggle + .slider:before {
  box-shadow: 0 0 10px rgba(56, 232, 255, 0.5);
}

body.tu-skin-vacation .ftr-root {
  border-top-color: rgba(25, 199, 201, 0.26);
  background:
    radial-gradient(circle at 8% 0%, rgba(25, 199, 201, 0.11), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(54, 132, 68, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(55, 36, 22, 0.95), rgba(36, 27, 21, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 201, 111, 0.05) 0 2px, transparent 2px 20px);
}

body.tu-skin-vacation .ftr-logo {
  filter: drop-shadow(0 0 10px rgba(255, 138, 24, 0.28));
}
/* End alternative skin */

body.tu-skin-vacation .hdr-hero {
  box-shadow: none;
}

body.tu-skin-vacation .hdr-logo {
  aspect-ratio: 2172 / 724;
  object-fit: cover;
  object-position: center;
}

body.tu-skin-vacation .hdr-search-form {
  bottom: 18px;
}

@media (max-width: 700px) {
  body.tu-skin-vacation .hdr-search-form {
    bottom: 10px;
  }
}

/* Vacation skin image frames */
body.tu-skin-vacation .artist-image-box,
body.tu-skin-vacation .person-image-container,
body.tu-skin-vacation .artist-thumb,
body.tu-skin-vacation .artist-card-image-container,
body.tu-skin-vacation .group-member-link,
body.tu-skin-vacation .catalog-thumb,
body.tu-skin-vacation .mix-artwork-card {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 147, 32, 0.36) !important;
  box-shadow:
    0 0 0 1px rgba(130, 55, 7, 0.94),
    0 0 13px rgba(255, 128, 18, 0.26),
    inset 0 0 10px rgba(255, 168, 54, 0.24) !important;
}

body.tu-skin-vacation .artist-thumb {
  background: linear-gradient(135deg, rgba(255, 132, 24, 0.78), rgba(255, 198, 87, 0.30)) !important;
  border-color: rgba(255, 147, 32, 0.44) !important;
}

body.tu-skin-vacation .person-image-container,
body.tu-skin-vacation .mix-artwork-card {
  overflow: hidden;
}

body.tu-skin-vacation .artist-image-box::before,
body.tu-skin-vacation .person-image-container::before,
body.tu-skin-vacation .artist-thumb::before,
body.tu-skin-vacation .artist-card-image-container::before,
body.tu-skin-vacation .group-member-link::before,
body.tu-skin-vacation .catalog-thumb::before,
body.tu-skin-vacation .mix-artwork-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, transparent 43%, rgba(255, 172, 48, 0.58) 49%, rgba(255, 222, 126, 0.34) 52%, transparent 59%, transparent 100%);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-155%) skewX(-18deg);
  animation: tuVacationImageSweep 60s ease-in-out infinite;
}

body.tu-skin-vacation .artist-image-box::after,
body.tu-skin-vacation .person-image-container::after,
body.tu-skin-vacation .artist-thumb::after,
body.tu-skin-vacation .artist-card-image-container::after,
body.tu-skin-vacation .group-member-link::after,
body.tu-skin-vacation .catalog-thumb::after,
body.tu-skin-vacation .mix-artwork-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 123, 16, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 197, 83, 0.28),
    0 0 13px rgba(255, 128, 18, 0.22);
  animation: tuVacationFrameGlow 60s ease-in-out infinite;
}

body.tu-skin-vacation .artist-image,
body.tu-skin-vacation .artist-image-preview,
body.tu-skin-vacation #personImage,
body.tu-skin-vacation .group-member-image,
body.tu-skin-vacation .alias-card img,
body.tu-skin-vacation .main-alias-hero-link img,
body.tu-skin-vacation .remixer-mini-img,
body.tu-skin-vacation .artist-card-image,
body.tu-skin-vacation .mix-artwork-image,
body.tu-skin-vacation .release-image {
  border-color: rgba(255, 147, 32, 0.42) !important;
  box-shadow:
    0 0 0 1px rgba(130, 55, 7, 0.92),
    0 0 12px rgba(255, 128, 18, 0.24) !important;
  animation: tuVacationImageGlow 60s ease-in-out infinite;
}


/* Vacation skin image color treatment */
body.tu-skin-vacation .artist-image-box::after,
body.tu-skin-vacation .person-image-container::after,
body.tu-skin-vacation .artist-thumb::after,
body.tu-skin-vacation .artist-card-image-container::after,
body.tu-skin-vacation .group-member-link::after,
body.tu-skin-vacation .catalog-thumb::after,
body.tu-skin-vacation .mix-artwork-card::after {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 205, 96, 0.18), transparent 34%),
    radial-gradient(circle at 82% 92%, rgba(255, 107, 26, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(255, 137, 30, 0.13), transparent 48%, rgba(25, 199, 201, 0.07));
  mix-blend-mode: screen;
}

body.tu-skin-vacation .artist-image-box img,
body.tu-skin-vacation .person-image-container img,
body.tu-skin-vacation .artist-thumb img,
body.tu-skin-vacation .artist-card-image-container img,
body.tu-skin-vacation .group-member-link img,
body.tu-skin-vacation .catalog-thumb img,
body.tu-skin-vacation .mix-artwork-card img,
body.tu-skin-vacation .artist-image,
body.tu-skin-vacation .artist-image-preview,
body.tu-skin-vacation #personImage,
body.tu-skin-vacation .group-member-image,
body.tu-skin-vacation .alias-card img,
body.tu-skin-vacation .main-alias-hero-link img,
body.tu-skin-vacation .remixer-mini-img,
body.tu-skin-vacation .artist-card-image,
body.tu-skin-vacation .mix-artwork-image,
body.tu-skin-vacation .release-image,
body.tu-skin-vacation .list-image,
body.tu-skin-vacation .favorite-image,
body.tu-skin-vacation .calendar-person-image,
body.tu-skin-vacation .upcoming-person-image {
  filter: contrast(1.08) saturate(1.14) sepia(0.18) hue-rotate(-7deg) brightness(0.98);
}

body.tu-skin-vacation img[data-tu-skin-image="vacation"] {
  filter: none;
}

body.tu-skin-vacation .release-image-container {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 147, 32, 0.36) !important;
  box-shadow:
    0 0 0 1px rgba(130, 55, 7, 0.94),
    0 0 13px rgba(255, 128, 18, 0.26),
    inset 0 0 10px rgba(255, 168, 54, 0.24) !important;
}

body.tu-skin-vacation .release-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, transparent 43%, rgba(255, 172, 48, 0.58) 49%, rgba(255, 222, 126, 0.34) 52%, transparent 59%, transparent 100%);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-155%) skewX(-18deg);
  animation: tuVacationImageSweep 60s ease-in-out infinite;
}

body.tu-skin-vacation .release-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 123, 16, 0.78);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 205, 96, 0.18), transparent 34%),
    radial-gradient(circle at 82% 92%, rgba(255, 107, 26, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(255, 137, 30, 0.13), transparent 48%, rgba(25, 199, 201, 0.07));
  box-shadow:
    inset 0 0 0 1px rgba(255, 197, 83, 0.28),
    0 0 13px rgba(255, 128, 18, 0.22);
  mix-blend-mode: screen;
  animation: tuVacationFrameGlow 60s ease-in-out infinite;
}

body.tu-skin-vacation .list-image,
body.tu-skin-vacation .favorite-image,
body.tu-skin-vacation .calendar-person-image,
body.tu-skin-vacation .upcoming-person-image {
  border-color: rgba(255, 147, 32, 0.42) !important;
  box-shadow:
    0 0 0 1px rgba(130, 55, 7, 0.72),
    0 0 10px rgba(255, 128, 18, 0.20) !important;
}

@keyframes tuVacationImageSweep {
  0%, 96.8%, 100% {
    opacity: 0;
    transform: translateX(-155%) skewX(-18deg);
  }
  97.4% { opacity: 0.52; }
  98.7% {
    opacity: 0.14;
    transform: translateX(155%) skewX(-18deg);
  }
}

@keyframes tuVacationFrameGlow {
  0%, 96.8%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 197, 83, 0.28),
      0 0 13px rgba(255, 128, 18, 0.22);
  }
  97.8% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 220, 112, 0.64),
      0 0 22px rgba(255, 142, 28, 0.46);
  }
}

@keyframes tuVacationImageGlow {
  0%, 96.8%, 100% {
    box-shadow:
      0 0 0 1px rgba(130, 55, 7, 0.92),
      0 0 12px rgba(255, 128, 18, 0.24);
  }
  97.8% {
    box-shadow:
      0 0 0 1px rgba(255, 138, 24, 0.90),
      0 0 18px rgba(255, 170, 47, 0.44);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.tu-skin-vacation .artist-image-box::before,
  body.tu-skin-vacation .artist-image-box::after,
  body.tu-skin-vacation .person-image-container::before,
  body.tu-skin-vacation .person-image-container::after,
  body.tu-skin-vacation .artist-thumb::before,
  body.tu-skin-vacation .artist-thumb::after,
  body.tu-skin-vacation .artist-card-image-container::before,
  body.tu-skin-vacation .artist-card-image-container::after,
  body.tu-skin-vacation .group-member-link::before,
  body.tu-skin-vacation .group-member-link::after,
  body.tu-skin-vacation .catalog-thumb::before,
  body.tu-skin-vacation .catalog-thumb::after,
  body.tu-skin-vacation .mix-artwork-card::before,
  body.tu-skin-vacation .mix-artwork-card::after,
  body.tu-skin-vacation .release-image-container::before,
  body.tu-skin-vacation .release-image-container::after,
  body.tu-skin-vacation .artist-image,
  body.tu-skin-vacation .artist-image-preview,
  body.tu-skin-vacation #personImage,
  body.tu-skin-vacation .group-member-image,
  body.tu-skin-vacation .alias-card img,
  body.tu-skin-vacation .main-alias-hero-link img,
  body.tu-skin-vacation .remixer-mini-img,
  body.tu-skin-vacation .artist-card-image,
  body.tu-skin-vacation .mix-artwork-image,
  body.tu-skin-vacation .release-image {
    animation: none;
  }
}
/* End vacation skin image frames */

