/* =======================================================
   Root Legend:
   l = Light | o = Original | d = Dark | g = Glow
   ======================================================= */
:root {
  /* ---- GRAYS ---- */
  --gray-0: rgb(0, 0, 0);
  --gray-1: rgb(68, 68, 68);
  --gray-2: rgb(119, 119, 119);
  --gray-3: rgb(255, 255, 255);
  --gray-g: rgba(255, 255, 255, 0.7);

  /* ---- ELECTRIC PINK ---- */
  --pink-l: rgb(255, 102, 179);
  --pink-o: rgb(255, 0, 127);
  --pink-d: rgb(143, 0, 86);
  --pink-g: rgba(255, 0, 127, 0.65);

  /* ---- DEEP PURPLE ---- */
  --purp-l: rgb(132, 88, 214);
  --purp-o: rgb(75, 0, 130);
  --purp-d: rgb(46, 0, 85);
  --purp-g: rgba(75, 0, 130, 0.55);

  /* ---- DARK BLUE ---- */
  --blue-l: rgb(47, 51, 119);
  --blue-o: rgb(12, 15, 58);
  --blue-d: rgb(2, 8, 99);
  --blue-g: rgba(0, 7, 102, 0.85);

  /* ---- TURQUOISE ---- */
  --turq-l: rgb(126, 254, 255);
  --turq-o: rgb(7, 255, 232);
  --turq-d: rgb(4, 100, 95);
  --turq-g: rgba(7, 255, 232, 0.8);

  /* ---- NEON GREEN ---- */
  --gree-l: rgb(158, 255, 140);
  --gree-o: rgb(57, 255, 20);
  --gree-d: rgb(0, 104, 6);
  --gree-g: rgba(57, 255, 20, 0.65);

  /* ---- EXPLODING ORANGE ---- */
  --expl-l: rgb(255, 217, 102);
  --expl-o: rgb(255, 179, 0);
  --expl-d: rgb(223, 89, 0);
  --expl-g: rgba(255, 179, 0, 0.72);

  /* ---- SHADOWS ---- */
  --shad-25: rgba(0, 0, 0, 0.25);
  --shad-50: rgba(0, 0, 0, 0.5);

  /* ---- MISC ---- */
  --tran-0: transparent;
}

/* 
House rules:
- Avoid scale transform, its a pain and ugly.
- Only use the root colors.
- 
*/
/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  line-height: 1.5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--blue-o);
  color: var(--gray-3);
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover,
a:focus-visible {
  color: var(--pink-o);
  outline: none;
}

/* ========== GLOBAL LAYOUT ========== */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}
.head,
.feet {
  width: 100%;
  padding: 3px 0 20px;
  background-color: var(--blue-o);
  color: var(--gree-o);
  text-align: center;
  box-shadow: 0 0 20px rgba(12, 15, 58, 0.8);
}
.frame {
  display: grid;
  grid-template-columns: 333px 1fr 333px;
  gap: 1rem;
  padding: 1rem;
}
.left,
.main,
.right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.text-center { text-align: center; }

.right-ads {
  background: var(--blue-o);
  border: 1px solid var(--purp-o);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 0 8px rgba(75, 0, 130, 0.3);
}
.right-ad { margin-bottom: 8px; }
.right-ad-img {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(75, 0, 130, 0.3);
  transition: box-shadow 0.15s ease-in-out;
}
.right-ad-img:hover { box-shadow: 0 0 12px rgba(255, 0, 127, 0.4); }

.left-about {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgb(204, 204, 204);
  background: var(--blue-o);
  border: 1px solid var(--purp-o);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 0 8px rgba(75, 0, 130, 0.3);
}

.feet {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgb(170, 170, 170);
}
/* ========== NAVIGATION ========== */
.nav {
  display: block;
  width: 100%;
  background-color: var(--blue-o);
  padding: 12px 20px;
  box-shadow: 0 6px 20px rgba(0, 7, 102, 0.8);
  border-radius: 10px;
}

.nav-row {
  margin-bottom: 10px;
}

.nav-logo-link {
  display: block;
  text-align: center;
}

.nav-logo-img {
  display: inline-block;
  max-width: 10%;
  height: auto;
  border-radius: 10px;
}

.nav-button {
  display: inline-block;
  background-color: var(--purp-o);
  color: var(--gray-3);
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
  text-decoration: none;
  font-size: 1rem;
  min-width: 150px;
  margin: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.nav-button i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.nav-button:hover,
.nav-button:focus-visible {
  background-color: var(--pink-o);
  color: var(--gree-o);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
  transform: translateY(-3px);
}

.nav-sub {
  display: block;
  background-color: var(--blue-d);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 7, 102, 0.5);
  padding: 15px;
  margin-top: 10px;
}

.nav-sub-button {
  display: inline-block;
  background-color: var(--turq-o);
  color: var(--gray-0);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 8px;
}

.nav-sub-button i {
  margin-right: 10px;
  font-size: 1rem;
}

.nav-sub-button:hover,
.nav-sub-button:focus-visible {
  background-color: var(--gree-o);
  color: var(--gray-0);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
  transform: translateY(-2px);
}

