/* ========================
   GUNSETS.GG — MAIN CSS
   guns.lol × emoji.gg fusion
   ======================== */

:root {
  --bg: #0a0a0a;
  --bg-1: #0f0f0f;
  --bg-2: #111111;
  --bg-3: #151515;
  --bg-4: #1a1a1a;
  --border: #191919;
  --border-2: #202020;
  --border-3: #252525;
  --text: #fafafa;
  --text-2: #c8c8c8;
  --text-3: #888888;
  --text-4: #555555;
  --accent: #9c57b3;
  --accent-dim: #9c57b35d;
  --accent-border: #854a995d;
  --accent-hover: #9c57b379;
  --accent-2: #b36fd4;
  --glow: 0 2px 16px rgba(156,87,179,.3);
  --radius-sm: 10px;
  --radius: 15px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font: 'Satoshi', sans-serif;
  --transition: 0.25s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { color-scheme: dark; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 3px; }
::selection { background: var(--accent); color: #fff; }

/* ========================
   NAVBAR — full → pill on scroll
   ======================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  /* start: no padding so nav-inner fills full width */
  padding: 0 0;
  background: transparent;
  /* smooth the padding itself */
  transition: padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* when scrolled, add the gap around the pill */
.navbar.scrolled {
  padding: 10px 1.5rem;
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1rem;

  /* full-width bar look at top */
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid transparent;
  border-bottom-color: var(--border-2);
  border-radius: 0;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  box-shadow: none;

  /* animate ALL the shape/color props */
  transition:
    max-width       0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius   0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background      0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color    0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow      0.45s cubic-bezier(0.4, 0, 0.2, 1),
    height          0.45s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* pill state once scrolled */
.navbar.scrolled .nav-inner {
  max-width: 1400px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: rgba(17, 17, 17, 0.88);
  border-color: var(--border-2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.03) inset;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-logo svg { color: var(--accent-2); }
.logo-dot { color: var(--accent-2); }

.nav-search-wrap { flex: 1; max-width: 520px; }

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-4);
  pointer-events: none;
}

.nav-search input {
  width: 100%;
  background: var(--bg-2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px 8px 36px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.nav-search input:hover,
.nav-search input:focus {
  border-color: var(--accent-border);
  background: var(--bg-3);
}

.nav-search input::placeholder { color: var(--text-4); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Guns.lol style buttons */
.btn-upload {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius-pill);
  color: var(--text);
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-upload:hover { background: var(--accent-hover); box-shadow: 0 2px 16px rgba(156,87,179,.3); }
.btn-upload:active { transform: translateY(2px); }

.btn-signin {
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text);
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-signin:hover { background: var(--bg-4); border-color: var(--border-3); }
.btn-signin:active { transform: translateY(2px); }

/* User menu in nav */
.nav-user {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--bg-2);
  cursor: pointer;
  transition: var(--transition);
}

.nav-user:hover { border-color: var(--border-2); background: var(--bg-3); }

.nav-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-4);
}

.nav-username {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  z-index: 200;
}

.nav-user:hover .nav-dropdown { display: flex; flex-direction: column; }

.nav-dropdown a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-2);
  transition: var(--transition);
}

.nav-dropdown a:hover { background: var(--bg-3); color: var(--text); }

.nav-dropdown hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

/* ========================
   HERO
   ======================== */

.hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 87, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 87, 179, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(156, 87, 179, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-accent {
  color: var(--accent-2);
}

.hero-sub {
  font-size: 15.5px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero-stat span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stat label {
  font-size: 11.5px;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ========================
   BROWSE LAYOUT
   ======================== */

.browse-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
  gap: 1.5rem;
  align-items: flex-start;
}

/* ========================
   SIDEBAR
   ======================== */

.sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-section { display: flex; flex-direction: column; gap: .4rem; }

.sidebar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-4);
  padding: 0 4px;
  margin-bottom: 2px;
}

.category-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-3);
  border: 2px solid transparent;
  background: transparent;
  transition: var(--transition);
}

.cat-item svg { flex-shrink: 0; opacity: .7; }

.cat-item:hover {
  background: var(--bg-2);
  color: var(--text-2);
  border-color: var(--border);
}

.cat-item.active {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(156,87,179,.15);
}

.cat-item.active svg { opacity: 1; }

.sort-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sort-btn {
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  text-align: left;
  transition: var(--transition);
}

.sort-btn:hover {
  background: var(--bg-2);
  color: var(--text-2);
  border-color: var(--border);
}

.sort-btn.active {
  background: var(--bg-3);
  border-color: var(--border-2);
  color: var(--text);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-3);
  border: 2px solid transparent;
  transition: var(--transition);
}

.sidebar-link:hover {
  background: var(--bg-2);
  color: var(--text-2);
  border-color: var(--border);
}

