/* ═══════════════════════════════════════════════════════
   NoChestalkers — Rust Theme · Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

:root {
  --rust-orange: #c0440a;
  --rust-dark:   #1a1008;
  --rust-mid:    #2b1a0e;
  --rust-accent: #e05e1a;
  --rust-glow:   #ff6a1a;
  --rust-text:   #ffffff;
}

/* ── Global ──────────────────────────────────────────── */
html { background: #0a0704; }

body {
  background:
    linear-gradient(160deg, rgba(0,0,0,.96) 0%, rgba(26,16,8,.92) 60%, rgba(192,68,10,.1) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(192,68,10,.025) 60px,
      rgba(192,68,10,.025) 61px
    );
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--rust-text);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* scanlines sutiles en todas las páginas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.06) 3px,
    rgba(0,0,0,.06) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* brillo de fondo inferior */
body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,68,10,.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* todo el contenido visible por encima de los pseudo-elementos */
.navbar { position: relative; z-index: 1030; }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  border-bottom: 1px solid rgba(192,68,10,.35) !important;
}
.navbar-brand {
  color: var(--rust-glow) !important;
  letter-spacing: .02em;
  transition: text-shadow .2s;
}
.navbar-brand:hover {
  text-shadow: 0 0 18px rgba(255,106,26,.55);
}
.navbar .nav-link,
.navbar .navbar-brand {
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--rust-glow) !important;
}

.rust-navbar-toggler {
  border-color: rgba(192,68,10,.45) !important;
  box-shadow: 0 0 0 1px rgba(192,68,10,.12);
}

.rust-navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(192,68,10,.25) !important;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-rust {
  background: var(--rust-orange);
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-rust:hover, .btn-rust:focus {
  background: var(--rust-glow);
  color: #fff;
  box-shadow: 0 0 22px rgba(255,106,26,.4);
  transform: translateY(-2px);
}
.btn-rust-outline {
  background: transparent;
  border: 1.5px solid var(--rust-orange);
  color: var(--rust-text);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .2s, color .2s, transform .15s;
}
.btn-rust-outline:hover, .btn-rust-outline:focus {
  /* background: rgba(192,68,10,.15); */
  color: var(--rust-glow);
  border-color: var(--rust-glow);
  transform: translateY(-2px);
}

/* ── Cards ───────────────────────────────────────────── */
.rust-card {
  background: #110b04;
  border: 1px solid rgba(192,68,10,.25) !important;
  border-radius: 6px !important;
  overflow: hidden;
}
.rust-card-header {
  background: rgba(192,68,10,.08);
  border-bottom: 1px solid rgba(192,68,10,.3);
  padding: 1.3rem 1.5rem;
  position: relative;
}
.rust-card-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rust-orange), transparent);
}

/* ── Form inputs ─────────────────────────────────────── */
.rust-input {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(192,68,10,.3) !important;
  color: #fff !important;
  border-radius: 4px !important;
}
.rust-input:focus {
  background: rgba(255,255,255,.07) !important;
  border-color: var(--rust-orange) !important;
  box-shadow: 0 0 0 3px rgba(192,68,10,.18) !important;
  color: #fff !important;
}
.rust-input::placeholder { color: rgba(212,184,150,.35) !important; }

.form-floating > label                               { color: rgba(212,184,150,.6); }
.form-floating > .rust-input:focus ~ label,
.form-floating > .rust-input:not(:placeholder-shown) ~ label { color: var(--rust-accent); }

