/* ========================================
   HYVORN - Premium Gaming Site Styles
   ======================================== */

/* Google Font - Exo 2 */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg0: #050810;
  --bg1: #0a0f1a;
  --bg2: #0d1424;
  --card: rgba(13, 20, 40, 0.75);
  --card-hover: rgba(18, 28, 55, 0.85);
  --stroke: #1e2a4a;
  --stroke-hover: #2d3f6a;
  --text: #f0f4ff;
  --muted: #8b9cc7;
  --gold: #f7c94b;
  --gold-glow: rgba(247, 201, 75, 0.4);
  --blue: #4da8ff;
  --blue-glow: rgba(77, 168, 255, 0.4);
  --purple: #9b6dff;
  --purple-glow: rgba(155, 109, 255, 0.3);
  --cyan: #5de6e6;
  --cyan-glow: rgba(93, 230, 230, 0.3);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.6);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  font-family: 'Exo 2', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg0);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-effects::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 10% 0%, rgba(77, 168, 255, 0.15), transparent 50%),
    radial-gradient(ellipse 1000px 700px at 90% 10%, rgba(247, 201, 75, 0.12), transparent 45%),
    radial-gradient(ellipse 1400px 1000px at 50% 100%, rgba(155, 109, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 800px 600px at 80% 80%, rgba(93, 230, 230, 0.08), transparent 45%);
  animation: bgPulse 15s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}
.orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -5s;
  animation-duration: 25s;
}
.orb--3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--purple-glow), transparent 70%);
  bottom: -200px; left: 30%;
  animation-delay: -10s;
  animation-duration: 22s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-3deg); }
  75% { transform: translate(40px, 10px) rotate(2deg); }
}

/* Stars/particles */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.3), transparent);
  background-size: 200px 200px;
  animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LAYOUT
   ======================================== */
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; padding: 24px; margin: 0 auto; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.9), rgba(5, 8, 16, 0.7));
  border-bottom: 1px solid rgba(30, 42, 74, 0.5);
  transition: var(--transition);
}
.nav.is-scrolled {
  padding: 12px 28px;
  background: rgba(5, 8, 16, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.brand:hover { transform: scale(1.02); }
.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(77, 168, 255, 0.3);
  transition: var(--transition);
}
.brand:hover .brand__logo {
  box-shadow: 0 4px 30px rgba(77, 168, 255, 0.5);
}
.brand__text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--text), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  border: 1px solid transparent;
  transition: var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav__link:hover {
  color: var(--text);
  background: rgba(30, 42, 74, 0.4);
}
.nav__link:hover::after {
  width: 24px;
}
.nav__link.is-active {
  color: var(--text);
  background: rgba(77, 168, 255, 0.1);
  border-color: rgba(77, 168, 255, 0.3);
}
.nav__link.is-active::after {
  width: 24px;
  background: var(--blue);
}
.nav__link--cta {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(247, 201, 75, 0.1), rgba(247, 201, 75, 0.05));
  border-color: rgba(247, 201, 75, 0.3);
}
.nav__link--cta:hover {
  color: var(--gold);
  background: rgba(247, 201, 75, 0.15);
  border-color: rgba(247, 201, 75, 0.5);
  box-shadow: 0 0 30px rgba(247, 201, 75, 0.2);
}
.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  border: 1px solid rgba(30, 42, 74, 0.6);
  background: rgba(13, 20, 36, 0.6);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.nav__burger:hover {
  background: rgba(30, 42, 74, 0.4);
  border-color: var(--blue);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 60px 0 40px;
  align-items: center;
  min-height: 80vh;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(155, 109, 255, 0.15), rgba(77, 168, 255, 0.1));
  border: 1px solid rgba(155, 109, 255, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  animation: pulse 3s ease-in-out infinite;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155, 109, 255, 0.2); }
  50% { box-shadow: 0 0 20px 5px rgba(155, 109, 255, 0.1); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text) 0%, var(--blue) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px;
}

.hero__subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 1.1rem;
  color: var(--muted);
}
.hero__subtitle span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__subtitle span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__art::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(77, 168, 255, 0.2), transparent 60%);
  filter: blur(60px);
  animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: min(450px, 100%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  border-radius: 20px;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========================================
   SERVER CARDS
   ======================================== */
.serverGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.serverCard {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  overflow: hidden;
}
.serverCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0;
  transition: var(--transition);
}
.serverCard:hover {
  background: var(--card-hover);
  border-color: var(--stroke-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.serverCard:hover::before {
  opacity: 1;
}

.serverCard__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.serverCard__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.serverCard__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Single server card variant */
.serverCard--single {
  max-width: 100%;
  margin-bottom: 24px;
}
.serverCard--single .serverCard__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.serverCard--single .serverCard__icon {
  font-size: 2.2rem;
  margin-bottom: 0;
  flex-shrink: 0;
}
.serverCard--single .serverCard__info {
  flex: 1;
}
.serverCard--single .serverCard__title {
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.serverCard--single .serverCard__label {
  margin-bottom: 0;
}
.serverCard--single .copyRow {
  background: rgba(5, 8, 16, 0.7);
}
.serverCard--single .copyRow__value {
  font-size: 1.1rem;
}

.copyRow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(5, 8, 16, 0.6);
  border: 1px solid rgba(30, 42, 74, 0.5);
}
.copyRow__value {
  font-family: 'Exo 2', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
}

/* ========================================
   BUTTONS
   ======================================== */
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.2), rgba(77, 168, 255, 0.1));
  border-color: rgba(77, 168, 255, 0.4);
  color: var(--blue);
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.3), rgba(77, 168, 255, 0.15));
  border-color: rgba(77, 168, 255, 0.6);
  box-shadow: 0 10px 40px rgba(77, 168, 255, 0.3);
}

