:root {
  --bg-dark: #080413;
  --bg-mid: #120b2a;
  --bg-soft: #171033;
  --bg-card: rgba(255, 255, 255, 0.055);
  --bg-card-s: rgba(255, 255, 255, 0.09);

  --pink: #ff4fd8;
  --purple: #7a2cff;
  --orange: #ff8a3d;
  --cyan: #47d8ff;
  --green: #35ff8a;
  --discord: #5865F2;

  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.60);
  --soft: rgba(255, 255, 255, 0.36);

  --border: rgba(255, 255, 255, 0.08);
  --border-s: rgba(255, 255, 255, 0.15);

  --glow-pink: rgba(255, 79, 216, 0.28);
  --glow-ora: rgba(255, 138, 61, 0.22);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --nav-h: 76px;
  --max-w: 1240px;
  --pad-x: 5%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 8% 0%, rgba(255, 79, 216, .12), transparent 60%),
    radial-gradient(700px 500px at 92% 15%, rgba(71, 216, 255, .07), transparent 60%),
    radial-gradient(800px 600px at 78% 88%, rgba(255, 138, 61, .09), transparent 60%),
    radial-gradient(1000px 700px at 18% 92%, rgba(122, 44, 255, .14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 79, 216, .35);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 79, 216, .55);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s, border-color .4s;
}

.navbar.scrolled {
  background: rgba(8, 4, 19, .9);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 12px var(--pad-x);
}

.navbar-start {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 79, 216, .2));
  transition: transform .3s, filter .3s;
}

.brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 79, 216, .4));
}

.nav-desktop {
  display: flex;
  gap: 4px;
  list-style: none;
}

.navbar-end {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  transition: all .3s ease;
}

.nav-socials a:hover {
  background: rgba(255, 79, 216, 0.1);
  border-color: rgba(255, 79, 216, 0.3);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 79, 216, 0.15);
}

.nav-desktop a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: 30px;
  transition: all .25s;
}

.nav-desktop a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.nav-desktop a.active {
  color: var(--pink);
}

.nav-status-pill {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  overflow: hidden;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}

.nav-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
  margin-left: 12px;
  transition: background .4s;
}

.nav-status-dot.online {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

.nav-status-dot.offline {
  background: #ff5555;
}

.nav-status-name {
  color: var(--text);
  padding: 7px 10px 7px 8px;
}

.nav-status-count {
  background: rgba(88, 101, 242, .35);
  color: var(--text);
  padding: 7px 12px;
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #000;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 0 22px var(--glow-pink);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px var(--glow-pink);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 490;
  background: rgba(8, 4, 19, .97);
  backdrop-filter: blur(24px);
  padding: 32px var(--pad-x);
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}

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

.mobile-nav a {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  transition: all .25s;
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

.mobile-nav-discord {
  color: var(--pink) !important;
  margin-top: 8px;
  border: 1px solid rgba(255, 79, 216, .25);
  border-radius: var(--radius-sm);
  background: rgba(255, 79, 216, .06) !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 10% 80px;
  text-align: left;
}

.hero-info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  backdrop-filter: blur(10px);
}

.hero-info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  flex-shrink: 0;
}

.hero-info-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-weight: 300;
}

.hero-info-counter {
  font-weight: 700;
  color: var(--pink);
  font-size: 1.1em;
  letter-spacing: 0.03em;
}

canvas#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-banner {
  position: absolute;
  inset: 0;
  background: url('../img/baner.png') center/cover no-repeat;
  opacity: .15;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 35%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.grad {
  background: linear-gradient(135deg, #fff 30%, var(--pink) 60%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad2 {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  box-shadow: 0 0 28px var(--glow-pink);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 38px var(--glow-pink);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: rgba(255, 79, 216, .4);
  background: rgba(255, 79, 216, .06);
  transform: translateY(-2px);
}

.btn-discord-style {
  background: var(--discord);
  color: #fff;
  box-shadow: 0 0 24px rgba(88, 101, 242, .3);
}

.btn-discord-style:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 8px 34px rgba(88, 101, 242, .4);
}

.section {
  padding: 96px var(--pad-x);
  position: relative;
}