.rust-select {
  background-color: rgba(255,255,255,.04) !important;
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c0440a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important; */
  border: 1px solid rgba(192,68,10,.3) !important;
  color: #fff !important;
  border-radius: 4px !important;
}
.rust-select:focus {
  border-color: var(--rust-orange) !important;
  box-shadow: 0 0 0 3px rgba(192,68,10,.18) !important;
  outline: none;
}
.rust-select option { background: #1a1008; color: #fff; }

/* ── Dropdown multi-select ───────────────────────────── */
.rust-collapse-menu {
  background-color: #1a1008;
  border: 1px solid rgba(192,68,10,.3);
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.rust-collapse-menu.open {
  max-height: 400px;
}
.rust-collapse-menu .dropdown-item {
  color: #fff;
  cursor: pointer;
}
.rust-collapse-menu .dropdown-item:hover,
.rust-collapse-menu .dropdown-item:focus {
  background-color: rgba(192,68,10,.15);
  color: #fff;
}
.rust-collapse-menu .dropdown-item input[type="checkbox"] {
  accent-color: var(--rust-orange);
  cursor: pointer;
}
.rust-chevron {
  transition: transform .25s ease;
  font-size: .75rem;
  opacity: .7;
}
.rust-chevron.rotated { transform: rotate(180deg); }

/* ── Input group ─────────────────────────────────────── */
.rust-input-group-text {
  background: rgba(192,68,10,.1);
  border: 1px solid rgba(192,68,10,.3);
  color: var(--rust-text);
}

/* ── Tables ──────────────────────────────────────────── */
.rust-table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(192,68,10,.04);
  --bs-table-hover-bg: rgba(192,68,10,.09);
  --bs-table-color: var(--rust-text);
  --bs-table-border-color: rgba(192,68,10,.14);
}
.rust-table thead th {
  background: rgba(192,68,10,.13);
  color: #fff;
  font-size: .73rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(192,68,10,.4) !important;
  white-space: nowrap;
}
.rust-table tbody tr:hover td { color: #fff; }

/* ── Adaptive action cells ────────────────────────────── */
.rust-table td.action-cell {
  vertical-align: top;
  white-space: normal;
  min-width: 180px;
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: flex-end;
}
.action-buttons .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.action-reply {
  margin-top: .5rem;
  min-width: 220px;
}
.rust-table td {
  vertical-align: middle;
  white-space: normal;
}
.rust-table td.msg-cell {
  max-width: 320px;
  min-width: 160px;
}
.rust-table td.contact-cell {
  min-width: 140px;
}
.rust-table td.dates-cell {
  min-width: 120px;
  white-space: nowrap;
}

/* ── Page wrapper ────────────────────────────────────── */
.rust-page-wrap {
  min-height: calc(100vh - 62px);
  padding: 3rem 0 5rem;
}

/* ── Typography helpers ──────────────────────────────── */
.section-eyebrow {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust-text);
  font-weight: 600;
}
.rust-bar {
  width: 40px;
  height: 3px;
  background: var(--rust-orange);
  border-radius: 2px;
}
.rust-divider {
  border-color: rgba(192,68,10,.25) !important;
}

/* ── Alert ───────────────────────────────────────────── */
.rust-alert-danger {
  background: rgba(220,53,69,.1);
  border: 1px solid rgba(220,53,69,.3);
  border-left: 3px solid #dc3545;
  color: #f87171;
  border-radius: 4px;
  font-size: .875rem;
}
.rust-alert-success {
  background: rgba(46,204,113,.08);
  border: 1px solid rgba(46,204,113,.25);
  border-left: 3px solid #2ecc71;
  color: #86efac;
  border-radius: 4px;
  font-size: .875rem;
}

.rust-admin-alert {
  border: 1px solid rgba(192,68,10,.25);
  background: rgba(17,11,4,.92);
  color: #fff;
}

.maintenance-admin-card {
  border-color: rgba(255,106,26,.28) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.maintenance-admin-status {
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.maintenance-admin-status.is-active {
  background: rgba(220,53,69,.14);
  border: 1px solid rgba(220,53,69,.28);
  color: #ff9a9a;
}

.maintenance-admin-status.is-inactive {
  background: rgba(25,135,84,.14);
  border: 1px solid rgba(25,135,84,.28);
  color: #8de0b6;
}

.maintenance-admin-copy {
  color: rgba(255,255,255,.72);
  max-width: 620px;
}

.maintenance-admin-form {
  flex-shrink: 0;
}

.maintenance-page {
  min-height: 100vh;
  position: relative;
}

.maintenance-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,106,26,.08), transparent 28%),
    radial-gradient(circle at 85% 22%, rgba(255,255,255,.04), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255,106,26,.1), transparent 35%);
  pointer-events: none;
}

.maintenance-container {
  max-width: 1160px;
}

.maintenance-shell {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20,14,9,.98), rgba(11,8,6,.98)),
    radial-gradient(circle at top right, rgba(255,106,26,.08), transparent 34%);
  box-shadow:
    0 30px 80px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.maintenance-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.maintenance-brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255,106,26,.22);
  background: linear-gradient(180deg, rgba(255,106,26,.16), rgba(255,106,26,.06));
  color: #ffb48c;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.maintenance-kicker {
  color: rgba(255,255,255,.56);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

.maintenance-status-inline {
  display: flex;
  align-items: center;
}

.maintenance-badge {
  display: inline-flex;
  align-items: center;
  padding: .55rem .95rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.maintenance-title {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  max-width: 760px;
}

.maintenance-copy {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 720px;
}

.maintenance-copy-muted {
  color: rgba(255,255,255,.58);
  font-size: .98rem;
}

.maintenance-actions {
  margin-top: 1.5rem;
}

.maintenance-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
}

