/* ============================================================
   NO WIPE – CSS Principal | Tema Survival
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-dark: #922b21;
  --red-glow: rgba(192, 57, 43, 0.35);
  --bg: #080808;
  --bg-2: #0e0e0e;
  --bg-card: #111111;
  --bg-card-2: #161616;
  --border: #1f1f1f;
  --border-red: #3d1010;
  --text: #e0e0e0;
  --text-2: #aaaaaa;
  --text-3: #666666;
  --success: #27ae60;
  --warning: #f39c12;
  --info: #2980b9;
  --rust-color: #cd6133;
  --scum-color: #2ecc71;
  --font-main: 'Exo 2', sans-serif;
  --font-title: 'Rajdhani', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: .2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--red-bright);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red);
}

img {
  max-width: 100%;
  display: block;
}

/* ── Particles container ──────────────────────────────────── */
#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.container--sm {
  max-width: 860px;
}

.container--lg {
  max-width: 1440px;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(8, 8, 8, 0.8);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border-red);
  box-shadow: 0 2px 24px rgba(192, 57, 43, .15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  margin-top: 14px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 16px var(--red-glow);
}

.navbar__logo span {
  color: var(--red-bright);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.navbar__nav a {
  padding: 6px 14px;
  border-radius: var(--radius);
  color: var(--text-2);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.navbar__nav a.active {
  color: var(--red-bright);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.navbar__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.navbar__user:hover {
  border-color: var(--red);
}

.navbar__user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--red);
}

.navbar__user span {
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ── Mobile Nav ───────────────────────────────────────────── */
@media (max-width: 860px) {

  .navbar__nav,
  .navbar__actions .btn--outline {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar__inner {
    justify-content: space-between;
  }

  .navbar__actions {
    gap: 8px;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(8, 8, 8, .97);
    z-index: 99;
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-red);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 14px 16px;
    color: var(--text-2);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
  }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn--red:hover {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 6px 28px rgba(231, 76, 60, .45);
  transform: translateY(-1px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--red-bright);
  border: 1px solid var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--text-3);
  color: #fff;
}

.btn--green {
  background: linear-gradient(135deg, #27ae60, #1e8449);
  color: #fff;
  box-shadow: 0 4px 20px rgba(39, 174, 96, .3);
}

.btn--green:hover {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
}

.btn--steam {
  background: #1b2838;
  color: #c6d4df;
  border: 1px solid #2a475e;
}

.btn--steam:hover {
  background: #2a475e;
  color: #fff;
}

.btn--sm {
  padding: 7px 14px;
  font-size: .8rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--xl {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

.btn[disabled],
.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(192, 57, 43, .18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 100% 100%, rgba(192, 57, 43, .08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #0a0404 100%);
  z-index: 0;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 57, 43, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0 100px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(192, 57, 43, .15);
  border: 1px solid rgba(192, 57, 43, .35);
  border-radius: 40px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--red-bright);
  text-shadow: 0 0 40px rgba(231, 76, 60, .5);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero__stat span {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
}

.hero__stat p {
  font-size: .8rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: float-scroll 2s ease infinite;
  z-index: 2;
}

.hero__scroll i {
  font-size: 1rem;
}

@keyframes float-scroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section--dark {
  background: var(--bg-2);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.15;
}

.section__title span {
  color: var(--red-bright);
}

.section__desc {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.card--featured {
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.card__body {
  padding: 24px;
}

.card__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-card-2);
}

/* ── Server Cards ─────────────────────────────────────────── */
.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  position: relative;
}

.server-card:hover {
  border-color: var(--border-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
}

.server-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.server-card__game-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.server-card__game-bar--scum {
  background: linear-gradient(90deg, var(--scum-color), #1a8a4a);
}

.server-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 10px;
}

.server-card__name {
  font-weight: 700;
  font-size: .93rem;
  color: #fff;
  line-height: 1.3;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 6px;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  padding-right: 72px;
  animation: srv-marquee 20s linear infinite;
}

@keyframes srv-marquee {

  0%,
  10% {
    transform: translateX(0);
  }

  90%,
  100% {
    transform: translateX(-50%);
  }
}

.server-card__body {
  padding: 0 20px 18px;
}

.server-card__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.server-card__info-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
}

.server-card__info-item label {
  display: block;
  font-size: .65rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}

.server-card__info-item span {
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}

.server-card__players-bar {
  margin-top: 14px;
}

.server-card__players-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--text-3);
  margin-bottom: 6px;
}

.server-card__players-label span {
  color: #fff;
  font-weight: 700;
}

.progress {
  height: 4px;
  background: var(--bg-card-2);
  border-radius: 10px;
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  border-radius: 10px;
  transition: width .5s ease;
}

.progress__fill--green {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.progress__fill--orange {
  background: linear-gradient(90deg, #e67e22, #f39c12);
}

/* ── Server Card Rich Layout ──────────────────────────────── */
.servers-grid--rich {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 22px;
}

/* Header image */
.server-card__image {
  position: relative;
  height: 110px;
  overflow: hidden;
  background: linear-gradient(135deg, #120606, #1a0a0a);
}

.server-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  transition: opacity .3s;
}

.server-card:hover .server-card__image img {
  opacity: .6;
}

.server-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-card) 0%, transparent 70%);
}

.server-card__image-rank {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, .75);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 3px 9px;
  font-size: .66rem;
  font-weight: 700;
  color: var(--red-bright);
  display: flex;
  align-items: center;
  gap: 4px;
}

.server-card__image-type {
  position: absolute;
  top: 10px;
  left: 12px;
  border-radius: var(--radius);
  padding: 2px 9px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.type--modded {
  background: rgba(243, 156, 18, .15);
  border: 1px solid rgba(243, 156, 18, .4);
  color: var(--warning);
}

.type--official {
  background: rgba(41, 128, 185, .15);
  border: 1px solid rgba(41, 128, 185, .4);
  color: #3498db;
}

.type--community {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* Players section */
.srv-section {
  margin-bottom: 12px;
}

.srv-players-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.srv-players-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
}

.srv-players-count strong {
  color: #fff;
  font-size: 1rem;
}

/* Address row */
.srv-address-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.srv-address {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 10px;
  font-size: .72rem;
  color: var(--text-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}

/* Stat grid 2x1 */
.server-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 10px;
}

.server-stat {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 9px;
  min-width: 0;
}

.server-stat label {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: .75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
}

.server-stat label i {
  font-size: .75rem;
  flex-shrink: 0;
}

.server-stat span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.server-stat small {
  display: block;
  font-size: .6rem;
  color: var(--text-3);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-stat--wipe span {
  color: var(--warning);
}

.server-stat--nextwipe span {
  color: #3498db;
}

.server-stat--uptime span {
  color: var(--success);
}

.server-stat--group span {
  color: var(--red-bright);
}

/* Map + FPS meta row */
.srv-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-2);
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.srv-meta-row span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Wipe schedule */
.srv-schedule {
  font-size: .7rem;
  color: var(--text-3);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Last wipe row */
.srv-lastwipe {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 8px;
  font-size: .8rem;
  border-top: 1px solid var(--border);
  color: var(--text-2);
}

.srv-lastwipe i {
  color: var(--warning);
  flex-shrink: 0;
}

.srv-lastwipe>span {
  color: var(--text-3);
}

.srv-lastwipe strong {
  margin-left: auto;
  color: #fff;
  font-size: .84rem;
}

.srv-lastwipe small {
  color: var(--text-3);
  font-size: .7rem;
  white-space: nowrap;
}

/* Rust settings 2×2 */
.srv-settings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  padding: 10px 0 4px;
  border-top: 1px solid var(--border);
}

.srv-setting {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.srv-setting label {
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-3);
  font-weight: 600;
}

.srv-setting>span {
  font-size: .82rem;
  color: #fff;
  font-weight: 600;
}

.srv-setting small {
  font-size: .7rem;
  color: var(--text-3);
}

/* Wipe urgência */
.wipe-soon {
  color: var(--red-bright) !important;
  animation: pulse-text 1.5s ease infinite;
}

@keyframes pulse-text {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .55
  }
}

/* Queue badge */
.queue-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(243, 156, 18, .12);
  border: 1px solid rgba(243, 156, 18, .3);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: .62rem;
  font-weight: 700;
  color: var(--warning);
}