.nav-cart {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nav-cart a {
  display: inline-block;
  background-color: var(--purp-o);
  color: var(--gray-3);
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
  text-decoration: none;
  margin: 10px 0;
}

.nav-cart a:hover {
  background-color: var(--pink-o);
  color: var(--gree-o);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
  transform: translateY(-3px);
}

.nav-cart-items {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.nav-cart-item {
  padding: 0.3rem 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s ease-in-out;
  font-size: 0.9rem;
  color: var(--gray-3);
}

.nav-cart-item:hover {
  background: rgba(255, 0, 127, 0.1);
  transform: translateX(5px);
}

.nav-cart-ok {
  width: 100%;
  background: var(--gree-o);
  color: var(--blue-o);
  padding: 0.8rem;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1rem;
}

.nav-cart-ok:hover {
  background: var(--turq-o);
  color: var(--gray-0);
  transform: translateY(-2px);
}

/* ========== BANNERS ========== */
.banner {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(75, 0, 130, 0.4);
}
.banr {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== PLAYER & QUEUE ========== */
.sidebar-remove-x {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.sidebar-remove-x:hover { transform: scale(1.01); }

.player-controls {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.q-item,
.playing-item {
  padding: 8px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.q-item {
  background: rgb(26, 26, 26);
  color: var(--gree-o);
  border: 1px solid rgb(51, 51, 51);
}
.q-item:hover {
  background-color: rgb(34, 34, 34);
  color: var(--pink-o);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.7);
  transform: translateX(4px);
}
.playing-item {
  background: var(--gray-0);
  color: var(--pink-o);
  border: 1px solid var(--pink-o);
  font-weight: bold;
  font-style: italic;
  text-shadow: 0 0 4px var(--pink-o);
  box-shadow: 0 0 14px rgba(255, 0, 127, 0.5);
}
.playing-item:hover {
  background-color: rgb(34, 34, 34);
  color: var(--gree-o);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
  transform: translateY(-4px);
}

/* ========== TEXT BLOCKS ========== */
.head-title {
  margin: 0;
  padding: 6px 1px;
}

/* =================== ARTIST =================== */
.artist-section {
  background: rgb(18, 20, 22);
  border-radius: 10px;
  box-shadow: 0 1px 8px var(--shad-25);
  padding: 20px 18px;
  margin-bottom: 18px;
}
.artist-title {
  color: var(--pink-o);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 6px var(--pink-g);
}
.artist {
  background: linear-gradient(135deg, var(--blue-o), rgb(26, 26, 26));
  border: 1px solid var(--purp-o);
  border-radius: 10px;
  color: var(--gray-3);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 12px rgba(75, 0, 130, 0.6);
  transition: box-shadow 0.3s ease;
}
.artist:hover {
  box-shadow: 0 0 16px rgba(75, 0, 130, 0.8);
}
.art-img {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-o);
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}
.art-img:hover { transform: scale(1.05); }
.art-name {
  color: var(--gree-o);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.art-bio {
  color: rgb(204, 204, 204);
  font-size: 0.8rem;
}

/* =================== ARTIST DASHBOARD=================== */
.dash-artist {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--blue-o) 80%, var(--gray-0) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shad-25), 0 1px 3px var(--shad-25);
}
.dash-artist-header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.dash-artist-selector-row {
display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
  padding: 20px 28px;
  border-radius: 14px;
  background: linear-gradient(95deg, var(--blue-d) 60%, var(--blue-o) 100%);
  box-shadow: 0 2px 12px var(--gree-g);
  border: 1.5px solid var(--gree-o);
}
.dash-artist-selector-current {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 22px;
  border-right: 2px solid var(--gree-o);
}
.dash-artist-selector-current-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--gree-o);
  background: var(--blue-o);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dash-artist-selector-current-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gray-0);
}
.dash-artist-selector-current-name {
  font-size: 1.4rem;
  color: var(--gree-o);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px var(--gree-g);
}
.dash-artist-selector-others {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 16px;
}
.dash-artist-selector-other {
  display: flex;
  align-items: center;
}
.dash-artist-selector-other-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(57,255,20,0.09);
  color: var(--gree-o);
  text-decoration: none;
  box-shadow: 0 0 8px var(--gree-g);
  transition: background 0.17s, color 0.13s;
}
.dash-artist-selector-other-link:hover,
.dash-artist-selector-other-link:focus {
  background: var(--gree-o);
  color: var(--blue-o);
  box-shadow: 0 0 14px var(--gree-g);
  outline: none;
}
.dash-artist-selector-other-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gree-o);
  background: var(--blue-o);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dash-artist-selector-other-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gray-0);
}
.dash-artist-selector-other-name {
  font-size: 1rem;
  color: var(--gree-o);
  font-weight: 500;
}
.dash-artist-selector-other-name:hover {
  color: var(--blue-o);
  outline: none;
}
.dash-artist-selected {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
  margin-top: 0.5rem;
}
.dash-artist-selected-name {
  grid-column: 1/-1;
  font-size: 1.32rem;
  color: var(--pink-o);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.3em;
  border-bottom: 1.5px solid var(--purp-o);
  padding-bottom: 4px;
}
.dash-artist-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.dash-artist-content {
  display: grid;
}
.dash-fans {
  display: flex;
  gap: 1.5rem;
}
.dash-fan {
  background: var(--blue-o);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shad-25);
  display: flex;
  gap: 15px;
  align-items: center;
}
.dash-comments {
  display: grid;
  gap: 1.5rem;
}
.dash-comment {
  background: var(--blue-o);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shad-25);
  display: flex;
  gap: 15px;
  align-items: center;
}
.dash-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-o);
}
.dash-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dash-name {
  color: var(--gree-o);
  font-weight: 700;
  font-size: 1rem;
}
.dash-date {
  color: var(--gray-2);
  font-size: 0.9rem;
}
.dash-comment-text {
  color: var(--gray-3);
  font-size: 1rem;
  width: 100%;
  background-color: var(--blue-d);
  height: 100%;
  text-align: left;
}
.dash-artist-badge {
  background: var(--purp-o);
  color: var(--gray-0);
  padding: 5px 10px;
  border-radius: 12px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.dash-artist-badge:hover {
  background: var(--gree-o);
  color: var(--blue-o);
}
.dash-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--pink-o);
}
.dash-text {
  font-size: 1rem;
  color: var(--gray-3);
}
.dash-artist-alert {
  background: var(--pink-o);
  color: var(--gray-3);
  box-shadow: 0 2px 12px var(--purp-g);
  font-size: 1.12em;
  border: 1.5px solid var(--purp-o);
  border-radius: 12px;
  padding: 16px 19px 12px 16px;
  display: flex;
  flex-direction: column;
}
.dash-artist-stats {
  background: var(--blue-d);
  color: var(--gray-3);
  box-shadow: 0 2px 12px var(--gree-g);
  font-size: 1.12em;
  border: 1.5px solid var(--gree-o);
  border-radius: 12px;
  padding: 16px 19px 12px 16px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.dash-artist-header-item {
  color: var(--gree-o);
  font-weight: 700;
  font-size: 1.07em;
  display: inline;
  margin-right: 0.6em;
}
.dash-nav {
  flex: 1 1 100%;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 14px;
  flex-direction: column;
  background: linear-gradient(95deg, var(--blue-d) 60%, var(--blue-o) 100%);
  box-shadow: 0 2px 12px var(--gree-g);
  border: 1.5px solid var(--gree-o);
}
.dash-nav-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dash-nav-btn {
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  font-weight: 600;
  transition: background 0.23s, transform 0.23s;
  width: 90px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--turq-o);
  color: var(--gray-0);
}
.dash-nav-btn:hover           { background: var(--turq-l); }
.dash-nav-btn-active {
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  color: var(--gray-0);
  font-weight: 600;
  transition: background 0.23s, transform 0.23s;
  width: 90px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-3);
}
.dash-nav-btn-overview {
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  color: var(--gray-0);
  font-weight: 600;
  transition: background 0.23s, transform 0.23s;
  width: 90px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gree-o);
}
.dash-nav-btn-overview:hover  { background: var(--gree-l); }
.dash-nav-btn-back {
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  color: var(--gray-3);
  font-weight: 600;
  transition: background 0.23s, transform 0.23s;
  width: 90px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-0);
}
.dash-nav-btn-back:hover  { color: var(--gray-0); background: var(--gray-3); }
.dash-list {
  background: var(--purp-l);
  padding: 1.5rem;
  border-radius: 14px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 2px 6px var(--shad-25);
}
.dash-song-container .dash-song-body {
  display: none;
}
.dash-song-container.open .dash-song-body {
  display: block;
}
.dash-song-toggle {
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.3em;
  color: var(--gree-o);
}
/* ========== SONG MODULE ========== */
.song {
  background: rgb(26, 26, 26);
  border: 1px solid rgb(51, 51, 51);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.song:hover { box-shadow: 0 0 10px rgba(75, 0, 130, 0.5); }

.so-img,
.so-img-large,
.so-artist {
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 1rem;
  border: 2px solid var(--gree-o);
  transition: transform 0.3s ease;
}
.so-img  { width: 133px;  height: 133px; }
.so-img-large { width: 250px; height: 250px; }
.so-img:hover { transform: scale(1.05); }

.so-artist {
  width: 100px;
  height: 100px;
  border: 2px solid rgb(125, 168, 224);
}

.so-title {
  font-size: 1.2rem;
  color: var(--gree-o);
  margin-bottom: 0.5rem;
}
.so-meta {
  font-size: 0.75rem;
  color: rgb(170, 170, 170);
}
.song-display-title {
  font-size: 2.2rem;
  color: var(--gree-o);
  text-shadow: 0 0 16px var(--gree-g), 0 0 4px var(--blue-o);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.song-display-artist {
  font-size: 1.2rem;
  color: var(--pink-o);
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-shadow: 0 0 8px var(--pink-g);
}
.song-display-cover {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  border: 4px solid var(--gree-o);
  box-shadow: 0 0 32px 6px var(--blue-g), 0 0 6px 1px var(--pink-g);
  margin-bottom: 1rem;
  background: var(--blue-o);
  transition: transform 0.2s, box-shadow 0.3s;
}
.song-display-cover:hover { transform: scale(1.04); box-shadow: 0 0 60px 10px var(--gree-g); }
.song-display-actions {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.song-display-purchase {
  background: linear-gradient(90deg, var(--gray-0), var(--blue-o));
  border: 2px solid var(--pink-o);
  border-radius: 10px;
  margin: 0.5rem 0;
  box-shadow: 0 0 14px var(--pink-g);
  padding: 1rem;
  text-align: center;
}
.song-display-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  background: rgba(0,7,102,0.13);
  border-radius: 10px;
  padding: 16px 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--gray-3);
}
.song-display-info p {
  margin: 0;
  color: var(--turq-o);
  font-weight: 500;
}
.song-display-info p strong {
  color: var(--pink-o);
}
.song-display-audio {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--blue-d), var(--gree-o));
  box-shadow: 0 0 18px 2px var(--gree-g);
  padding: 7px 0 0 0;
}
.song-display-review {
  border-left: 4px solid var(--pink-o);
  background: rgba(34,34,34,0.85);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}