.section.bg-soft {
  background: linear-gradient(to bottom, transparent 0%, var(--bg-soft) 15%, var(--bg-soft) 85%, transparent 100%);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.section-tag--center {
  justify-content: center;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
  font-size: .97rem;
  margin-bottom: 48px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 79, 216, .05), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}

.card:hover {
  border-color: rgba(255, 79, 216, .25);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .35);
}

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

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.feat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feat-card:nth-child(1),
.feat-card:nth-child(4) {
  grid-column: span 2;
}

.feat-card:nth-child(2),
.feat-card:nth-child(3),
.feat-card:nth-child(5),
.feat-card:nth-child(6) {
  grid-column: span 1;
}

/* Reset bento spans when 1-column on mobile */
@media (max-width: 768px) {
  .feat-card:nth-child(1),
  .feat-card:nth-child(4) {
    grid-column: span 1;
  }
}

.feat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 79, 216, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 79, 216, 0.1);
}

.feat-num {
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  transition: all .4s ease;
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: 0;
  pointer-events: none;
}

.feat-card:hover .feat-num {
  -webkit-text-stroke: 1px rgba(255, 79, 216, 0.4);
  color: rgba(255, 79, 216, 0.05);
  transform: scale(1.05) translate(-4px, 4px);
}

.feat-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feat-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
  max-width: 95%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: left;
  padding: 40px 32px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 79, 216, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 79, 216, 0.08);
}

.step-num {
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  line-height: 0.9;
  transition: all 0.4s ease;
}

.step-card:hover .step-num {
  -webkit-text-stroke: 1px rgba(255, 79, 216, 0.5);
  color: rgba(255, 79, 216, 0.05);
  transform: scale(1.05) translate(-4px, 4px);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  font-weight: 300;
}

.step-line {
  display: none;
}

.factions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faction-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #11131a;
  min-height: clamp(300px, 50vw, 480px);
  border-radius: 20px;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faction-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 79, 216, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 79, 216, 0.1);
}

.faction-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transition: transform .6s ease;
}

.faction-card:hover .faction-img {
  transform: scale(1.05);
}

.faction-info {
  position: relative;
  z-index: 1;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to top, rgba(8, 4, 19, 1) 0%, rgba(8, 4, 19, 0.9) 40%, transparent 100%);
}

.faction-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.faction-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 300;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.status-main-card {
  background: var(--bg-card-s);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.status-tag {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 600;
}

.status-server-name {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.status-online {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: .95rem;
}

.status-offline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff5555;
  font-weight: 700;
  font-size: .95rem;
}

.status-pulse {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.status-offline-dot {
  width: 9px;
  height: 9px;
  background: #ff5555;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-address-block {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.status-address-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 600;
}

.status-address-val {
  font-family: 'Space Grotesk', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .04em;
}

.status-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.status-stat-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.status-stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transform: scaleX(0);
  transition: transform .4s;
}

.status-stat-cell:hover {
  border-color: rgba(255, 79, 216, .28);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.status-stat-cell:hover::after {
  transform: scaleX(1);
}

.status-stat-full {
  grid-column: span 2;
}

.status-stat-icon {
  font-size: 1.3rem;
}

.status-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.status-stat-sm {
  font-size: .9rem;
  letter-spacing: .02em;
}

.status-stat-lbl {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .07em;
  text-transform: uppercase;
}

@keyframes skeleton-pulse {

  0%,
  100% {
    opacity: .25;
  }

  50% {
    opacity: .55;
  }
}

.status-grid--loading .status-server-name,
.status-grid--loading .status-online,
.status-grid--loading .status-offline,
.status-grid--loading .status-address-val,
.status-grid--loading .status-stat-val {
  animation: skeleton-pulse 1.4s ease-in-out infinite;
  pointer-events: none;
}

.acc-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
  transition: border-color .25s;
}

.acc-item:hover {
  border-color: rgba(255, 79, 216, .3);
}

.acc-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .25s, color .25s;
  text-align: left;
  font-family: inherit;
  letter-spacing: .02em;
}

.acc-header:hover {
  background: rgba(255, 79, 216, .05);
}