.maintenance-panel-header {
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.maintenance-panel-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.maintenance-panel-subtitle {
  color: rgba(255,255,255,.55);
  font-size: .93rem;
}

.maintenance-panel-list {
  display: grid;
  gap: .9rem;
}

.maintenance-panel-row {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
}

.maintenance-panel-label {
  display: block;
  margin-bottom: .35rem;
  color: rgba(255,255,255,.44);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.maintenance-panel-value {
  color: #fff;
  line-height: 1.55;
  font-size: 1rem;
}

.maintenance-note {
  margin-top: auto;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255,106,26,.15);
  background: rgba(255,106,26,.06);
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

/* ── Auth page bg ────────────────────────────────────── */
.rust-auth-bg {
  /* el fondo lo pone body; esto solo añade el vignette central */
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(192,68,10,.1) 0%, transparent 65%);
}

/* ── Infraction badges ───────────────────────────────── */
.badge-infraction {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .65em;
  border-radius: 3px;
  border: 1px solid;
}
.badge-aimbot        { color: #f87171; border-color: rgba(248,113,113,.4); background: rgba(248,113,113,.08); }
.badge-wallhack      { color: #a78bfa; border-color: rgba(167,139,250,.4); background: rgba(167,139,250,.08); }
.badge-cheto         { color: #f59e0b; border-color: rgba(245,158,11,.4); background: rgba(245,158,11,.08); }
.badge-streamsniping { color: #60a5fa; border-color: rgba(96,165,250,.4);  background: rgba(96,165,250,.08); }
.badge-macros        { color: #fb923c; border-color: rgba(251,146,60,.4);  background: rgba(251,146,60,.08); }
.badge-toxicidad     { color: #4ade80; border-color: rgba(74,222,128,.4);  background: rgba(74,222,128,.08); }
.badge-noclaro       { color: #fbbf24; border-color: rgba(251,191,36,.4);  background: rgba(251,191,36,.08); }
.badge-default       { color: var(--rust-text); border-color: rgba(212,184,150,.3); background: rgba(212,184,150,.06); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #070402 0%, #050302 100%);
  border-top: 1px solid rgba(192,68,10,.2);
  padding: 1.5rem 0 1.2rem;
  position: relative;
}

.footer-shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column-brand {
  max-width: 460px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}

.footer-logo i {
  color: var(--rust-orange);
}

.footer-tagline {
  color: #fff;
  font-size: .75rem;
  line-height: 1.45;
  margin-top: .35rem;
}

.footer-heading {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin: .1rem 0 .55rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  line-height: 1.35;
  transition: color .2s;
}

.footer-list a:hover,
.footer-list a:focus {
  color: #fff;
}

.footer-community-link {
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,106,26,.45);
  padding-bottom: .12rem;
}

.footer-community-link:hover,
.footer-community-link:focus {
  color: #fff;
  border-bottom-color: rgba(255,106,26,.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(192,68,10,.16);
  padding-top: .65rem;
}

.footer-meta {
  color: #fff;
  font-size: .76rem;
  text-align: left;
  line-height: 1.4;
}

  .floating-skulls {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: .07;
    font-size: 18rem;
    color: var(--rust-orange);
    pointer-events: none;
    user-select: none;
    animation: floatSlow 8s ease-in-out infinite;
  }

  @keyframes floatSlow {
    0%, 100% { transform: translateY(-50%) rotate(-5deg); }
    50%       { transform: translateY(-52%) rotate(5deg); }
  }

/* ── Home page ───────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(0,0,0,.92) 0%, rgba(26,16,8,.85) 60%, rgba(192,68,10,.18) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(192,68,10,.04) 60px,
      rgba(192,68,10,.04) 61px
    );
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 110%, rgba(224,94,26,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.08) 3px,
    rgba(0,0,0,.08) 4px
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(192,68,10,.18);
  border: 1px solid var(--rust-orange);
  border-radius: 3px;
  padding: .2rem .8rem;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(3.6rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.02em;
}

.hero-title-mini {
  font-size: .55em;
  color: #fff;
  text-shadow: none;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--rust-text);
  max-width: 540px;
}

.hero-live-note {
  font-size: .8rem;
}

.home-page .hero-section {
  padding-bottom: 8.5rem;
}

.home-page .site-footer {
  margin-top: -3.6rem;
  background:
    linear-gradient(180deg, rgba(13,9,6,0) 0%, rgba(13,9,6,.92) 38%, #070402 100%),
    repeating-linear-gradient(45deg, transparent, transparent 58px, rgba(192,68,10,.03) 58px, rgba(192,68,10,.03) 59px);
  border-top: 0;
  padding-top: 3.2rem;
  position: relative;
  z-index: 2;
}

.home-page .site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 880px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,68,10,.45), transparent);
}

.stats-bar {
  background: rgba(192,68,10,.1);
  border-top: 1px solid rgba(192,68,10,.3);
  border-bottom: 1px solid rgba(192,68,10,.3);
  padding: 1.5rem 0;
  backdrop-filter: blur(6px);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--rust-glow);
  text-shadow: 0 0 12px rgba(255,106,26,.4);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -.03em;
}

.stat-item .stat-label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rust-text);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(192,68,10,.35);
}

.about-section {
  background: #0d0906;
  padding: 6rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.feature-card {
  background: linear-gradient(135deg, #1c1007 0%, #110b04 100%);
  border: 1px solid rgba(192,68,10,.25);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color .25s, transform .2s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rust-orange), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.feature-card:hover {
  border-color: var(--rust-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(192,68,10,.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(192,68,10,.15);
  border: 1px solid rgba(192,68,10,.35);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rust-text);
  margin-bottom: 1.2rem;
}

.feature-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.feature-card p {
  color: var(--rust-text);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.how-section {
  background: linear-gradient(180deg, #0d0906 0%, #12080400 100%), #0a0704;
  padding: 6rem 0;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(192,68,10,.15);
  border: 1.5px solid var(--rust-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--rust-text);
  flex-shrink: 0;
}



.step-text {
  color: var(--rust-text);
  font-size: .9rem;
  margin-bottom: 0;
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rust-orange), transparent);
  margin: 0 auto;
  opacity: .4;
}

.warning-banner {
  background: linear-gradient(135deg, rgba(192,68,10,.12), rgba(192,68,10,.06));
  border: 1px solid rgba(192,68,10,.4);
  border-left: 4px solid var(--rust-orange);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.warning-icon {
  font-size: 1.2rem;
}

.warning-copy {
  color: var(--rust-text);
  font-size: .9rem;
}

.cta-section {
  background: linear-gradient(135deg, #1a1008 0%, #0d0906 50%, rgba(192,68,10,.08) 100%);
  border-top: 1px solid rgba(192,68,10,.2);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,26,.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-highlight {
  color: var(--rust-glow);
}

.cta-description {
  color: var(--rust-text);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46,204,113,.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(46,204,113,0);
  }
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 3px;
  border: 1px solid;
}

.tag-aimbot {
  color: #ff4d4d;
  border-color: rgba(255,77,77,.4);
  background: rgba(255,77,77,.08);
}

.tag-wh {
  color: #f0a500;
  border-color: rgba(240,165,0,.4);
  background: rgba(240,165,0,.08);
}

.tag-esp {
  color: #4db8ff;
  border-color: rgba(77,184,255,.4);
  background: rgba(77,184,255,.08);
}

.tag-macro {
  color: #c084fc;
  border-color: rgba(192,132,252,.4);
  background: rgba(192,132,252,.08);
}

.tag-grief {
  color: #fb923c;
  border-color: rgba(251,146,60,.4);
  background: rgba(251,146,60,.08);
}

.tag-toxic {
  color: #86efac;
  border-color: rgba(134,239,172,.4);
  background: rgba(134,239,172,.08);
}

/* ── Personas list page ──────────────────────────────── */
.list-page-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.list-page-subtitle {
  color: var(--rust-text);
  font-size: .88rem;
}

.list-row-id {
  color: rgba(212,184,150,.5);
  font-size: .8rem;
}

.list-row-steamid {
  color: #fff;
  font-size: .87rem;
}

.btn-rust-danger-outline {
  background: rgba(220,53,69,.12);
  border: 1px solid rgba(220,53,69,.3);
  color: #f87171;
}

.list-empty-icon {
  font-size: 2rem;
  color: rgba(192,68,10,.4);
}

.list-empty-text {
  color: rgba(212,184,150,.4);
}

.list-table {
  min-width: 760px;
}

.list-table thead th,
.list-table tbody td {
  white-space: nowrap;
}

.list-mobile-stack {
  display: grid;
  gap: .75rem;
}

.list-mobile-card {
  background: linear-gradient(135deg, rgba(26,16,8,.9), rgba(17,11,4,.96));
  border: 1px solid rgba(192,68,10,.25);
  border-radius: 6px;
  padding: .9rem;
}

.list-mobile-label {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(212,184,150,.7);
}

.list-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.list-mobile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: flex-start;
}

.list-mobile-badges .badge-infraction {
  white-space: normal;
  overflow-wrap: anywhere;
}

.list-mobile-actions .btn {
  flex: 1 1 auto;
}

.users-table {
  min-width: 920px;
}

.users-table thead th,
.users-table tbody td {
  white-space: nowrap;
}

.users-mobile-stack {
  display: grid;
  gap: .75rem;
}

.users-mobile-card {
  background: linear-gradient(135deg, rgba(26,16,8,.9), rgba(17,11,4,.96));
  border: 1px solid rgba(192,68,10,.25);
  border-radius: 6px;
  padding: .9rem;
}

.users-mobile-label {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(212,184,150,.7);
}

.users-mobile-id {
  color: rgba(212,184,150,.5);
  font-size: .78rem;
  font-family: monospace;
}

.users-mobile-form {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.contact-table {
  min-width: 1180px;
}

.contact-table thead th {
  white-space: nowrap;
}

.contact-mobile-stack {
  display: grid;
  gap: .75rem;
}

.contact-mobile-card {
  background: linear-gradient(135deg, rgba(26,16,8,.9), rgba(17,11,4,.96));
  border: 1px solid rgba(192,68,10,.25);
  border-radius: 6px;
  padding: .9rem;
}

.contact-mobile-label {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(212,184,150,.7);
}

.contact-mobile-id {
  color: rgba(212,184,150,.5);
  font-size: .78rem;
  font-family: monospace;
}

.contact-mobile-row {
  margin-bottom: .55rem;
}

.contact-mobile-mail {
  font-size: .82rem;
  color: var(--rust-glow);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-mobile-message {
  color: var(--rust-text);
  font-size: .86rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.contact-mobile-meta {
  font-size: .8rem;
  color: rgba(212,184,150,.7);
}

.contact-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .2rem;
}

.contact-mobile-actions form {
  flex: 1 1 48%;
}

.contact-mobile-btn {
  width: 100%;
}

.contact-mobile-reply textarea {
  min-height: 72px;
}

/* ── Avatar ──────────────────────────────────────────── */
.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rust-glow);
}

.profile-avatar-wrapper {
  display: flex;
  justify-content: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rust-glow);
}

.profile-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rust-mid);
  border: 3px solid rgba(192,68,10,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,.35);
}

.profile-avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rust-glow);
}

.profile-avatar-placeholder-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--rust-mid);
  border: 3px solid rgba(192,68,10,.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.35);
}