/* ── Status Badge ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 40px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge--online {
  background: rgba(39, 174, 96, .15);
  border: 1px solid rgba(39, 174, 96, .35);
  color: #2ecc71;
}

.badge--offline {
  background: rgba(192, 57, 43, .12);
  border: 1px solid rgba(192, 57, 43, .3);
  color: var(--red-bright);
}

.badge--rust {
  background: rgba(205, 97, 51, .15);
  border: 1px solid rgba(205, 97, 51, .35);
  color: #e07840;
}

.badge--scum {
  background: rgba(46, 204, 113, .12);
  border: 1px solid rgba(46, 204, 113, .3);
  color: var(--scum-color);
}

.badge--red {
  background: rgba(192, 57, 43, .15);
  border: 1px solid var(--border-red);
  color: var(--red-bright);
}

.badge--default {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.badge--success {
  background: rgba(39, 174, 96, .15);
  border: 1px solid rgba(39, 174, 96, .3);
  color: #2ecc71;
}

.badge--warning {
  background: rgba(243, 156, 18, .12);
  border: 1px solid rgba(243, 156, 18, .3);
  color: var(--warning);
}

/* ── Products / VIP Cards ─────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.product-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.product-card--featured::before {
  content: 'DESTAQUE';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.product-card__image {
  height: 160px;
  background: linear-gradient(135deg, #1a0a0a, #200d0d);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image-placeholder {
  font-size: 3.5rem;
  opacity: .3;
}

.product-card__badge-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.product-card__body {
  padding: 20px;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.product-card__description {
  font-size: .85rem;
  color: var(--text-3);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-card__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-2);
}

.product-card__benefits li i {
  color: var(--red-bright);
  font-size: .7rem;
  flex-shrink: 0;
}

.product-card__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-card-2);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;

}

.product-card__price {
  font-family: var(--font-title);
  font-weight: 700;
}

.product-card__price .original {
  font-size: .8rem;
  color: var(--text-3);
  text-decoration: line-through;
  display: block;
}

.product-card__price .current {
  font-size: 1.4rem;
  color: var(--red-bright);
}

.product-card__price .period {
  font-size: .7rem;
  color: var(--text-3);
}

/* ── Features Section ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.feature-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(192, 57, 43, .12);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--red-bright);
  transition: all .25s ease;
}

.feature-card:hover .feature-card__icon {
  background: rgba(192, 57, 43, .2);
  box-shadow: 0 0 20px var(--red-glow);
}

.feature-card__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: .82rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--text-3);
  font-family: var(--font-main);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--red-bright);
  border-bottom-color: var(--red-bright);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-main);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-control::placeholder {
  color: var(--text-3);
}

.form-hint {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 5px;
}

.form-error {
  font-size: .75rem;
  color: var(--red-bright);
  margin-top: 5px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
}

.alert--success {
  background: rgba(39, 174, 96, .1);
  border: 1px solid rgba(39, 174, 96, .3);
  color: #2ecc71;
}

.alert--error {
  background: rgba(192, 57, 43, .1);
  border: 1px solid rgba(192, 57, 43, .35);
  color: var(--red-bright);
}

.alert--warning {
  background: rgba(243, 156, 18, .1);
  border: 1px solid rgba(243, 156, 18, .3);
  color: var(--warning);
}

.alert--info {
  background: rgba(41, 128, 185, .1);
  border: 1px solid rgba(41, 128, 185, .3);
  color: #3498db;
}

/* ── Tables ───────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

th {
  padding: 10px 16px;
  background: var(--bg-card-2);
  color: var(--text-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(31, 31, 31, .6);
  color: var(--text);
  vertical-align: middle;
}

tr:hover td {
  background: rgba(255, 255, 255, .02);
}

tr:last-child td {
  border-bottom: none;
}

/* ── Profile ──────────────────────────────────────────────── */
.profile-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--red-glow);
}