.acc-header[aria-expanded="true"] {
  color: var(--pink);
  background: rgba(255, 79, 216, .04);
}

.acc-arrow {
  transition: transform .3s;
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
}

.acc-header[aria-expanded="true"] .acc-arrow {
  transform: rotate(180deg);
}

.acc-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--pink);
  transition: transform .3s;
}

.acc-header[aria-expanded="true"] .acc-icon {
  transform: rotate(180deg);
}

.acc-body {
  display: none;
}

.acc-body.open {
  display: block;
}

.acc-content {
  padding: 4px 20px 18px;
}

.acc-body p,
.acc-body li {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.acc-body li {
  margin-bottom: 4px;
  padding-left: 2px;
}

.acc-body li::marker {
  color: rgba(255, 79, 216, .5);
}

.acc-body ul {
  padding-left: 18px;
}

.rules-intro {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-left: 2px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 79, 216, .04);
}

.rules-intro p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .9rem;
  font-weight: 600;
  transition: color .25s;
  text-align: left;
  font-family: inherit;
}

.faq-q:hover {
  color: var(--pink);
}

.faq-icon {
  color: var(--pink);
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
}

.faq-a.open {
  display: block;
}

.faq-a-inner {
  padding: 0 0 20px;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.discord-box {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(88, 101, 242, .12), rgba(122, 44, 255, .08));
  border: 1px solid rgba(88, 101, 242, .22);
}

.ip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.ip-badge {
  font-family: 'Space Grotesk', monospace;
  font-size: .83rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 30px;
  color: var(--orange);
  letter-spacing: .06em;
}

.btn-copy {
  background: none;
  border: 1px solid rgba(255, 138, 61, .3);
  color: var(--orange);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s;
}

.btn-copy:hover {
  background: rgba(255, 138, 61, .1);
  border-color: var(--orange);
}

.cta-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(122, 44, 255, .1), transparent 70%);
}

.cta-section h2 .grad2 {
  font-style: normal;
}

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

.cta-sub {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: .97rem;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: .73rem;
  color: var(--muted);
  font-weight: 500;
}