/* ── Shared form/auth helpers ────────────────────────── */
.rust-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(192,68,10,.12);
  border: 1px solid rgba(192,68,10,.35);
  border-radius: 50%;
}

.rust-icon-circle i {
  font-size: 1.5rem;
  color: var(--rust-glow);
  text-shadow: 0 0 14px rgba(255,106,26,.5);
}

.rust-heading-icon {
  color: var(--rust-glow);
}

.rust-help-text {
  color: rgba(212,184,150,.5);
  font-size: .75rem;
}

.rust-field-label {
  color: var(--rust-text);
  font-size: .85rem;
}

.rust-field-label-icon {
  color: var(--rust-orange);
}

.rust-id-chip {
  font-family: monospace;
  color: rgba(212,184,150,.5);
  font-size: .8rem;
}

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

.rust-link-accent {
  color: var(--rust-glow);
  font-weight: 700;
  text-decoration: none;
}

.rust-profile-tabs {
  border-bottom: 1px solid rgba(192,68,10,.3);
  gap: .45rem;
  padding-bottom: .4rem;
  flex-wrap: nowrap;
  display: flex;
}

.rust-profile-tabs .nav-item {
  flex: 1 1 0;
  min-width: 0;
}

.rust-profile-tabs .nav-link {
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(192,68,10,.22);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  padding: .45rem .35rem;
}