.song-display-cards {
  gap: 1.7rem;
}
.song-display-section {
  margin: 2.2rem 0;
  padding: 2.2rem 1.5rem;
}

/* ========== USER MODULE ========== */
.user {
  background: var(--gray-0);
  border: 1px solid rgb(51, 51, 51);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.user:hover { box-shadow: 0 0 8px var(--gray-g); }

.us-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgb(136, 136, 136);
  margin: 0 auto 1rem;
}
.us-name {
  color: var(--pink-o);
  font-size: 1rem;
  font-weight: bold;
}
.user-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgb(26, 26, 26);
  border-radius: 10px;
  box-shadow: 0 2px 5px var(--shad-25);
}
.user-title {
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
  color: var(--pink-o);
}
.user-body {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(238, 238, 238);
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.user-badge {
  display: inline-block;
  padding: 0.25em 0.9em;
  margin: 0 0.2em 0.2em 0;
  background: rgb(34, 32, 70);
  color: var(--gree-o);
  font-weight: 600;
  border-radius: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.13);
  vertical-align: middle;
  transition: background 0.2s, color 0.2s;
}
.user-badge.admin  { background: rgb(26, 0, 87);  color: var(--pink-o); }
.user-badge.mod    { background: rgb(19, 31, 36); color: var(--turq-o); }
.user-badge.artist { background: var(--blue-o);    color: var(--gree-o); }
.user-badge.user   { background: rgb(34, 32, 70);  color: var(--gray-3); }
.user-badge:not(:last-child) { margin-right: 0.4em; }