.pill-dot {
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

footer {
  padding: 64px var(--pad-x) 32px;
  border-top: 1px solid var(--border);
  background: rgba(8, 4, 19, .7);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.footer-right {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.footer-year {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-disclaimer p {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s;
  text-decoration: none;
}

.footer-nav-list a:hover {
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.7);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .feat-card:nth-child(1),
  .feat-card:nth-child(4) {
    grid-column: span 2;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-line {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .factions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Schowaj socials i status pill z navbara na mobile, pojawią się w mobile-nav */
  .nav-socials {
    display: none;
  }

  .nav-status-pill {
    display: none;
  }

  .navbar {
    padding: 14px var(--pad-x);
  }

  .navbar.scrolled {
    padding: 12px var(--pad-x);
  }

  .brand img {
    height: 42px;
  }

  /* --- Mobile Nav --- */
  .mobile-nav {
    padding: 24px var(--pad-x) 32px;
    gap: 4px;
    overflow-y: auto;
  }

  .mobile-nav a {
    font-size: .95rem;
    padding: 12px 16px;
  }

  /* Status pill w mobile nav */
  .mobile-nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .06);
    margin-top: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
  }

  /* Socials row w mobile nav */
  .mobile-nav-socials {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    margin-top: 4px;
    flex-wrap: wrap;
  }

  .mobile-nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--muted);
    transition: all .25s;
    padding: 0;
  }

  .mobile-nav-socials a:hover {
    background: rgba(255, 79, 216, .1);
    border-color: rgba(255, 79, 216, .3);
    color: var(--pink);
  }

  /* --- Hero --- */
  .hero {
    padding: calc(var(--nav-h) + 24px) 6% 60px;
    min-height: 100svh;
    justify-content: center;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: .9rem;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Sekcje --- */
  .section {
    padding: 64px var(--pad-x);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .lead {
    font-size: .88rem;
    max-width: 100%;
    margin-bottom: 32px;
  }

  /* --- Feat grid (bento) --- */
  .feat-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
  }

  .feat-card:nth-child(1),
  .feat-card:nth-child(4) {
    grid-column: span 1;
  }

  .feat-card {
    padding: 32px 28px;
    min-height: 200px;
  }

  .feat-num {
    font-size: 3.5rem;
  }

  /* --- Steps --- */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 28px 24px;
  }

  .step-num {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  /* --- Factions --- */
  .factions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- Rules accordion --- */
  .acc-header {
    font-size: .8rem;
    padding: 14px 16px;
  }

  .acc-content {
    padding: 4px 16px 16px;
  }

  /* --- Misc --- */
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  .discord-box {
    padding: 36px 20px;
  }

  /* --- Footer --- */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

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

  .footer-right {
    gap: 32px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {

  /* Steps — timeline pionowy */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 60px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 36px;
    bottom: 24px;
    width: 1.5px;
    background: linear-gradient(180deg, rgba(255, 79, 216, .5), rgba(255, 138, 61, .08));
  }

  .step-card {
    padding: 6px 0 28px;
    position: relative;
    background: none;
    border: none;
    border-radius: 0;
  }

  .step-card:hover {
    transform: none;
    background: none;
    border-color: transparent;
    box-shadow: none;
  }

  .step-num {
    position: absolute;
    left: -60px;
    top: 2px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 79, 216, .08);
    border: 1.5px solid rgba(255, 79, 216, .3);
    border-radius: 50%;
    -webkit-text-stroke: 0;
    color: var(--pink);
    line-height: 1;
    letter-spacing: 0;
  }

  .step-card:hover .step-num {
    transform: none;
  }

  .step-title {
    margin-top: 0;
    font-size: 1rem;
  }

  .step-desc {
    font-size: .85rem;
  }

  .step-line {
    display: none;
  }

  /* Footer columns stack */
  .footer-right {
    flex-direction: column;
    gap: 24px;
  }
}

/* ============================================================
   RESPONSIVE — EXTRA SMALL (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --pad-x: 5%;
    --nav-h: 68px;
  }

  .hero {
    padding: calc(var(--nav-h) + 20px) 5% 48px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: .85rem;
    line-height: 1.65;
  }

  .section {
    padding: 48px var(--pad-x);
  }

  .section-tag {
    font-size: .65rem;
  }

  h2 {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
    margin-bottom: 10px;
  }

  .feat-card {
    padding: 24px 20px;
    min-height: 180px;
  }

  .feat-num {
    font-size: 3rem;
    top: 6px;
    right: 16px;
  }

  .feat-title {
    font-size: 1.1rem;
  }

  .feat-desc {
    font-size: .85rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: .82rem;
  }

  .nav-status-pill {
    display: none;
  }

  footer {
    padding: 40px var(--pad-x) 24px;
  }

  .footer-brand {
    font-size: 1.3rem;
  }

  .footer-right {
    gap: 20px;
  }

  .acc-header {
    font-size: .78rem;
    padding: 13px 14px;
  }

  .faq-q {
    font-size: .85rem;
    padding: 16px 0;
  }

  .faction-info {
    padding: 24px 16px 16px;
  }

  .faction-name {
    font-size: 1.2rem;
  }

  .rules-intro p {
    font-size: .78rem;
  }
}

/* ============================================================
   RESPONSIVE — TINY (≤360px)
   ============================================================ */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-btns .btn {
    font-size: .78rem;
    padding: 11px 18px;
    gap: 7px;
  }

  .feat-card {
    padding: 20px 16px;
  }

  .feat-title {
    font-size: 1rem;
  }


  h2 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   JS VIEWPORT FALLBACKS — data-vp attribute (set by inline script in <head>)
   Mirrors all media queries — fixes VS Code Live Preview iframe viewport quirk
   ============================================================ */

/* --- TABLET (data-vp="tablet", 768–1024px) --- */
html[data-vp="tablet"] .feat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(220px, auto); }
html[data-vp="tablet"] .feat-card:nth-child(1), html[data-vp="tablet"] .feat-card:nth-child(4) { grid-column: span 2; }
html[data-vp="tablet"] .steps-grid { grid-template-columns: repeat(2, 1fr); }
html[data-vp="tablet"] .step-line { display: none; }
html[data-vp="tablet"] .two-col { grid-template-columns: 1fr; }
html[data-vp="tablet"] .factions-grid { grid-template-columns: repeat(2, 1fr); }

/* --- MOBILE (data-vp="mobile", 600–768px) --- */
html[data-vp="mobile"] .nav-desktop, html[data-vp="mobile"] .nav-cta,
html[data-vp="mobile"] .nav-socials, html[data-vp="mobile"] .nav-status-pill { display: none; }
html[data-vp="mobile"] .menu-toggle { display: flex; }
html[data-vp="mobile"] .navbar { padding: 14px var(--pad-x); }
html[data-vp="mobile"] .brand img { height: 42px; }
html[data-vp="mobile"] .hero { padding: calc(var(--nav-h) + 24px) 6% 60px; min-height: 100svh; }
html[data-vp="mobile"] .hero-content { max-width: 100%; }
html[data-vp="mobile"] .hero h1 { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 18px; }
html[data-vp="mobile"] .hero-sub { font-size: .9rem; margin-bottom: 28px; max-width: 100%; }
html[data-vp="mobile"] .hero-btns { flex-direction: column; gap: 12px; margin-bottom: 40px; }
html[data-vp="mobile"] .hero-btns .btn { width: 100%; justify-content: center; }
html[data-vp="mobile"] .section { padding: 64px var(--pad-x); }
html[data-vp="mobile"] h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
html[data-vp="mobile"] .lead { font-size: .88rem; max-width: 100%; margin-bottom: 32px; }
html[data-vp="mobile"] .feat-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(200px, auto); gap: 16px; }
html[data-vp="mobile"] .feat-card:nth-child(1), html[data-vp="mobile"] .feat-card:nth-child(4) { grid-column: span 1; }
html[data-vp="mobile"] .feat-card { padding: 32px 28px; min-height: 200px; }
html[data-vp="mobile"] .feat-num { font-size: 3.5rem; }
html[data-vp="mobile"] .steps-grid { grid-template-columns: 1fr; gap: 16px; }
html[data-vp="mobile"] .step-card { padding: 28px 24px; }
html[data-vp="mobile"] .step-num { font-size: 3rem; margin-bottom: 16px; }
html[data-vp="mobile"] .factions-grid { grid-template-columns: 1fr; gap: 16px; }
html[data-vp="mobile"] .acc-header { font-size: .8rem; padding: 14px 16px; }
html[data-vp="mobile"] .footer-inner { flex-direction: column; gap: 32px; }
html[data-vp="mobile"] .footer-left { max-width: 100%; }
html[data-vp="mobile"] .footer-right { gap: 32px; }
html[data-vp="mobile"] .status-grid { grid-template-columns: 1fr; }