.btn--secondary {
  background: linear-gradient(135deg, rgba(247, 201, 75, 0.15), rgba(247, 201, 75, 0.08));
  border-color: rgba(247, 201, 75, 0.4);
  color: var(--gold);
}
.btn--secondary:hover {
  background: linear-gradient(135deg, rgba(247, 201, 75, 0.25), rgba(247, 201, 75, 0.12));
  border-color: rgba(247, 201, 75, 0.6);
  box-shadow: 0 10px 40px rgba(247, 201, 75, 0.25);
}

.btn--ghost {
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 10px;
  background: rgba(77, 168, 255, 0.1);
  border-color: rgba(77, 168, 255, 0.3);
  color: var(--blue);
}
.btn--ghost:hover {
  background: rgba(77, 168, 255, 0.2);
  border-color: var(--blue);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  margin-top: 32px;
  padding: 32px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.section:hover {
  border-color: var(--stroke-hover);
}

.section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.15), rgba(155, 109, 255, 0.1));
  border: 1px solid rgba(77, 168, 255, 0.2);
  font-size: 1.5rem;
}
.section__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Standalone title (no box) */
.standalone-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 12px;
  color: var(--text);
}
.standalone-subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 1.05rem;
}

/* Feature highlight section */
.section--highlight {
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.08), rgba(155, 109, 255, 0.05));
  border-color: rgba(77, 168, 255, 0.2);
}

/* ========================================
   CARDS GRID
   ======================================== */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.miniCard {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: rgba(5, 8, 16, 0.5);
  border: 1px solid var(--stroke);
  transition: var(--transition);
  overflow: hidden;
}
.miniCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--blue), var(--purple));
  transition: var(--transition);
}
.miniCard:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-hover);
  box-shadow: var(--shadow);
}
.miniCard:hover::before {
  height: 100%;
}

.miniCard__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.miniCard h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.miniCard p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Colored variants */
.miniCard--blue:hover { border-color: rgba(77, 168, 255, 0.4); }
.miniCard--blue::before { background: var(--blue); }
.miniCard--gold:hover { border-color: rgba(247, 201, 75, 0.4); }
.miniCard--gold::before { background: var(--gold); }
.miniCard--purple:hover { border-color: rgba(155, 109, 255, 0.4); }
.miniCard--purple::before { background: var(--purple); }
.miniCard--cyan:hover { border-color: rgba(93, 230, 230, 0.4); }
.miniCard--cyan::before { background: var(--cyan); }

/* ========================================
   TEAM / CREDIBILITY SECTION
   ======================================== */
.team {
  margin-top: 32px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(247, 201, 75, 0.05), rgba(155, 109, 255, 0.03));
  border: 1px solid rgba(247, 201, 75, 0.2);
  text-align: center;
}
.team__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  margin-bottom: 16px;
  background: rgba(247, 201, 75, 0.1);
  border: 1px solid rgba(247, 201, 75, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.team__text {
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 24px;
}

.team__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.team__stat {
  text-align: center;
}
.team__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.team__stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Team roles */
.team__roles {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.team__role {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.team__role-icon {
  font-size: 1.1rem;
}
.team__role-name {
  font-weight: 600;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.featureCard {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  transition: var(--transition);
  overflow: hidden;
}
.featureCard::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(77, 168, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.featureCard:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-hover);
  box-shadow: var(--shadow);
}
.featureCard:hover::after {
  opacity: 1;
}

.featureCard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.15), rgba(155, 109, 255, 0.1));
  border: 1px solid rgba(77, 168, 255, 0.2);
}
.featureCard__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.featureCard__text {
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   PAGE HERO
   ======================================== */
.pageHero {
  padding: 50px 0 30px;
  text-align: center;
}
.pageHero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pageHero p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========================================
   VOTE CARDS
   ======================================== */
.voteGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.voteCard {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  transition: var(--transition);
  text-align: center;
}
.voteCard:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 168, 255, 0.4);
  box-shadow: var(--shadow);
}
.voteCard__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.voteCard__title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.voteCard__meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.voteCard .btn {
  width: 100%;
}