/* ========================
   GRID SECTION
   ======================== */

.grid-section { flex: 1; min-width: 0; }

.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.result-count {
  font-size: 12.5px;
  color: var(--text-4);
}

/* The asset grid */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

@keyframes shimmer {
  from { background-position: -400px 0; }
  to { background-position: 400px 0; }
}

.asset-skeleton {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease infinite;
}

/* Asset card */
.asset-card {
  background: var(--bg-2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.asset-card:hover {
  border-color: var(--border-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(156,87,179,.08);
}

.asset-card:active { transform: translateY(0); }

.asset-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--bg-3);
  transition: transform .35s ease;
}

.asset-card:hover .asset-thumb { transform: scale(1.03); }

/* Different aspect ratios per category */
.asset-card[data-cat="backgrounds"] .asset-thumb,
.asset-card[data-cat="banners"] .asset-thumb { aspect-ratio: 16/9; }
.asset-card[data-cat="cursors"] .asset-thumb { aspect-ratio: 1; background: var(--bg-4); }

.asset-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.asset-card:hover .asset-overlay { opacity: 1; }

.asset-cat-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10,10,10,.7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-3);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.asset-card:hover .asset-cat-badge { opacity: 1; }

.asset-info {
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,.03);
}

.asset-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.asset-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-uploader {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-4);
}

.asset-uploader img {
  width: 14px; height: 14px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-4);
}

.asset-downloads {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  color: var(--text-4);
}

.load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

.btn-load-more {
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text-2);
  padding: 9px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-load-more:hover { background: var(--bg-3); border-color: var(--border-3); color: var(--text); }
.btn-load-more:active { transform: translateY(2px); }

/* ========================
   MODAL
   ======================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  transform: translateY(12px) scale(.97);
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: var(--transition);
}

.modal-close:hover { background: var(--bg-4); color: var(--text); }
.modal-close:active { transform: scale(.93); }

.modal-preview {
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 480px;
}

.modal-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-meta { display: flex; flex-direction: column; gap: 6px; }

.modal-meta h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.modal-cat {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent-2);
  width: fit-content;
}

.modal-uploader {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-3);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
}

.modal-uploader img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-4);
}

.modal-by { font-size: 11px; color: var(--text-4); display: block; }
.modal-username { font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.modal-username:hover { color: var(--accent-2); }

.modal-stats-row {
  display: flex;
  gap: 1rem;
  font-size: 12.5px;
  color: var(--text-4);
}

.modal-stats-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.modal-tag {
  background: var(--bg-3);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 3px 9px;
  font-size: 11.5px;
  color: var(--text-3);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
}

/* Guns.lol button styles for modal */
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--accent-dim);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius-pill);
  color: #fafafa;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
}

.btn-download:hover { background: var(--accent-hover); box-shadow: 0 2px 16px rgba(156,87,179,.3); }
.btn-download:active { transform: translateY(3px); }

.btn-like {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text-2);
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
}

.btn-like:hover { background: var(--bg-4); border-color: var(--border-3); }
.btn-like:active { transform: translateY(3px); }
.btn-like.liked { color: #e06c8f; border-color: rgba(224,108,143,.3); }

.btn-copy-url {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text-2);
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
}

.btn-copy-url:hover { background: var(--bg-4); border-color: var(--border-3); }
.btn-copy-url:active { transform: translateY(3px); }

/* ========================
   FOOTER
   ======================== */

.footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-4);
  margin-top: 6px;
}

.footer-brand .nav-logo { font-size: 1rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-4);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--text-2); }

/* ========================
   AUTH PAGE SHARED
   ======================== */

.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-box {
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: 18px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-logo .nav-logo {
  font-size: 1.3rem;
  justify-content: center;
}

.auth-tabs {
  display: flex;
  background: var(--bg-3);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-bottom: 1.5rem;
}

.auth-tab {
  flex: 1;
  padding: 7px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
}

.auth-tab.active {
  background: var(--bg-2);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.auth-form { display: flex; flex-direction: column; gap: .75rem; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding-left: 3px;
}

.form-input {
  background: var(--bg-1);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-input:hover,
.form-input:focus { border-color: var(--border-2); background: var(--bg-2); }

.form-input::placeholder { color: var(--text-4); }

.btn-primary {
  background: var(--accent-dim);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius-pill);
  color: #fafafa;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: .25rem;
}

.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { transform: translateY(3px); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: .25rem 0;
  color: var(--text-4);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text-2);
  padding: 9px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-oauth:hover { background: var(--bg-4); border-color: var(--border-3); color: var(--text); }
.btn-oauth:active { transform: translateY(3px); }

.btn-oauth img { width: 18px; height: 18px; }

.auth-error {
  background: rgba(220, 60, 60, .15);
  border: 2px solid rgba(220, 60, 60, .2);
  border-radius: var(--radius);
  color: #e08080;
  padding: 10px 14px;
  font-size: 13.5px;
  display: none;
}

.auth-error.show { display: block; }

/* ========================
   UPLOAD PAGE
   ======================== */

.upload-page {
  max-width: 700px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3rem;
}

.upload-page h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--text);
}