.profile-name {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}

.profile-meta {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.profile-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-3);
}

.profile-meta span i {
  color: var(--red-bright);
}

/* ── Stats Row ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(192, 57, 43, .12) 0%, transparent 70%);
}

.stat-card__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.stat-card__value {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-card__value--red {
  color: var(--red-bright);
}

.stat-card__value--green {
  color: var(--success);
}

.stat-card__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--red);
  opacity: .5;
}

/* ── Affiliate box ────────────────────────────────────────── */
.affiliate-box {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.affiliate-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-bright), transparent);
}

.affiliate-code {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: .1em;
  margin: 16px 0;
}

.copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 57, 43, .15);
  border: 1px solid rgba(192, 57, 43, .2);
  color: var(--red-bright);
  padding: 6px 11px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  font-size: .82rem;
  text-decoration: none;
}

.copy-btn:hover {
  background: rgba(192, 57, 43, .3);
  color: var(--red-bright);
}

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.checkout-summary__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.checkout-summary__body {
  padding: 24px;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .875rem;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.checkout-summary__row:last-child {
  border-bottom: none;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.checkout-summary__total span:last-child {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--red-bright);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

@media (max-width: 560px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}

.payment-method {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.payment-method input {
  display: none;
}

.payment-method:has(input:checked),
.payment-method.selected {
  border-color: var(--red);
  background: rgba(192, 57, 43, .08);
  box-shadow: 0 0 0 1px var(--red);
}

.payment-method__icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--red-bright);
  line-height: 1;
}

.payment-method__label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(192, 57, 43, .08) 0%, transparent 100%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), transparent);
}