.hint {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(247, 201, 75, 0.05);
  border: 1px solid rgba(247, 201, 75, 0.2);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-section {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
}

.faq-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.15), rgba(155, 109, 255, 0.1));
  border: 1px solid rgba(77, 168, 255, 0.2);
  font-size: 1.5rem;
}

.faq-section__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.faq-item {
  border-bottom: 1px solid rgba(30, 42, 74, 0.5);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--blue);
}

.faq-item__question span:first-child {
  flex: 1;
  padding-right: 16px;
}

.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(77, 168, 255, 0.1);
  border: 1px solid rgba(77, 168, 255, 0.2);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item__question:hover .faq-item__toggle {
  background: rgba(77, 168, 255, 0.2);
  border-color: rgba(77, 168, 255, 0.4);
}

.faq-item__question[aria-expanded="true"] .faq-item__toggle {
  background: var(--blue);
  color: var(--bg0);
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item__answer.is-open {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-item__answer h4 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  margin: 16px 0 8px;
}

.faq-item__answer h4:first-child {
  margin-top: 0;
}

.faq-item__answer p {
  margin-bottom: 12px;
}

.faq-item__answer ul,
.faq-item__answer ol {
  margin: 12px 0;
  padding-left: 24px;
}

.faq-item__answer li {
  margin-bottom: 8px;
}

.faq-item__answer code {
  background: rgba(77, 168, 255, 0.1);
  border: 1px solid rgba(77, 168, 255, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: 'Exo 2', monospace;
  color: var(--cyan);
  font-size: 0.95em;
}

.faq-item__answer strong {
  color: var(--text);
}

.faq-settings-list {
  background: rgba(5, 8, 16, 0.5);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 16px 16px 16px 40px;
  margin-top: 12px;
}

.faq-settings-list ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.faq-settings-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(30, 42, 74, 0.3);
  font-size: 0.95rem;
}

.faq-settings-list li:last-child {
  border-bottom: none;
}

/* ========================================
   APPLICATION PAGE
   ======================================== */
.role-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.role-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Exo 2', sans-serif;
  color: var(--muted);
}

.role-tab:hover {
  background: var(--card-hover);
  border-color: var(--stroke-hover);
  transform: translateY(-2px);
}

.role-tab.is-active {
  background: linear-gradient(135deg, rgba(77, 168, 255, 0.15), rgba(155, 109, 255, 0.1));
  border-color: rgba(77, 168, 255, 0.4);
  color: var(--text);
  box-shadow: 0 0 30px rgba(77, 168, 255, 0.15);
}

.role-tab__icon {
  font-size: 2rem;
}

.role-tab__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.application-container {
  position: relative;
}

.application-section {
  display: none;
}

.application-section.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.application-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px;
  margin-top: 20px;
}

.application-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.application-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application-card__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--muted);
  border-bottom: 1px solid rgba(30, 42, 74, 0.4);
}

.application-card__list li:last-child {
  border-bottom: none;
}

.application-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: bold;
}

.question-group {
  margin-bottom: 28px;
}

.question-group:last-child {
  margin-bottom: 0;
}

.question-group h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(77, 168, 255, 0.2);
}

.question-list {
  padding-left: 24px;
  margin: 0;
}

.question-list li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(30, 42, 74, 0.3);
  line-height: 1.6;
}

.question-list li:last-child {
  border-bottom: none;
}

.question-list li::marker {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 600px) {
  .role-selector {
    flex-direction: column;
  }

  .role-tab {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }

  .role-tab__icon {
    font-size: 1.5rem;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  margin: 40px 0 20px;
  padding: 32px 0;
  border-top: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(77, 168, 255, 0.2);
}
.footer__name {
  font-weight: 900;
  font-size: 1.1rem;
}
.footer__meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__right {
  display: flex;
  gap: 24px;
}
.footer__right a {
  color: var(--muted);
  font-weight: 600;
  transition: var(--transition);
}
.footer__right a:hover {
  color: var(--text);
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(5, 8, 16, 0.95);
  border: 1px solid rgba(93, 230, 230, 0.4);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  color: var(--cyan);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
}
.toast.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(93, 230, 230, 0.2);
  border-radius: 50%;
  font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__art { order: -1; }
  .hero__subtitle { justify-content: center; }
  .hero__actions { justify-content: center; }
  .features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { padding: 20px; }

  .serverGrid { grid-template-columns: 1fr; }
  .cards3 { grid-template-columns: 1fr; }
  .voteGrid { grid-template-columns: 1fr; }

  .section { padding: 24px; }
  .team { padding: 30px 20px; }
  .team__stats { gap: 24px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    background: rgba(5, 8, 16, 0.98);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: 16px;
    width: min(280px, calc(100vw - 40px));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav__links.is-open { display: flex; }
  .nav__burger { display: inline-flex; }

  .nav__link {
    padding: 14px 18px;
    border-radius: 14px;
  }
  .nav__link::after { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0 30px; min-height: auto; }
  .hero__title { font-size: 2rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .footer { flex-direction: column; text-align: center; }
  .footer__right { gap: 16px; }
}