.upload-page .page-sub {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 2rem;
}

.upload-box {
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dropzone {
  border: 2px dashed var(--border-3);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone:hover { border-color: var(--accent); background: rgba(156,87,179,.04); }
.dropzone.drag-over { border-color: var(--accent); background: rgba(156,87,179,.08); }

.dropzone-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: flex;
  justify-content: center;
  color: var(--text-4);
}

.dropzone p {
  font-size: 14px;
  color: var(--text-3);
}

.dropzone span {
  font-size: 12.5px;
  color: var(--text-4);
  display: block;
  margin-top: 4px;
}

.upload-preview-img {
  max-height: 220px;
  border-radius: var(--radius);
  margin: .5rem auto 0;
  object-fit: contain;
}

.cat-select-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.cat-select-btn {
  border: 2px solid var(--border-2);
  background: var(--bg-3);
  border-radius: var(--radius);
  padding: 8px 4px;
  color: var(--text-3);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cat-select-btn svg { opacity: .6; }
.cat-select-btn:hover { border-color: var(--border-3); color: var(--text-2); }
.cat-select-btn:hover svg { opacity: .9; }
.cat-select-btn.selected { background: var(--accent-dim); border-color: var(--accent-border); color: var(--text); }
.cat-select-btn.selected svg { opacity: 1; }

/* Tags input */
.tags-input-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background: var(--bg-1);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 10px;
  transition: var(--transition);
  min-height: 42px;
  align-items: center;
}

.tags-input-wrap:focus-within { border-color: var(--border-2); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--text-2);
}

.tag-pill button {
  background: none;
  border: none;
  color: var(--text-4);
  padding: 0;
  line-height: 1;
  font-size: 13px;
  transition: color .15s;
}

.tag-pill button:hover { color: var(--text); }

.tags-input {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 13.5px;
  outline: none;
  flex: 1;
  min-width: 80px;
}

/* ========================
   PROFILE PAGE
   ======================== */

.profile-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.profile-header-card {
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.profile-banner {
  height: 140px;
  background: linear-gradient(135deg, #1a0a24 0%, #120a1a 50%, #0d0a14 100%);
  position: relative;
}

.profile-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(156,87,179,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(156,87,179,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.profile-info-row {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-top: -36px;
  position: relative;
  z-index: 1;
}

.profile-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-2);
  background: var(--bg-4);
  flex-shrink: 0;
}

.profile-text { flex: 1; }

.profile-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.profile-text p {
  font-size: 13px;
  color: var(--text-4);
  margin-top: 2px;
}

.profile-uploads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

/* ========================
   TOAST NOTIFICATION
   ======================== */

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--text-2);
  z-index: 9999;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  transform: translateY(12px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), opacity .3s;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-color: rgba(100, 200, 120, .3); color: #84c896; }
.toast.error { border-color: rgba(220, 80, 80, .3); color: #e08080; }

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 900px) {
  .browse-layout { flex-direction: column; }
  .sidebar { width: 100%; position: static; flex-direction: row; flex-wrap: wrap; gap: .75rem; }
  .category-nav { flex-direction: row; flex-wrap: wrap; }
  .cat-item { flex-direction: row; }
  .sidebar-section { flex: 1; min-width: 200px; }
}

@media (max-width: 640px) {
  .nav-search-wrap { display: none; }
  .nav-inner { gap: .5rem; }
  .hero { padding: 2.5rem 1rem 2rem; }
  .hero-stats { gap: 1rem; }
  .asset-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
  .modal { grid-template-columns: 1fr; }
  .modal-preview { border-right: none; border-bottom: 1px solid var(--border); border-radius: 16px 16px 0 0; }
  .cat-select-row { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; }
}

/* ========================
   EMPTY STATE
   ======================== */

.empty-state {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-4);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.empty-state svg { opacity: .3; }

/* Page transition */
.page-fade {
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   EDIT PROFILE MODAL ADDITIONS
   ======================== */

/* Secondary button style (for Cancel) */
.btn-secondary {
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text-2);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--bg-4);
  border-color: var(--border-3);
  color: var(--text);
}

.btn-secondary:active {
  transform: translateY(2px);
}

/* Edit modal specific overrides / enhancements */
.modal-overlay .modal:has(#editModalClose) {
  max-width: 460px;
}

/* Edit avatar preview */
#editAvatarPreview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-border);
  background: var(--bg-3);
  transition: border-color 0.2s;
}

#editAvatarPreview:hover {
  border-color: var(--accent);
}