/* --- SM (data-vp="sm", 480–600px) --- */
html[data-vp="sm"] .nav-desktop, html[data-vp="sm"] .nav-cta,
html[data-vp="sm"] .nav-socials, html[data-vp="sm"] .nav-status-pill { display: none; }
html[data-vp="sm"] .menu-toggle { display: flex; }
html[data-vp="sm"] .navbar { padding: 14px var(--pad-x); }
html[data-vp="sm"] .brand img { height: 42px; }
html[data-vp="sm"] .hero { padding: calc(var(--nav-h) + 20px) 5% 48px; }
html[data-vp="sm"] .hero-content { max-width: 100%; }
html[data-vp="sm"] .hero h1 { font-size: clamp(1.8rem, 10vw, 2.4rem); margin-bottom: 14px; }
html[data-vp="sm"] .hero-sub { font-size: .85rem; max-width: 100%; }
html[data-vp="sm"] .hero-btns { flex-direction: column; gap: 12px; margin-bottom: 40px; }
html[data-vp="sm"] .hero-btns .btn { width: 100%; justify-content: center; }
html[data-vp="sm"] .section { padding: 48px var(--pad-x); }
html[data-vp="sm"] h2 { font-size: clamp(1.35rem, 7vw, 1.9rem); }
html[data-vp="sm"] .lead { font-size: .88rem; max-width: 100%; margin-bottom: 28px; }
html[data-vp="sm"] .feat-grid { grid-template-columns: 1fr; gap: 16px; }
html[data-vp="sm"] .feat-card:nth-child(1), html[data-vp="sm"] .feat-card:nth-child(4) { grid-column: span 1; }
html[data-vp="sm"] .feat-card { padding: 24px 20px; min-height: 180px; }
html[data-vp="sm"] .feat-num { font-size: 3rem; top: 6px; right: 16px; }
html[data-vp="sm"] .feat-title { font-size: 1.1rem; }
html[data-vp="sm"] .feat-desc { font-size: .85rem; }
html[data-vp="sm"] .factions-grid { grid-template-columns: 1fr; gap: 16px; }
html[data-vp="sm"] .footer-inner { flex-direction: column; gap: 32px; }
html[data-vp="sm"] .footer-right { flex-direction: column; gap: 24px; }
html[data-vp="sm"] .status-grid { grid-template-columns: 1fr; }
html[data-vp="sm"] .steps-grid { grid-template-columns: 1fr; gap: 0; padding-left: 60px; position: relative; }
html[data-vp="sm"] .step-card { padding: 6px 0 28px; position: relative; background: none; border: none; border-radius: 0; }
html[data-vp="sm"] .step-num { position: absolute; left: -60px; top: 2px; margin: 0; font-size: 1.1rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,79,216,.08); border: 1.5px solid rgba(255,79,216,.3); border-radius: 50%; -webkit-text-stroke: 0; color: var(--pink); line-height: 1; letter-spacing: 0; }