.user-label {
  padding: 0.7em 1em;
  background: rgb(34, 34, 34);
  border-radius: 10px;
  color: var(--gray-3);
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7em;
  box-shadow: 0 1px 4px var(--shad-25);
  margin-bottom: 0.5em;
  transition: background 0.2s;
}
.user-label a { margin-left: 0.2em; }
.user-label:hover {
  background: rgb(51, 51, 51);
  color: var(--gree-o);
}
.user-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========== USER DASHBOARD STUFF ========== */
.dash-user-container {
  align-items:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center
}

.dash-user-nav {
  background:linear-gradient(95deg,var(--blue-d) 60%,var(--blue-o) 100%);
  border:1.5px solid var(--gree-o);
  border-radius:8px;
  box-shadow:0 2px 12px var(--gree-g);
  display:flex;
  gap:1rem;
  justify-content:center;
  margin-bottom:20px;
  padding:10px
}
.dash-user-msg {
  background:linear-gradient(96deg,var(--blue-d) 0%,var(--blue-o) 100%);
  border:2px solid var(--purp-o);
  border-radius:12px;
  box-shadow:0 0 14px var(--pink-g),0 2px 10px var(--shad-25);
  color:var(--pink-o);
  font-size:1rem;
  font-weight:700;
  line-height:1.35;
  margin:1.2rem auto;
  max-width:640px;
  padding:1rem 1.4rem;
  text-align:center
}
.dash-user-msg-if-empty {
  background: linear-gradient(96deg,var(--blue-d) 0%,var(--blue-o) 100%);
  border: 2px solid var(--purp-o);
  border-radius: 12px;
  box-shadow: 0 0 14px var(--pink-g),0 2px 10px var(--shad-25);
  color: var(--pink-o);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.2rem auto;
  max-width: 640px;
  padding: 2rem 2.4rem;
  text-align: center;
}
.dash-user-details {
  background:linear-gradient(135deg,var(--blue-d) 10%,var(--blue-o) 100%);
  border:2px solid var(--gree-o);
  border-radius:14px;
  box-shadow:0 3px 18px var(--shad-25),0 0 12px var(--gree-g);
  color:var(--gray-3);
  display:flex;
  flex-direction:column;
  font-size:1rem;
  gap:.6rem;
  margin:0 auto 1.8rem;
  max-width:720px;
  padding:1.6rem 1.9rem;
  width:100%
}
.dash-user-strong{font-weight: bold;}

.dash-user-span {
  color:var(--gree-o);
  display:inline;
  font-weight:600
}

.dash-user-url {
  color:var(--gree-o);
  font-weight:700;
  text-decoration:none;
  transition:color .3s
}
.dash-user-url:hover,
.dash-user-url:focus-visible{
  color:var(--pink-o);
  outline:none;
  text-decoration:underline
}

.dash-user-title {
  color:var(--pink-o);
  font-size:1.8rem;
  font-weight:700;
  margin-bottom:1.6rem;
  text-shadow:0 0 8px var(--pink-g)
}

.dash-user-section {
  align-items:center;
  display:flex;
  flex-direction:column;
  gap:20px;
  justify-content:center;
  width:100%;
  padding: 10px;
}

.dash-user-text-container {
  max-width:700px;
  text-align:center
}

.dash-user-text-title {
  color:var(--gree-o);
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:.05em;
  margin-bottom:.5rem;
  text-transform:uppercase
}

.dash-user-text {
  font-size:1rem;
  line-height:1.45;
  margin-bottom:.3rem
}

.dash-user-form {
  margin-bottom:2rem;
  max-width:420px;
  width:100%
}

.dash-user-form-row{margin-bottom:1.2rem}