/* Compact dropzone inside edit modal */
#avatarDropzone {
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-1);
  border-radius: var(--radius);
  border: 2px dashed var(--border-3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

#avatarDropzone:hover {
  border-color: var(--accent);
  background: rgba(156, 87, 179, 0.04);
}

#chooseAvatarBtn {
  background: var(--bg-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  transition: var(--transition);
}

#chooseAvatarBtn:hover {
  background: var(--bg-4);
  border-color: var(--border-2);
  color: var(--text);
}

/* Edit modal action buttons row */
.modal-actions {
  display: flex;
  flex-direction: row !important;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 1rem;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
  flex: 0 0 auto;
  min-width: 100px;
}

/* Better spacing inside edit modal */
#editModalOverlay .modal {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}

#editModalOverlay .modal h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}

#editModalOverlay .modal-close {
  top: 12px;
  right: 12px;
}

/* Form group inside edit modal */
#editModalOverlay .form-group {
  margin-bottom: 0;
}

#editModalOverlay .form-label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
}

/* Error message inside edit modal */
#editError {
  margin: 0;
  padding: 8px 12px;
  font-size: 12.5px;
  background: rgba(220, 60, 60, 0.1);
  border-radius: var(--radius-sm);
  display: none;
}

#editError.show {
  display: block;
}

/* Responsive for smaller screens */
@media (max-width: 500px) {
  .modal-overlay .modal {
    padding: 1rem;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn-primary,
  .modal-actions .btn-secondary {
    width: 100%;
  }
}

/* ========================
   ROLE BADGES & ADMIN STYLES
   ======================== */

.role-badge {
  display: inline-block;
  background: rgba(156, 87, 179, 0.2);
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--accent-2);
  margin-top: 4px;
}

.role-badge.owner {
  background: rgba(196, 160, 46, 0.2);
  border-color: #c4a02e;
  color: #e6b83e;
}

.role-badge.admin {
  background: rgba(46, 110, 196, 0.2);
  border-color: #2e6ec4;
  color: #5c9eff;
}

.role-badge.staff {
  background: rgba(108, 108, 108, 0.2);
  border-color: #6c6c6c;
  color: #aaa;
}

/* Delete button (red variant) */
.btn-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(220, 60, 60, 0.1);
  border: 2px solid rgba(220, 60, 60, 0.3);
  border-radius: var(--radius-pill);
  color: #e08080;
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
  cursor: pointer;
}

.btn-delete:hover {
  background: rgba(220, 60, 60, 0.2);
  border-color: #e08080;
  color: #ff9090;
}

.btn-delete:active {
  transform: translateY(2px);
}

/* Admin panel modal (used by browse.js) */
.modal-overlay .modal .form-group {
  margin-bottom: 1rem;
}

.modal-overlay .modal select.form-input {
  appearance: none;
  background: var(--bg-1);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
}

.modal-overlay .modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 1rem;
}

/* ==============================================================
   UI FIXES - Add these overrides to the very bottom of main.css
   ============================================================== */

/* 1. FIX MODAL BUTTONS - makes them horizontal and properly sized */
.modal-actions {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: auto;
}

.modal-actions .btn-download {
  flex: 2;
  min-width: 120px;
}

.modal-actions .btn-like,
.modal-actions .btn-copy-url {
  flex: 1;
  min-width: 80px;
}

.modal-actions .btn-like svg,
.modal-actions .btn-copy-url svg {
  margin-right: 4px;
}

/* Delete button gets the same treatment if present */
.modal-actions .btn-delete {
  flex: 1;
  min-width: 80px;
}

/* 2. BIGGER NAV BUTTONS - makes them look much cleaner */
.btn-upload, .btn-signin {
  padding: 10px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* 3. BETTER GRID SPACING - gives thumbnails some breathing room */
.asset-grid {
  gap: 16px !important;
}

.asset-title {
  font-size: 14px !important;
  font-weight: 600 !important;
}

.asset-meta {
  margin-top: 4px;
}

.asset-stats span {
  font-size: 12px;
  margin-left: 6px;
}

/* 4. SIDEBAR POLISH - more breathing room for categories */
.cat-item {
  padding: 10px 14px !important;
  font-size: 14px !important;
}

.sort-btn {
  padding: 10px 14px !important;
  font-size: 14px !important;
}

/* 5. MODAL CONTENT ALIGNMENT - better vertical rhythm */
.modal-info {
  gap: 1.25rem !important;
}

.modal-stats-row {
  margin: 4px 0;
}

.modal-uploader {
  padding: 12px 14px;
}

.modal-tags {
  margin-top: 4px;
}

/* ================================================================
   GUNSETS.GG — EXTENDED COMPONENT LIBRARY
   Inspired by guns.lol source patterns + marketplace features
   ================================================================ */

/* ========================
   AUTOFILL FIX (guns.lol pattern)
   ======================== */

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-box-shadow: inset 0 0 0 30px #0c0c0c !important;
  -webkit-text-fill-color: #cacaca !important;
  -webkit-background-clip: text;
}