.rust-profile-tabs .nav-link:hover,
.rust-profile-tabs .nav-link:focus {
  color: #fff;
  border-color: rgba(192,68,10,.5);
  background: rgba(192,68,10,.12);
}

.rust-profile-tabs .nav-link.active {
  color: #fff;
  background: rgba(192,68,10,.16);
  border-color: var(--rust-orange);
  box-shadow: inset 0 -2px 0 var(--rust-glow);
}

/* ── Responsive: tablet y mobile ────────────────────── */
@media (max-width: 991.98px) {
  body::after {
    width: 520px;
    height: 220px;
    bottom: -70px;
  }

  .rust-page-wrap {
    min-height: calc(100vh - 58px);
    padding: 2.2rem 0 3.2rem;
  }

  .navbar .navbar-brand {
    font-size: .98rem;
    max-width: 78vw;
    overflow-wrap: anywhere;
    white-space: normal;
    line-height: 1.2;
  }

  .navbar .nav-link {
    white-space: normal;
  }

  .navbar .navbar-collapse {
    margin-top: .7rem;
    padding: .35rem 0 0;
    border-top: 1px solid rgba(192,68,10,.26);
    background: transparent;
    box-shadow: none;
  }

  .rust-mobile-menu .navbar-nav {
    gap: 0;
  }

  .rust-mobile-menu .nav-item + .nav-item {
    border-top: 1px solid rgba(192,68,10,.18);
  }

  .rust-mobile-menu .nav-link {
    display: flex;
    align-items: center;
    min-height: 46px;
    border: 0;
    border-left: 2px solid transparent;
    border-radius: 0;
    padding: .62rem .35rem .62rem .65rem;
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: .01em;
    transition: border-color .2s, color .2s, padding-left .2s;
  }

  .rust-mobile-menu .nav-link:hover,
  .rust-mobile-menu .nav-link:focus {
    border-left-color: rgba(255,106,26,.75);
    color: #fff !important;
    padding-left: .78rem;
  }

  .rust-nav-account {
    margin-top: .35rem;
    padding-top: .45rem;
    border-top: 1px solid rgba(192,68,10,.26);
  }

  .rust-nav-account .nav-avatar {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }

  .rust-nav-account .nav-user-link,
  .rust-nav-account .nav-logout-link {
    justify-content: flex-start;
  }

  .hero-section {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 4.4rem;
  }

  .home-page .hero-section {
    padding-bottom: 7.4rem;
  }

  .home-page .site-footer {
    margin-top: -2.8rem;
    padding-top: 2.6rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .footer-column-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: .45rem 1rem;
  }

  .hero-sub {
    font-size: .98rem;
    max-width: 100%;
  }

  .stats-bar {
    padding: 1.15rem 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: .4rem 0;
  }

  .stat-item .stat-number {
    font-size: 1.65rem;
  }

  .about-section,
  .how-section,
  .cta-section {
    padding: 4.4rem 0;
  }

  .feature-card {
    padding: 1.5rem 1.2rem;
  }

  .action-buttons {
    justify-content: flex-start;
  }

  .action-reply {
    min-width: 0;
    width: 100%;
  }

  .rust-table td.action-cell {
    min-width: 220px;
  }

  .rust-table td.msg-cell {
    min-width: 230px;
  }

  .maintenance-admin-form {
    width: 100%;
  }

  .maintenance-admin-form .btn {
    width: 100%;
  }

  .maintenance-shell {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .maintenance-title {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .maintenance-copy {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  body {
    background-attachment: scroll;
  }

  body::after {
    width: 360px;
    height: 180px;
    bottom: -55px;
  }

  .rust-page-wrap {
    min-height: calc(100vh - 56px);
    padding: 1.6rem 0 2.6rem;
  }

  .hero-section {
    padding-top: 5.9rem;
    padding-bottom: 3.2rem;
  }

  .home-page .hero-section {
    padding-bottom: 5.6rem;
  }

  .home-page .site-footer {
    margin-top: -2.1rem;
    padding-top: 2rem;
    padding-bottom: 1.6rem;
  }

  .footer-shell {
    gap: .8rem;
    align-items: center;
  }

  .footer-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: .95rem;
  }

  .footer-column,
  .footer-column-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-heading {
    margin-bottom: .45rem;
  }

  .footer-list {
    gap: .38rem;
  }

  .footer-list a,
  .footer-community-link {
    font-size: .74rem;
  }

  .footer-tagline,
  .footer-meta {
    line-height: 1.45;
    font-size: .74rem;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-list a,
  .footer-community-link,
  .footer-heading {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(192,68,10,.16);
    padding-top: .55rem;
    align-items: center;
    flex-direction: column;
    gap: .2rem;
  }

  .hero-badge {
    font-size: .62rem;
    letter-spacing: .18em;
    padding: .2rem .55rem;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 1.1;
  }

  .hero-sub {
    font-size: .92rem;
  }

  .hero-live-note {
    font-size: .74rem;
  }

  .about-section,
  .how-section,
  .cta-section {
    padding: 3.2rem 0;
  }

  .section-title {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .warning-banner {
    padding: 1rem .95rem;
  }

  .badge-infraction,
  .tag-badge {
    font-size: .66rem;
    letter-spacing: .05em;
  }

  .rust-profile-tabs {
    flex-wrap: wrap;
    gap: .35rem;
  }

  .rust-profile-tabs .nav-item {
    flex: 1 1 calc(50% - .2rem);
  }

  .rust-profile-tabs .nav-link {
    font-size: .68rem;
    padding: .42rem .3rem;
  }

  .profile-avatar,
  .profile-avatar-placeholder {
    width: 70px;
    height: 70px;
  }

  .profile-avatar-preview,
  .profile-avatar-placeholder-lg {
    width: 84px;
    height: 84px;
  }

  .list-page-title {
    font-size: 1.25rem;
  }

  .list-page-subtitle {
    font-size: .82rem;
  }

  .list-table {
    min-width: 0;
  }

  .users-table {
    min-width: 0;
  }

  .contact-table {
    min-width: 0;
  }

  .rust-card {
    border-radius: 5px !important;
  }

  .rust-card .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
  }

  .rust-card .input-group > .input-group-text,
  .rust-card .input-group > .form-control,
  .rust-card .input-group > .btn {
    width: 100%;
    border-radius: 4px !important;
  }

  .rust-card .input-group > .btn {
    padding-top: .62rem;
    padding-bottom: .62rem;
  }

  .table-responsive {
    border-radius: 0 0 6px 6px;
  }

  .rust-table {
    min-width: 640px;
  }

  .list-mobile-card .btn {
    white-space: nowrap;
  }

  .rust-table .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .35rem;
  }

  .rust-table td form.d-flex.align-items-center.gap-2 {
    flex-wrap: wrap;
    align-items: stretch !important;
  }

  .rust-table td form.d-flex.align-items-center.gap-2 .form-select {
    width: 100% !important;
    min-width: 0 !important;
  }

  .rust-table td.contact-cell a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .rust-table thead th {
    font-size: .68rem;
    letter-spacing: .08em;
    padding-top: .65rem;
    padding-bottom: .65rem;
  }

  .action-buttons {
    gap: .3rem;
  }

  .site-footer {
    padding: 1.35rem 0;
  }

}

@media (max-width: 575.98px) {
  .container,
  .container-fluid {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .navbar .navbar-brand {
    font-size: .93rem;
  }

  .rust-mobile-menu .nav-link {
    min-height: 44px;
    font-size: .88rem;
    padding: .6rem .2rem .6rem .55rem;
  }

  .btn-rust,
  .btn-rust-outline,
  .btn-rust-danger-outline {
    font-size: .78rem;
  }

  .rust-card-header {
    padding: 1rem .95rem;
  }

  .rust-card.p-4,
  .rust-card.p-5,
  .rust-card .p-4,
  .rust-card .p-5,
  .rust-card .p-3 {
    padding-left: .85rem !important;
    padding-right: .85rem !important;
  }

  .rust-card .form-floating > .rust-input,
  .rust-card .form-select {
    font-size: .93rem;
  }

  .rust-card .form-floating > label {
    font-size: .88rem;
  }

  .rust-alert-danger,
  .rust-alert-success {
    font-size: .82rem;
  }

  .floating-skulls {
    display: none !important;
  }

  .home-page .hero-section {
    padding-bottom: 4.8rem;
  }

  .home-page .site-footer {
    margin-top: -1.6rem;
    padding-top: 1.7rem;
    padding-bottom: 1.2rem;
  }

  .footer-logo {
    font-size: .9rem;
  }

  .footer-tagline {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-tagline,
  .footer-meta {
    font-size: .7rem;
  }

  .footer-heading {
    font-size: .64rem;
  }

  .footer-list a,
  .footer-community-link {
    font-size: .71rem;
  }

  .footer-meta {
    max-width: 100%;
  }
}

/* =============================================
   SKINS PAGE
   ============================================= */

.skins-page {
  min-height: 100vh;
  background: var(--rust-dark);
}

/* --- Weekly Store Section --- */
.skins-store-section {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, rgba(192, 68, 10, .12) 0%, transparent 100%);
  border-bottom: 1px solid rgba(192, 68, 10, .25);
}

.skins-store-header {
  margin-bottom: 2rem;
}

.store-live-badge {
  display: inline-block;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(135deg, var(--rust-orange), var(--rust-accent));
  border-radius: 50px;
  margin-bottom: .75rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 106, 26, .3); }
  50% { box-shadow: 0 0 20px rgba(255, 106, 26, .6); }
}

.skins-store-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rust-glow);
  text-shadow: 0 0 20px rgba(255, 106, 26, .3);
  margin: .5rem 0 .25rem;
}