.dash-user-label {
  color:var(--gree-o);
  display:block;
  font-weight:700;
  margin-bottom:.4rem
}
.dash-user-list {
  border-radius:10px;
  border-top:1.5px solid var(--purp-o);
  box-shadow:0 0 12px var(--shad-25);
  max-height:320px;
  max-width:620px;
  overflow-y:auto;
  width:100%
}

.dash-user-item {
  align-items:center;
  border-bottom:1px solid var(--blue-d);
  color:var(--gray-3);
  display:flex;
  font-size:1rem;
  gap:1rem;
  justify-content:space-evenly;
  padding:12px 14px
}
.dash-user-item:last-child{border-bottom:none}

.dash-user-status {
  display: inline-block;
  padding: .35rem .9rem;
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 0 6px var(--shad-25);
}
.dash-user-status.good {
  background: var(--gree-l);
  color: var(--blue-o);
  border: 1.5px solid var(--gree-o);
  text-shadow: 0 0 5px var(--gree-g);
}
.dash-user-status.pending {
  background: var(--expl-l);
  color: var(--expl-d);
  border: 1.5px solid var(--expl-o);
  text-shadow: 0 0 5px var(--expl-g);
}
.dash-user-status.bad {
  background: var(--pink-o);
  color: var(--gray-3);
  border: 1.5px solid var(--pink-l);
  text-shadow: 0 0 6px var(--pink-g);
}
.dash-user-status.neutral {
  background: var(--turq-l);
  color: var(--blue-o);
  border: 1.5px solid var(--blue-o);
  text-shadow: none;
}
.dash-user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.dash-user-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dash-user-hero {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 2.5rem;
  width: 100%;
  display: flex;
}
.dash-user-avatar {
  min-width: 100px;
  max-width: 120px;
  border-radius: 50%;
}
.dash-user-hero-main {
  flex: 1;
}

/* ========== LIST ITEMS ========== */
.list {
  gap: 10px;
  display: grid;
  width: 100%;
}
.item {
  background: rgb(26, 26, 26);
  padding: 5px;
  border: 1px solid rgb(51, 51, 51);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
.item:hover { background-color: rgb(34, 34, 34); }
.it-label  { font-weight: bold; color: var(--gree-o); }
.it-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 1px;
}

/* ========== CARDS ========== */
.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: rgb(26, 26, 26);
  border: 1px solid rgb(51, 51, 51);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(75, 0, 130, 0.4);
  transition: box-shadow 0.3s ease;
}
.card:hover { box-shadow: 0 0 12px rgba(75, 0, 130, 0.6); }

/* ========== FORM ELEMENTS ========== */
.gen-form-group {
  max-width: 600px;
  margin: auto;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 2px 4px var(--shad-25);
  width: 100%;
}
.gen-form { margin-bottom: 12px; text-align: left; }
.form     { display: flex; flex-direction: column; gap: 12px; }

.fo-label {
  font-weight: bold;
  color: var(--gree-o);
  margin-bottom: 8px;
}
.fo-small-text {
  font-size: 0.75rem;
  color: rgb(204, 204, 204);
  margin-top: 4px;
}
.fo-input {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-gap {
  display: flex;
  gap: 8px;
}

input,
textarea,
select {
  background: #1a1a1a;
  border: 1.8px solid var(--purp-o);
  border-radius: 10px;
  color: var(--gray-3);
  font-size: 1rem;
  padding: .55rem .75rem;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  box-sizing: border-box;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--gree-o);
  box-shadow: 0 0 5px var(--gree-g);
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  width: 1.3em;
  height: 1.3em;
  accent-color: var(--gree-o);
  background: #1a1a1a;
  border: 1.8px solid var(--purp-o);
  border-radius: 4px;
  box-shadow: 0 0 4px var(--gree-g);
  margin-right: .5em;
  vertical-align: middle;
}
input[type="file"] {
  background: #232323;
  color: var(--pink-o);
  border: 1.8px solid var(--purp-o);
  border-radius: 10px;
  padding: 6px 9px;
  font-size: 1rem;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  box-sizing: border-box;
}
input[type="file"]:focus {
  border-color: var(--gree-o);
  box-shadow: 0 0 5px var(--gree-g);
  outline: none;
}

/* ========== GENERAL COMPONENTS ========== */
.gen-container {
  padding: 1px 5px;
  background: linear-gradient(135deg, var(--blue-o), rgb(26, 26, 26));
  border-radius: 10px;
  margin: 1px;
  text-align: center;
  color: var(--gray-3);
  box-shadow: 0 4px 6px var(--shad-25);
  transition: box-shadow 0.3s ease;
}
.gen-container:hover { box-shadow: 0 6px 8px var(--shad-25); }

.gen-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgb(26, 26, 26);
  border-radius: 10px;
  box-shadow: 0 2px 5px var(--shad-25);
}
.gen-info {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
  color: var(--pink-o);
}
.gen-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(238, 238, 238);
}
.gen-sub-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgb(204, 204, 204);
  margin: 0.5rem 0;
}
.gen-hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, var(--pink-o), var(--gree-o));
  margin: 1.5rem 0;
}

/* ========== GEN SECTION ========== */
.gen-center { display: flex; justify-content: center; align-items: center; }
.gen-flex   { display: flex; flex-wrap: wrap; }
.gen-gap    { display: grid; gap: 1rem; }