/* ========================
   ENHANCED BUTTON GLOWS
   ======================== */

/* Stronger glow on primary/download hover — matches guns.lol feel */
.btn-primary:hover,
.btn-download:hover {
  background: var(--accent-hover);
  box-shadow: 0 2px 20px rgba(156, 87, 179, 0.4), 0 0 0 1px rgba(156, 87, 179, 0.15);
}

/* Upload button in nav gets same treatment */
.btn-upload:hover {
  box-shadow: 0 2px 20px rgba(156, 87, 179, 0.4), 0 0 0 1px rgba(156, 87, 179, 0.15);
}

/* ========================
   PRICE BADGE — for paid assets
   ======================== */

.price-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(10, 10, 10, 0.82);
  border: 1.5px solid rgba(156, 87, 179, 0.45);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.02em;
  pointer-events: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.price-badge.free {
  color: #63c97a;
  border-color: rgba(99, 201, 122, 0.35);
}

/* ========================
   VERIFIED / CREATOR BADGE
   ======================== */

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(156, 87, 179, 0.12);
  border: 1.5px solid rgba(156, 87, 179, 0.3);
  border-radius: var(--radius-pill);
  padding: 2px 8px 2px 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
  vertical-align: middle;
}

.verified-badge svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* ========================
   SWITCH TOGGLE — guns.lol pattern
   ======================== */

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 26px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: opacity 0.12s ease;
  flex-shrink: 0;
}

.switch[data-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

.switch-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background-color: #181818;
  border: 2px solid #212121;
  transition: background 0.15s ease, border-color 0.15s ease;
  display: inline-block;
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #555;
  transition: left 0.15s ease, background 0.15s ease;
  pointer-events: none;
}

.switch-input:checked + .switch-track {
  background-color: var(--accent);
  border-color: var(--accent);
}

.switch-input:checked + .switch-track .switch-thumb {
  background-color: #fff;
  left: calc(100% - 20px);
}

/* Row layout for switch + label */
.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.switch-row-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.switch-row-label span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

.switch-row-label small {
  font-size: 12px;
  color: var(--text-4);
}

/* ========================
   POPOVER / TOOLTIP — guns.lol style
   ======================== */

.popover-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popover {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  z-index: 99999;
  background-color: #111;
  border: 2px solid #1a1a1a;
  border-radius: 14px;
  padding: 11px 14px;
  width: max-content;
  max-width: min(88vw, 340px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s cubic-bezier(0.25, 0.9, 0.35, 1),
              transform 0.22s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.popover[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.popover-wrap:hover .popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ========================
   ACCORDION — guns.lol FAQ style
   ======================== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.accordion-item {
  background-color: #101010;
  border: 2px solid #151515;
  border-radius: 17px;
  transition: border-color 0.16s ease, background 0.16s ease;
  overflow: hidden;
}

.accordion-item[data-open="true"],
.accordion-item[data-open="true"]:hover {
  border-color: #212121;
  background: #121212;
}

.accordion-item:hover {
  background-color: rgba(218, 105, 255, 0.06);
  border-color: rgba(218, 105, 255, 0.14);
}

.accordion-control {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text);
  text-align: left;
  outline: none;
}

.accordion-control::after {
  content: '';
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-4);
  border-bottom: 2px solid var(--text-4);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-item[data-open="true"] .accordion-control::after {
  transform: rotate(-135deg);
}

.accordion-panel {
  border-top: 1px solid transparent;
  transition: border-color 0.16s ease;
  display: none;
}

.accordion-item[data-open="true"] .accordion-panel {
  display: block;
  border-top-color: rgba(255, 255, 255, 0.04);
}

.accordion-content {
  padding: 10px 18px 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.65;
}

/* ========================
   STEPPER — upload / onboarding
   ======================== */

.stepper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.stepper-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  position: relative;
  width: 100%;
}

.stepper-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 6px;
  min-width: 0;
}

/* connector line between steps */
.stepper-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(45px + 10px);
  right: calc(-10px);
  height: 2px;
  background: var(--border-2);
}

.stepper-step[data-status="complete"]:not(:last-child)::after {
  background: rgba(65, 185, 49, 0.5);
}

.stepper-indicator {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-3);
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  transition: border 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.stepper-indicator[data-status="current"] {
  background-color: #242424;
  border-color: #363636;
  color: var(--text);
}

.stepper-indicator[data-status="complete"] {
  background-color: rgba(65, 185, 49, 0.2);
  border-color: rgba(65, 185, 49, 0.45);
  color: #7de87a;
}

.stepper-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}