.skins-store-subtitle {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  margin: 0;
}

.skins-store-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.skins-store-scroll::-webkit-scrollbar {
  height: 6px;
}

.skins-store-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 3px;
}

.skins-store-scroll::-webkit-scrollbar-thumb {
  background: var(--rust-orange);
  border-radius: 3px;
}

/* --- Skin Card --- */
.skin-card {
  flex: 0 0 200px;
  background: var(--rust-mid);
  border: 1px solid rgba(192, 68, 10, .2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.skin-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust-glow);
  box-shadow: 0 8px 30px rgba(255, 106, 26, .2);
  color: inherit;
  text-decoration: none;
}

.skin-card-weekly {
  flex: 0 0 210px;
}

.skin-card-img-wrap {
  position: relative;
  background: rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 160px;
}

.skin-card-img-wrap img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
  transition: transform .3s;
}

.skin-card:hover .skin-card-img-wrap img {
  transform: scale(1.08);
}

.skin-price-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--rust-orange), var(--rust-accent));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.skin-drop-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #9146ff, #6441a5);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.skin-card-info {
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
}

.skin-card-name {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skin-type-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 600;
  color: var(--rust-glow);
  background: rgba(255, 106, 26, .12);
  border: 1px solid rgba(255, 106, 26, .25);
  padding: .1rem .5rem;
  border-radius: 50px;
}