.page-header__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.page-header__title span {
  color: var(--red-bright);
}

.page-header__subtitle {
  color: var(--text-2);
  margin-top: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-3);
}

.breadcrumb a:hover {
  color: var(--red-bright);
}

.breadcrumb i {
  font-size: .6rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer__top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__brand p {
  font-size: .85rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: .9rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

.footer__col h4 {
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  font-size: .85rem;
  color: var(--text-3);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--red-bright);
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .8rem;
  color: var(--text-3);
  flex-wrap: wrap;
}

.footer__bottom a {
  color: var(--text-3);
}

.footer__bottom a:hover {
  color: var(--red-bright);
}

/* ── Page Wrapper (for non-hero pages) ───────────────────── */
.main-content {
  padding-top: 72px;
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  color: var(--text-2);
  transition: all var(--transition);
  padding: 0 10px;
}

.pagination a:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

.pagination span.current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 700;
}

/* ── Filter bar ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  padding: 7px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  color: var(--text-3);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(192, 57, 43, .08);
}

/* ── Loading / Spinner ────────────────────────────────────── */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(192, 57, 43, .2);
  border-top-color: var(--red-bright);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Misc ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 32px 0;
}

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

.text-red {
  color: var(--red-bright) !important;
}

.text-green {
  color: var(--success) !important;
}

.text-muted {
  color: var(--text-3) !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.gap-2 {
  gap: 16px !important;
}

.d-flex {
  display: flex !important;
}

.align-center {
  align-items: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

/* ── Scroll bar ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-red);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

/* ── Smooth in animation ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Server Detail Modal ──────────────────────────────────── */
.srv-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.srv-modal.active {
  display: flex;
}

.srv-modal__box {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .8), 0 0 0 1px rgba(192, 57, 43, .15);
  animation: modalIn .2s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.95) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.srv-modal__img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.srv-modal__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-card) 0%, rgba(0, 0, 0, .3) 100%);
}

.srv-modal__inner {
  padding: 20px 24px 24px;
}

.srv-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  color: var(--text-3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.srv-modal__close:hover {
  background: rgba(192, 57, 43, .2);
  color: #fff;
  border-color: var(--red);
}

.srv-modal__name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
  word-break: break-word;
  white-space: normal;
}

.srv-modal__section {
  margin-bottom: 18px;
}

.srv-modal__section-title {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.srv-modal__section-title i {
  color: var(--red-bright);
}

.srv-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.srv-modal__item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 11px;
}

.srv-modal__item label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .58rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}

.srv-modal__item strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srv-modal__item small {
  display: block;
  font-size: .62rem;
  color: var(--text-3);
  margin-top: 2px;
}

@media (max-width: 480px) {
  .srv-modal__grid {
    grid-template-columns: 1fr 1fr;
  }

  .srv-modal__box {
    max-height: 95vh;
  }
}

/* ── Partner public cards ──────────────────────────────────── */
.partner-pub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 20px;
  transition: all .25s ease;
  position: relative;
}

.partner-pub-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.partner-pub-card__top {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.partner-pub-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 20px auto 12px;
  box-shadow: 0 0 16px var(--red-glow);
  flex-shrink: 0;
}

.partner-pub-card__name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
  padding: 0 16px;
}

.partner-pub-card__socials {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
  padding: 0 16px;
}

.partner-social {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  border: 1px solid transparent;
}

.partner-social:hover {
  opacity: .8;
  transform: translateY(-2px);
}

.partner-social--yt { background: rgba(255,0,0,.15);    border-color: rgba(255,0,0,.25);    color: #ff4444; }
.partner-social--tw { background: rgba(145,71,255,.15); border-color: rgba(145,71,255,.25); color: #9147ff; }
.partner-social--ki { background: rgba(83,252,24,.12);  border-color: rgba(83,252,24,.2);   color: #53fc18; }
.partner-social--ig { background: rgba(225,48,108,.15); border-color: rgba(225,48,108,.25); color: #e1306c; }

.partner-pub-card__coupon-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 6px;
}

.partner-pub-card__coupon {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: .12em;
  background: rgba(192, 57, 43, .08);
  border: 1px dashed rgba(192, 57, 43, .3);
  border-radius: var(--radius);
  padding: 8px 16px;
  margin: 0 16px 16px;
  width: calc(100% - 32px);
}

.partner-pub-card__actions {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partner-pub-card__sales {
  font-size: .7rem;
  color: var(--text-3);
  margin-top: 10px;
}

.partner-pub-card__sales::before {
  content: '✓  ';
  color: var(--success);
}