.stepper-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stepper-desc {
  font-size: 11.5px;
  color: var(--text-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .stepper-steps { display: none; }
}

/* ========================
   ENHANCED ASSET CARD HOVER
   ======================== */

.asset-card:hover {
  border-color: rgba(156, 87, 179, 0.28);
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(156, 87, 179, 0.1),
    0 0 20px rgba(156, 87, 179, 0.06);
}

/* ========================
   ENHANCED TOAST — guns.lol style
   ======================== */

.toast {
  min-width: 240px;
  max-width: min(22rem, calc(100% - 3rem));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.success {
  border-color: rgba(65, 185, 49, 0.3);
  background: rgba(19, 19, 19, 0.92);
  color: #7de87a;
}

.toast.error {
  border-color: rgba(220, 60, 60, 0.3);
  background: rgba(19, 19, 19, 0.92);
  color: #e08080;
}

/* ========================
   NOTIFICATION PANEL — locale/announcement style
   ======================== */

.notice-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(22rem, calc(100% - 2rem));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-radius: 16px;
  background: rgba(19, 19, 19, 0.88);
  border: 2px solid rgba(24, 24, 24, 0.95);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  color: var(--text);
  z-index: 60;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.85, 0.25, 1),
              opacity 0.3s ease;
}

.notice-panel.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .notice-panel {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
    box-sizing: border-box;
  }
}

.notice-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.notice-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.75);
  margin: 0;
}

.notice-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
}

.notice-btn-primary {
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  background-color: var(--accent-dim);
  border: 2px solid var(--accent-border);
  color: #fafafa;
  transition: 0.25s;
}

.notice-btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 2px 16px rgba(156, 87, 179, 0.3);
}

.notice-btn-secondary {
  border: 2px solid #1b1b1b;
  background-color: #131313;
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  color: var(--text-2);
  transition: 0.25s;
}

.notice-btn-secondary:hover {
  background-color: #1b1b1b;
  color: var(--text);
}

.notice-dismiss {
  margin-top: 2px;
  border: none;
  background: transparent;
  color: rgba(250, 250, 250, 0.55);
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
  padding: 0;
  transition: 0.2s;
}

.notice-dismiss:hover {
  color: rgba(250, 250, 250, 0.85);
}

/* ========================
   PRICING TIER CARDS — marketplace
   ======================== */

.pricing-card {
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, rgba(156, 87, 179, 0.06) 0%, var(--bg-2) 60%);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dim);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-pill);
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-price-currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 4px;
}

.pricing-price-period {
  font-size: 13px;
  color: var(--text-4);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-2);
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(99, 201, 122, 0.15);
  border: 1.5px solid rgba(99, 201, 122, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2363c97a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-features li.disabled {
  color: var(--text-4);
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  background-color: transparent;
  border-color: var(--border-2);
  background-image: none;
}

/* ========================
   CREATOR STATS ROW — profile page
   ======================== */

.creator-stats {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 2px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.creator-stat {
  flex: 1;
  background: var(--bg-2);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  transition: background 0.2s;
}

.creator-stat:hover { background: var(--bg-3); }

.creator-stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.creator-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================
   FILTER CHIPS — horizontal scrollable row
   ======================== */

.filter-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-chips::-webkit-scrollbar { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: var(--font);
}

.filter-chip:hover {
  background: var(--bg-3);
  border-color: var(--border-3);
  color: var(--text-2);
}

.filter-chip.active {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(156, 87, 179, 0.15);
}

.filter-chip svg { flex-shrink: 0; opacity: 0.75; }
.filter-chip.active svg { opacity: 1; }

/* ========================
   COLOR SWATCH PICKER — asset color filter
   ======================== */

.color-swatch-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}

.color-swatch:hover {
  transform: scale(1.15);
}

.color-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

/* ========================
   ENHANCED SHIMMER SKELETON
   ======================== */

@keyframes shimmer-enhanced {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.asset-skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-2) 0%,
    var(--bg-3) 30%,
    rgba(156, 87, 179, 0.05) 50%,
    var(--bg-3) 70%,
    var(--bg-2) 100%
  );
  background-size: 1200px 100%;
  animation: shimmer-enhanced 1.8s ease-in-out infinite;
}

/* ========================
   PAYMENT / CHECKOUT CARD
   ======================== */

.checkout-card {
  background-color: #101010;
  border: 2px solid #161616;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}

.checkout-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #fafafa;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.checkout-header p {
  font-size: 14.5px;
  font-weight: 450;
  color: #939393;
  margin: 4px 0 0;
}

.payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-method {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 13px;
  border-radius: var(--radius);
  background-color: #151515;
  border: 2px solid #1b1b1b;
  cursor: pointer;
  font-family: var(--font);
  transition: 0.25s;
}

.payment-method h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fafafa;
}

.payment-method:hover {
  background-color: rgba(126, 44, 139, 0.15);
  border-color: rgba(126, 44, 139, 0.35);
}