.skin-card-creator {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- Error Message --- */
.skins-error-msg {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  padding: 2rem;
  font-size: .95rem;
}

.skins-error-msg i {
  color: var(--rust-accent);
  margin-right: .5rem;
}

/* --- Browse Section --- */
.skins-browse-section {
  padding: 2.5rem 0 4rem;
}

.skins-browse-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.skins-browse-title i {
  color: var(--rust-glow);
  margin-right: .5rem;
}

/* --- Search & Controls --- */
.skins-controls {
  margin-bottom: 1.5rem;
}

.skins-search-wrap {
  position: relative;
  margin-bottom: 1rem;
  max-width: 500px;
}

.skins-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .35);
  font-size: .85rem;
  pointer-events: none;
}

.skins-search-input {
  width: 100%;
  padding: .65rem 1rem .65rem 2.5rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(192, 68, 10, .25);
  border-radius: 8px;
  color: #fff;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.skins-search-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.skins-search-input:focus {
  outline: none;
  border-color: var(--rust-glow);
  box-shadow: 0 0 12px rgba(255, 106, 26, .2);
}

/* --- Category Bar --- */
.skins-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .5rem;
  padding-bottom: .5rem;
}

.skin-cat-btn {
  padding: .35rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.skin-cat-btn i {
  margin-right: .3rem;
  font-size: .72rem;
}

.skin-cat-btn:hover {
  color: #fff;
  border-color: rgba(255, 106, 26, .4);
  background: rgba(255, 106, 26, .1);
}

.skin-cat-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--rust-orange), var(--rust-accent));
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(255, 106, 26, .3);
}