/* --- XS (data-vp="xs", <480px) --- */
html[data-vp="xs"] .nav-desktop, html[data-vp="xs"] .nav-cta,
html[data-vp="xs"] .nav-socials, html[data-vp="xs"] .nav-status-pill { display: none; }
html[data-vp="xs"] .menu-toggle { display: flex; }
html[data-vp="xs"] .hero { padding: calc(var(--nav-h) + 16px) 5% 40px; }
html[data-vp="xs"] .hero-content { max-width: 100%; }
html[data-vp="xs"] .hero h1 { font-size: 1.7rem; margin-bottom: 12px; }
html[data-vp="xs"] .hero-sub { font-size: .85rem; max-width: 100%; }
html[data-vp="xs"] .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 32px; }
html[data-vp="xs"] .hero-btns .btn { width: 100%; justify-content: center; font-size: .78rem; padding: 11px 18px; }
html[data-vp="xs"] .section { padding: 40px 5%; }
html[data-vp="xs"] h2 { font-size: 1.3rem; }
html[data-vp="xs"] .lead { font-size: .85rem; max-width: 100%; margin-bottom: 24px; }
html[data-vp="xs"] .feat-grid { grid-template-columns: 1fr; gap: 12px; }
html[data-vp="xs"] .feat-card:nth-child(1), html[data-vp="xs"] .feat-card:nth-child(4) { grid-column: span 1; }
html[data-vp="xs"] .feat-card { padding: 20px 16px; min-height: 170px; }
html[data-vp="xs"] .feat-num { font-size: 2.8rem; top: 6px; right: 12px; }
html[data-vp="xs"] .feat-title { font-size: 1rem; }
html[data-vp="xs"] .factions-grid { grid-template-columns: 1fr; gap: 12px; }
html[data-vp="xs"] .footer-inner { flex-direction: column; gap: 28px; }
html[data-vp="xs"] .footer-right { flex-direction: column; gap: 20px; }
html[data-vp="xs"] .footer-brand { font-size: 1.3rem; }
html[data-vp="xs"] .status-grid { grid-template-columns: 1fr; }
html[data-vp="xs"] .steps-grid { grid-template-columns: 1fr; gap: 0; padding-left: 60px; position: relative; }
html[data-vp="xs"] .step-card { padding: 6px 0 28px; position: relative; background: none; border: none; border-radius: 0; }
html[data-vp="xs"] .step-num { position: absolute; left: -60px; top: 2px; margin: 0; font-size: 1rem; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,79,216,.08); border: 1.5px solid rgba(255,79,216,.3); border-radius: 50%; -webkit-text-stroke: 0; color: var(--pink); line-height: 1; letter-spacing: 0; }