.payment-method.selected {
  background-color: rgba(126, 44, 139, 0.2);
  border-color: rgba(126, 44, 139, 0.6);
}

.btn-pay {
  background-color: rgba(126, 44, 139, 0.38);
  border: 2px solid rgba(126, 44, 139, 0.48);
  border-radius: var(--radius-pill);
  color: #fafafa;
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}

.btn-pay:hover {
  background-color: rgba(126, 44, 139, 0.5);
  box-shadow: 0 2px 20px rgba(126, 44, 139, 0.35);
}

.btn-pay:active { transform: translateY(3px); }

/* ========================
   ASSET REPORT / ERROR BADGE
   ======================== */

.error-banner {
  background-color: rgba(255, 0, 0, 0.12);
  border: 2px solid rgba(255, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #e88080;
  font-size: 13.5px;
  width: 100%;
  box-sizing: border-box;
}

/* ========================
   DIVIDER WITH LABEL
   ======================== */

.divider-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.25rem 0;
}

.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ========================
   SKELETON TEXT LINES — for profile/card loading
   ======================== */

.skel-line {
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--bg-3) 0%,
    var(--bg-4) 50%,
    var(--bg-3) 100%
  );
  background-size: 600px 100%;
  animation: shimmer-enhanced 1.8s ease-in-out infinite;
  height: 12px;
}

.skel-line.w-full { width: 100%; }
.skel-line.w-3-4  { width: 75%; }
.skel-line.w-1-2  { width: 50%; }
.skel-line.w-1-4  { width: 25%; }
.skel-line.h-sm   { height: 10px; }
.skel-line.h-lg   { height: 18px; }
.skel-line.round  { border-radius: 50%; width: 36px; height: 36px; }

/* ========================
   GRID VIEW TOGGLE — list vs grid
   ======================== */

.view-toggle {
  display: flex;
  background: var(--bg-3);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2px;
  gap: 2px;
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--text-4);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.view-toggle-btn:hover { background: var(--bg-4); color: var(--text-3); }