.gen-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgb(26, 26, 26), var(--blue-o));
  border-radius: 10px;
  color: var(--gray-3);
  box-shadow: 0 4px 10px var(--shad-50);
  transition: box-shadow 0.3s ease;
}
.gen-section:hover { box-shadow: 0 6px 12px var(--shad-50); }

.gen-section-title {
  color: var(--gree-o);
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.gen-section-text {
  margin-bottom: 1rem;
  color: var(--gree-o);
  font-size: 1rem;
}
.gen-heading   { font-weight: bold; margin-bottom: 1rem; color: var(--gree-o); }
.gen-paragraph { margin-bottom: 1rem; line-height: 1.6; color: rgb(238, 238, 238); }

/* ========== ALERTS / NOTIFICATIONS ========== */
.gen-status-approved { color: var(--gree-o); }
.gen-status-pending  { color: rgb(255, 204, 0); }
.gen-status-rejected { color: var(--pink-o); }

.gen-success,
.gen-warning,
.gen-info-alert,
.auth-error,
.auth-success {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  padding: 1.2rem;
  border-radius: 10px;
  margin: 0;
  font-weight: bold;
  text-align: center;
  z-index: 1000;
}
.gen-success {
  background-color: var(--gree-o);
  color: rgb(21, 87, 36);
  border: 1px solid rgb(50, 205, 50);
}
.gen-warning {
  background-color: var(--pink-o);
  color: var(--gray-3);
  border: 1px solid var(--pink-l);
}
.gen-info-alert {
  background-color: rgb(0, 123, 255);
  color: var(--gray-3);
  border: 1px solid rgb(190, 229, 235);
}
.auth-error {
  background-color: rgba(255, 0, 127, 0.15);
  color: var(--pink-o);
  border: 1px solid var(--pink-o);
}
.auth-success {
  background-color: rgba(50, 205, 50, 0.15);
  color: rgb(50, 205, 50);
  border: 1px solid rgb(195, 230, 203);
}

/* ========== PRODUCTS ========== */
.product {
  background: rgb(22, 23, 40);
  border: 1.5px solid var(--purp-o);
  border-radius: 12px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px var(--shad-25);
  transition: box-shadow 0.23s, border-color 0.2s;
  min-height: 325px;
}

.product:hover {
  box-shadow: 0 4px 20px var(--pink-g), 0 1.5px 12px var(--gree-g);
  border-color: var(--pink-o);
}

.prod-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--turq-o);
  background: #181a1d;
  margin-bottom: 14px;
  box-shadow: 0 0 8px rgba(7,255,232,0.07);
}

.prod-title {
  color: var(--gree-o);
  font-size: 1.16rem;
  font-weight: 700;
  margin: 2px 0 10px 0;
  text-align: center;
  letter-spacing: 0.03em;
}