/* --- Results Info --- */
.skins-results-info {
  color: rgba(255, 255, 255, .4);
  font-size: .82rem;
  margin-bottom: 1rem;
}

/* --- Browse Grid --- */
.skins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
}

.skins-empty-msg {
  color: rgba(255, 255, 255, .4);
  text-align: center;
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  font-size: .95rem;
}

/* --- Loading --- */
.skins-loading {
  text-align: center;
  padding: 3rem 1rem;
}

.skins-loading p {
  color: rgba(255, 255, 255, .4);
  margin-top: .75rem;
  font-size: .9rem;
}

/* --- Responsive Skins --- */
@media (max-width: 991.98px) {
  .skins-store-title {
    font-size: 1.6rem;
  }

  .skin-card, .skin-card-weekly {
    flex: 0 0 175px;
  }

  .skins-grid {
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .skins-store-section {
    padding: 1.5rem 0 2rem;
  }

  .skins-store-title {
    font-size: 1.3rem;
  }

  .skin-card, .skin-card-weekly {
    flex: 0 0 155px;
  }

  .skin-card-img-wrap {
    min-height: 120px;
    padding: .75rem;
  }

  .skin-card-img-wrap img {
    max-height: 100px;
  }

  .skins-grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: .75rem;
  }

  .skins-browse-section {
    padding: 1.5rem 0 3rem;
  }

  .skin-cat-btn {
    font-size: .72rem;
    padding: .3rem .65rem;
  }
}