.view-toggle-btn.active {
  background: var(--bg-2);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ========================
   LIST VIEW MODE — asset-grid override
   ======================== */

.asset-grid.list-view {
  grid-template-columns: 1fr;
  gap: 6px;
}

.asset-grid.list-view .asset-card {
  display: flex;
  flex-direction: row;
  border-radius: var(--radius-sm);
}

.asset-grid.list-view .asset-thumb {
  width: 64px;
  min-width: 64px;
  height: 64px;
  aspect-ratio: unset;
  border-radius: 8px 0 0 8px;
}

.asset-grid.list-view .asset-info {
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  border-top: none;
  border-left: 1px solid rgba(255,255,255,.03);
}

.asset-grid.list-view .asset-overlay { display: none; }
.asset-grid.list-view .asset-cat-badge { display: none; }

/* ========================
   RESPONSIVE ADDITIONS
   ======================== */

@media (max-width: 640px) {
  .filter-chips { padding-bottom: 2px; }
  .creator-stats { flex-wrap: wrap; }
  .pricing-card.featured::before { font-size: 10px; }
  .notice-panel { right: 1rem; bottom: 1rem; }
}

/* Floating notification pills – below navbar */
.gs-notification-container {
  position: fixed;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.navbar.scrolled + .gs-notification-container,
body:has(.navbar.scrolled) .gs-notification-container {
  top: 70px;
}
.gs-notification-pill {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  font-size: 14px;
  font-weight: 500;
  color: #eee;
}
.gs-notification-pill:hover {
  background: rgba(25, 25, 25, 0.9);
  border-color: rgba(156, 87, 179, 0.3);
}
.gs-notification-message {
  max-width: 400px;
  word-break: break-word;
}
.gs-notification-dismiss {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 40px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
}
.gs-notification-dismiss:hover {
  background: rgba(255, 80, 80, 0.3);
  color: white;
}
.gs-owner-panel {
  margin: 24px 0 20px;
  background: #0c0c0c;
  border: 2px solid #1e1e1e;
  border-radius: 24px;
  padding: 18px;
}
.gs-owner-panel-header {
  font-weight: 600;
  color: #c265e0;
  margin-bottom: 12px;
}
.gs-owner-panel textarea {
  width: 100%;
  background: #151515;
  border: 2px solid #252525;
  border-radius: 14px;
  padding: 10px;
  color: white;
  font-family: inherit;
  resize: vertical;
}
.gs-owner-panel input {
  background: #151515;
  border: 2px solid #252525;
  border-radius: 30px;
  padding: 8px 12px;
  color: white;
}
.gs-owner-panel button {
  background: #7e2c8b63;
  border: 2px solid #7e2c8b7c;
  border-radius: 40px;
  padding: 8px 18px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.gs-owner-panel button:hover {
  background: #7e2c8b9c;
}
@media (max-width: 768px) {
  .gs-notification-container { top: 75px; width: 90%; }
  .navbar.scrolled + .gs-notification-container { top: 65px; }
  .gs-notification-pill { padding: 8px 16px; font-size: 13px; }
  .gs-notification-message { max-width: 260px; }
}

/* Floating notification pills – below navbar */
.gs-notification-container {
  position: fixed;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.navbar.scrolled + .gs-notification-container,
body:has(.navbar.scrolled) .gs-notification-container {
  top: 70px;
}
.gs-notification-pill {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  font-size: 14px;
  font-weight: 500;
  color: #eee;
}
.gs-notification-pill:hover {
  background: rgba(25, 25, 25, 0.9);
  border-color: rgba(156, 87, 179, 0.3);
}
.gs-notification-message {
  max-width: 400px;
  word-break: break-word;
}
.gs-notification-dismiss {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 40px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
}
.gs-notification-dismiss:hover {
  background: rgba(255, 80, 80, 0.3);
  color: white;
}
.gs-owner-panel {
  margin: 24px 0 20px;
  background: #0c0c0c;
  border: 2px solid #1e1e1e;
  border-radius: 24px;
  padding: 18px;
}
.gs-owner-panel-header {
  font-weight: 600;
  color: #c265e0;
  margin-bottom: 12px;
}
.gs-owner-panel textarea {
  width: 100%;
  background: #151515;
  border: 2px solid #252525;
  border-radius: 14px;
  padding: 10px;
  color: white;
  font-family: inherit;
  resize: vertical;
}
.gs-owner-panel input {
  background: #151515;
  border: 2px solid #252525;
  border-radius: 30px;
  padding: 8px 12px;
  color: white;
}
.gs-owner-panel button {
  background: #7e2c8b63;
  border: 2px solid #7e2c8b7c;
  border-radius: 40px;
  padding: 8px 18px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.gs-owner-panel button:hover {
  background: #7e2c8b9c;
}
@media (max-width: 768px) {
  .gs-notification-container { top: 75px; width: 90%; }
  .navbar.scrolled + .gs-notification-container { top: 65px; }
  .gs-notification-pill { padding: 8px 16px; font-size: 13px; }
  .gs-notification-message { max-width: 260px; }
}

/* Notification container – sits directly below navbar, same width/centering */
.gs-notification-container {
  position: fixed;
  top: calc(70px + 12px);  /* navbar height (approx 70px) + small gap */
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

/* When navbar scrolls (class .scrolled), navbar shrinks */
.navbar.scrolled + .gs-notification-container,
body:has(.navbar.scrolled) .gs-notification-container {
  top: calc(60px + 12px); /* adjust if scrolled navbar is shorter */
}

/* Each pill – exact copy of navbar pill style */
.gs-notification-pill {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;          /* same as navbar */
  padding: 10px 24px;           /* same horizontal padding as navbar */
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  font-size: 14px;
  font-weight: 500;
  color: #eee;
  transition: all 0.2s ease;
  white-space: nowrap;          /* keeps pill from wrapping awkwardly */
}

/* For longer messages, allow wrapping on mobile */
@media (max-width: 768px) {
  .gs-notification-pill {
    white-space: normal;
    padding: 8px 18px;
    max-width: 100%;
  }
  .gs-notification-message {
    word-break: break-word;
  }
}

.gs-notification-pill:hover {
  background: rgba(25, 25, 25, 0.9);
  border-color: rgba(156, 87, 179, 0.3);
}

.gs-notification-message {
  max-width: 400px;
  word-break: break-word;
}

/* Dismiss button – matches navbar close style if any */
.gs-notification-dismiss {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 40px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
  margin-left: 8px;
}

.gs-notification-dismiss:hover {
  background: rgba(255, 80, 80, 0.3);
  color: white;
}

/* Owner panel unchanged */
.gs-owner-panel {
  margin: 24px 0 20px;
  background: #0c0c0c;
  border: 2px solid #1e1e1e;
  border-radius: 24px;
  padding: 18px;
}
.gs-owner-panel-header {
  font-weight: 600;
  color: #c265e0;
  margin-bottom: 12px;
}
.gs-owner-panel textarea {
  width: 100%;
  background: #151515;
  border: 2px solid #252525;
  border-radius: 14px;
  padding: 10px;
  color: white;
  font-family: inherit;
  resize: vertical;
}
.gs-owner-panel input {
  background: #151515;
  border: 2px solid #252525;
  border-radius: 30px;
  padding: 8px 12px;
  color: white;
}
.gs-owner-panel button {
  background: #7e2c8b63;
  border: 2px solid #7e2c8b7c;
  border-radius: 40px;
  padding: 8px 18px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.gs-owner-panel button:hover {
  background: #7e2c8b9c;
}