.prod-meta {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.prod-type {
  background: var(--turq-o);
  color: var(--blue-o);
  font-size: 0.87rem;
  padding: 2px 12px;
  border-radius: 7px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.prod-price {
  color: var(--pink-o);
  font-size: 1.08rem;
  font-weight: 700;
  margin-left: 7px;
  letter-spacing: 0.01em;
}

.star-rating {
  margin-bottom: 10px;
  color: var(--pink-o);
  font-size: 1.22rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-rating .rating-num {
  color: var(--gree-o);
  font-size: 0.97rem;
  font-weight: 700;
  margin-left: 4px;
}

.prod-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.donations-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 50vh;
  overflow-x: auto;
}

.donation-row {
  display: flex;
  flex-direction: column;
  background: #23253a;
  border-radius: 7px;
  padding: 10px 15px;
  box-shadow: 0 0 6px rgba(7,255,232,0.04);
  font-size: 1rem;
}

/* ========== GENERAL PROGRESS ========== */
.progress-bar-wrap {
  margin: 16px 0 6px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.progress-label {
  font-size: 0.95rem;
  color: var(--gree-o);
  margin-top: 2px;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 16px;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.progress-bar-inner {
  height: 100%;
  background: #00ff0d;
  border-radius: 8px;
  width: 0;
  transition: width 0.6s;
}
.progress-bar-inner { width: 0; transition: width 0.6s; }
.progress-pct-0 { width: 0; }
.progress-pct-5 { width: 5%; }
.progress-pct-10 { width: 10%; }
.progress-pct-15 { width: 15%; }
.progress-pct-20 { width: 20%; }
.progress-pct-25 { width: 25%; }
.progress-pct-30 { width: 30%; }
.progress-pct-35 { width: 35%; }
.progress-pct-40 { width: 40%; }
.progress-pct-45 { width: 45%; }
.progress-pct-50 { width: 50%; }
.progress-pct-55 { width: 55%; }
.progress-pct-60 { width: 60%; }
.progress-pct-65 { width: 65%; }
.progress-pct-70 { width: 70%; }
.progress-pct-75 { width: 75%; }
.progress-pct-80 { width: 80%; }
.progress-pct-85 { width: 85%; }
.progress-pct-90 { width: 90%; }
.progress-pct-95 { width: 95%; }
.progress-pct-100 { width: 100%; }

/* ========== BUTTONS ========== */
.btn-bw,
.btn-neon,
.btn-pink,
.btn-turq,
.btn-purp,
.cart-ok {
  display: inline-block;
  padding: 6px 12px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.btn-bw   { background: var(--gray-0); color: var(--gray-3); }
.btn-bw:hover   { filter: brightness(1.2); box-shadow: 0 0 20px 4px var(--gray-g); }
.btn-neon { background: var(--gree-o); color: var(--purp-o); }
.btn-neon:hover { filter: brightness(1.05); box-shadow: 0 0 20px rgba(57, 255, 20, 0.5); }
.btn-pink { background: var(--pink-o); color: var(--turq-o); }
.btn-pink:hover { filter: brightness(1.1); box-shadow: 0 0 20px 4px rgba(255, 0, 127, 0.7); }
.btn-turq { background: var(--turq-o); color: var(--pink-o); }
.btn-turq:hover { filter: brightness(0.9); box-shadow: 0 0 20px 4px var(--turq-g); }
.btn-purp { background: var(--purp-o); color: var(--gree-o); }
.btn-purp:hover { filter: brightness(1.1); box-shadow: 0 0 20px 4px rgba(75, 0, 130, 0.5); }

/* ========== ICON BUTTONS ========== */
.btn-img {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.btn-icon {
  width: 77px;
  height: 77px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid var(--gree-o);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-icon:hover {
  border-color: var(--pink-o);
  box-shadow: 0 0 0 2px rgba(255, 0, 127, 0.3);
}

/* ========== CART / DROPDOWN ========== */
.cart-dropdown-wrapper { position: relative; display: inline-block; }
.cart-popup {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  width: 200px;
  background: var(--blue-o);
  border: 2px solid var(--gree-o);
  border-radius: 10px;
  padding: 0.5rem;
  color: var(--gray-3);
  font-size: 0.85rem;
  z-index: 1000;
}
.cart-popup.hidden { display: none; }

.cart-items   { max-height: 140px; overflow-y: auto; }
.cart-item {
  padding: 0.25rem 0;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-item:hover { background: rgba(255, 0, 127, 0.1); }
.cart-item input {
  margin-right: 0.5rem;
  accent-color: var(--turq-o);
}

.cart-ok {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--gree-o);
  color: var(--blue-o);
}
.cart-ok:hover {
  background: var(--turq-o);
  color: var(--gray-0);
}


/* ========== CART / GENERAL ========== */
.cart-item-title { font-weight: bold; color: var(--gree-o); margin-bottom: 4px; }
.cart-item-type {
  margin-left: 6px;
  padding: 2px 6px;
  background: var(--turq-o);
  color: var(--blue-o);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}
.cart-item-variant {
  margin-left: 4px;
  color: var(--pink-l);
  font-size: 0.75rem;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.cart-item-actions form { margin: 0; }

.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-dec,
.qty-inc {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: var(--pink-o);
  color: var(--gray-3);
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.25s, box-shadow 0.25s;
}
.qty-dec:hover,
.qty-inc:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}
.qty-input {
  width: 48px;
  text-align: center;
  padding: 6px;
  border: 1px solid var(--purp-o);
  border-radius: 6px;
  background: rgb(26, 26, 26);
  color: var(--gray-3);
}

.cart-breakdown {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--blue-d);
  border: 2px solid var(--purp-o);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(75, 0, 130, 0.4);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-3);
}
.cart-line span:first-child { color: var(--gree-o); }
.cart-subtotal {
  font-size: 1.3rem;
  color: var(--gree-o);
  text-align: center;
  margin-bottom: 1rem;
}

/* ========== FILTER ========== */
.filter-container {
  background-color: var(--blue-o);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  color: var(--gray-3);
  margin-bottom: 10px;
}
.filter-group { margin-bottom: 10px; }
.filter-container h4 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--gree-o);
  margin-bottom: 10px;
}
.filter-group h5 {
  font-size: 0.9rem;
  color: var(--pink-o);
  margin-bottom: 5px;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-option {
  padding: 5px 10px;
  background-color: var(--purp-o);
  color: var(--gray-3);
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
  font-size: 0.9rem;
  text-align: center;
}
.filter-option:hover,
.filter-option:focus-visible {
  background-color: var(--gree-o);
  color: var(--gray-0);
  transform: scale(1.05);
  outline: none;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}
.filter-option.active {
  background-color: var(--pink-o);
  box-shadow: 0 0 10px rgba(255, 0, 127, 1);
}

.pivot-sort { display: flex; gap: 16px; margin-bottom: 24px; }
.pivot-sort a { text-decoration: none; color: #39FF14; font-weight: bold; opacity: 0.7; }
.pivot-sort a.active-sort { color: #FFF; opacity: 1; border-bottom: 2px solid #39FF14; }

/* ========== AUTH ========== */
.auth-container {
  background-color: var(--blue-o);
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
  color: var(--gray-3);
}
.content-title {
  font-size: 2rem;
  color: var(--pink-o);
  text-align: center;
  margin-bottom: 30px;
}
.auth-form  { display: flex; flex-direction: column; gap: 20px; }
.auth-field { display: flex; flex-direction: column; }
.auth-field label {
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--pink-o);
}
.auth-text {
  text-align: center;
  margin-top: 15px;
  color: var(--gray-3);
}
.auth-link {
  color: var(--gree-o);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.auth-link:hover,
.auth-link:focus-visible {
  color: var(--pink-o);
  text-decoration: underline;
  outline: none;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .frame       { display: flex; flex-direction: column; padding: 1rem; }
  .left,
  .main,
  .right       { width: 100%; padding: 0; }
  .cards       { grid-template-columns: 1fr; }
  .item        { flex-direction: column; gap: 0.75rem; }
  .it-actions  { flex-wrap: wrap; }
  .art-img,
  .so-artist,
  .us-img      { width: 80px; height: 80px; }
  .btn-bw,
  .btn-neon,
  .btn-pink,
  .btn-turq,
  .btn-purp    { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .left-about,
  .info,
  .art-bio,
  .so-meta     { font-size: 0.75rem; line-height: 1.5; }
  .feet        { font-size: 0.65rem; }
  .dash-content { flex: 1 1 100%; }
  .dash-links   { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .dash-artist-selector-row { flex-direction: column; gap: 18px; padding: 10px 8px; }
  .dash-section { flex-direction: column; }
  .dash-artist  { flex-direction: column; gap: 20px; padding: 18px 10px; }
  .dash-artist-selected {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dash-links   { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .dash-btn, .dash-btn-overview { width: 100%; aspect-ratio: unset; padding: 10px 0; }
  .dash-artist-selector-row { flex-direction: column; gap: 18px; padding: 10px 8px; }
  .dash-section { flex-direction: column; }
  .dash-artist  { flex-direction: column; gap: 20px; padding: 18px 10px; }
}
@media (max-width: 900px) {
  .nav {
    padding: 0;
    background: var(--blue-o);
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
    box-shadow: 0 2px 12px var(--blue-g);
    text-align: center;
    overflow: visible;
  }
  .nav-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: 0 auto 8px auto;
  }
  .nav-logo-img {
    width: 88px;
    height: 88px;
    min-width: 60px;
    min-height: 60px;
    max-width: 22vw;
    max-height: 22vw;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 0 16px var(--gree-g);
  }
  .nav-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 7px;
    overflow-x: auto;
    white-space: nowrap;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto 5px auto;
    padding: 0 1vw;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  .nav-row::-webkit-scrollbar { display: none; }
  .nav-button, .nav-sub-button {
    min-width: 110px;
    max-width: 130px;
    font-size: 1rem;
    padding: 11px 7px;
    margin: 0 1.5px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 6px var(--gree-g);
    background-clip: padding-box;
    white-space: normal;
    line-height: 1.14;
    display: inline-block;
    overflow: hidden;
  }
  .nav-sub-button {
    min-width: 90px;
    max-width: 108px;
    font-size: 0.98rem;
    padding: 8px 5px;
    border-radius: 9px;
  }
  .nav-cart {
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }
}


/* Optional: Better nav row scrolling UX */
.nav-row::-webkit-scrollbar { height: 5px; background: var(--blue-o);}
.nav-row::-webkit-scrollbar-thumb { background: var(--purp-o); border-radius: 3px; }


/* ========== VISUALLY HIDDEN UTILITY ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}




/* ========== ADMIN STUFF ========== */
.sub-nav {
  display: flex;
  gap: 10px;
  padding: 13px 0;
  background: linear-gradient(87deg, var(--blue-d) 85%, var(--purp-o) 100%);
  border-radius: 18px;
  justify-content: center;
  align-items: stretch;
  box-shadow: 0 3px 18px var(--shad-25);
  border: 2px solid var(--purp-o);
  overflow-x: auto;
}

.sub-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 69px;
  border-radius: 14px;
  color: var(--gray-3);
  background: linear-gradient(150deg, var(--gray-0) 90%, var(--blue-d) 100%);
  font-size: 1.12em;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.17s, color 0.18s, box-shadow 0.18s, border-color 0.17s;
  box-shadow: 0 2px 8px var(--shad-25);
  border: 1.6px solid var(--blue-l);
  margin: 0;
  position: relative;
}

.sub-nav-link:focus,
.sub-nav-link:hover {
  background: linear-gradient(112deg, var(--pink-o) 75%, var(--pink-g) 100%);
  color: var(--gray-3);
  box-shadow: 0 3px 18px var(--pink-g), 0 1.5px 14px var(--gree-g);
  border-color: var(--pink-o);
  outline: none;
  z-index: 2;
}

.sub-nav-link i {
  font-size: 1.34em;
  line-height: 1;
  color: var(--gree-o);
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 3px var(--gree-g));
  transition: color 0.18s, filter 0.14s;
}

.sub-nav-link:focus i,
.sub-nav-link:hover i {
  color: var(--gray-3);
  filter: drop-shadow(0 2px 7px var(--pink-g));
}

.sub-nav-link span {
  display: block;
  font-size: 0.93em;
  margin-top: 1px;
  letter-spacing: 0.01em;
  color: var(--gray-2);
  pointer-events: none;
  font-weight: 500;
  transition: color 0.14s;
}

.sub-nav-link:focus span,
.sub-nav-link:hover span {
  color: var(--gray-3);
}
.sub-nav-link-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 69px;
  border-radius: 14px;
  color: var(--blue-o);
  background: linear-gradient(90deg, var(--gree-o) 90%, var(--gree-l) 100%);
  font-size: 1.12em;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
  box-shadow: 0 3px 14px var(--gree-g), 0 2px 12px var(--shad-25);
  border: 1.6px solid var(--gree-o);
  margin: 0;
  position: relative;
  pointer-events: none;
  cursor: default;
  z-index: 3;
}

.sub-nav-link-active i {
  font-size: 1.34em;
  line-height: 1;
  color: var(--blue-o);
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 3px var(--gree-g));
  transition: color 0.18s;
}

.sub-nav-link-active span {
  display: block;
  font-size: 0.93em;
  margin-top: 1px;
  letter-spacing: 0.01em;
  color: var(--blue-o);
  font-weight: 500;
  pointer-events: none;
  transition: color 0.14s;
}
