/* ===================================================
   UNITYX ROLEPLAY — Čistý redesign
   Barva: #006af9 (modrá), pozadí: tmavá
=================================================== */

:root {
  --bg:       #080b12;
  --bg2:      #0d111b;
  --panel:    #111520;
  --line:     rgba(255,255,255,0.07);
  --line2:    rgba(255,255,255,0.12);
  --blue:     #006af9;
  --blue-2:   #5ba5ff;
  --blue-dim: rgba(0,106,249,0.12);
  --blue-glow:rgba(0,106,249,0.35);
  --muted:    #7a869a;
  --text:     #e8edf5;
  --silver:   #b8c2d0;
  --radius:   14px;
  --page:     1160px;
  --gutter:   clamp(18px, 4vw, 40px);
  --side:     max(var(--gutter), calc((100vw - var(--page)) / 2));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
}

input, textarea { -webkit-user-select: text; user-select: text; }

h1, h2, h3, .brand strong, .btn, .kicker, .badge {
  font-family: Outfit, Montserrat, sans-serif;
}

::selection { background: rgba(0,106,249,0.3); color: #fff; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
code { color: var(--blue-2); }

/* ─── POZADÍ ─── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
}

.mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 65% -80px, rgba(0,106,249,0.13), transparent),
    radial-gradient(ellipse 400px 300px at 5% 90%, rgba(0,60,160,0.09), transparent);
}

.orb { display: none; }
.orb-a, .orb-b { display: none; }

/* ─── NAVIGACE ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--side);
  height: 68px;
  background: rgba(8,11,18,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #fff;
}

.brand small {
  display: block;
  color: var(--blue-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(16,20,32,0.6);
  color: var(--text);
  font: 600 11px/1 Montserrat, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s;
}

.status-pill:hover { border-color: rgba(255,255,255,0.2); }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6b7688;
  box-shadow: 0 0 0 3px rgba(107,118,136,0.15);
}
.dot.online  { background: #2ee87a; box-shadow: 0 0 0 3px rgba(46,232,122,0.18); }
.dot.offline { background: #ff4d6a; box-shadow: 0 0 0 3px rgba(255,77,106,0.18); }

/* Nav links */
.links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.links a,
.mobile-nav a,
.footer-cols a,
.socials a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.links a {
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.links a.is-active { color: #fff; background: var(--blue-dim); }
.mobile-nav a:hover, .footer-cols a:hover, .socials a:hover { color: #fff; }

/* Tlačítka */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}

.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 22px rgba(0,106,249,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,106,249,0.55); opacity: 0.93; }

.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 6px 22px rgba(88,101,242,0.4);
}
.btn-discord:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--blue); color: #fff; background: var(--blue-dim); }

.btn-lg { padding: 14px 26px; font-size: 13px; }

/* Nav login btn */
.nav .btn-primary {
  padding: 8px 16px;
  font-size: 11px;
  border-radius: 8px;
}

.nav-login-btn {
  background: var(--blue) !important;
  box-shadow: 0 4px 16px rgba(0,106,249,0.35) !important;
}

/* User menu */
.nav-user { position: relative; }

.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  background: var(--panel);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}
.user-btn:hover { border-color: var(--blue); }

.user-avatar-wrap { position: relative; display: inline-block; }
.user-btn img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.user-online-badge {
  position: absolute; bottom: -1px; right: -1px;
  width: 8px; height: 8px;
  background: #2ee87a;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.user-chevron { width: 13px; height: 13px; color: var(--muted); transition: color 0.2s; }
.user-btn:hover .user-chevron { color: #fff; }
.user-btn span { font: 700 12px Outfit, Montserrat, sans-serif; }

.user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 220px;
  padding: 12px;
  border: 1px solid var(--line2);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 30;
}
.user-stat { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.user-menu a { display: block; margin-top: 8px; color: var(--blue-2); font-size: 13px; font-weight: 700; }
.user-menu a[href="/auth/logout"] { color: #ff8da0; }

/* Mobile nav */
.menu-btn {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 16px; height: 2px;
  margin: 4px auto;
  background: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--side) 16px;
  background: rgba(8,11,18,0.98);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 12px; border-radius: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.04); }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 60px var(--side) 60px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 800;
}
.hero-brand span { color: var(--blue); }

.hero-note {
  margin: 0 0 20px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 4px;
}

.stat-row {
  display: flex;
  gap: 12px;
  margin: 28px 0 24px;
}

.stat {
  padding: 14px 20px;
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: 12px;
  min-width: 130px;
}
.stat-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat strong { font-size: 24px; font-weight: 800; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-art {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 200px;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,106,249,0.28), transparent 70%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22,1,0.36,1), opacity 0.45s ease;
  pointer-events: none;
}
.hero-slide img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero-slide.is-current { transform: translateX(0); opacity: 1; z-index: 2; }
.hero-slide.is-leaving { transform: translateX(-110%); opacity: 0; z-index: 1; }

/* ─── SEKCE ─── */
.section {
  padding: 80px var(--side);
  position: relative;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

#faq .section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--blue-dim);
  border: 1px solid rgba(0,106,249,0.2);
}

h1, h2 { font-weight: 800; letter-spacing: -0.04em; }
h1 { margin: 0 0 16px; font-size: clamp(36px, 5vw, 60px); line-height: 1; }
h2 { margin: 8px 0 16px; font-size: clamp(28px, 3.2vw, 44px); }

.section-head p, .steps p, .discord-copy p, .footer-brand p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Panely obecně */
.panel, .discord-box, .card, .gallery figure {
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
}

/* ─── KARTY ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card-lg { grid-column: span 2; }

.card {
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(0,106,249,0.4);
  transform: translateY(-4px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--blue-dim);
  border: 1px solid rgba(0,106,249,0.2);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 10px; font-size: 18px; color: #fff; }
.card-lg h3 { font-size: 24px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ─── GALERIE ─── */
body.is-locked { overflow: hidden; }

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  grid-template-rows: 200px 220px;
  gap: 12px;
}

.gallery figure {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  cursor: zoom-in;
  transition: border-color 0.25s, transform 0.25s;
}
.gallery figure:hover { border-color: rgba(0,106,249,0.4); transform: translateY(-3px); }
.gallery img { width: 100%; flex: 1; min-height: 0; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { display: none; }

.gallery figure:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.gallery figure:nth-child(2) { grid-column: 2 / span 2; }
.gallery figure:nth-child(3) { grid-column: 2; }
.gallery figure:nth-child(4) { grid-column: 3; }
.gallery .is-featured { grid-column: 1; grid-row: 1 / span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 48px 24px 28px;
  background: rgba(2,4,8,0.92);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none !important; }
.lightbox img { max-width: min(96vw,1400px); max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: 12px; }
.lightbox p { color: var(--silver); font-size: 14px; font-weight: 600; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  background: var(--panel);
  color: #fff; font-size: 24px; line-height: 1; cursor: pointer;
}

/* ─── PŘIPOJENÍ ─── */
.connect-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
}

.connect-panel--single {
  grid-template-columns: 1fr;
}

.connect-panel--single .connect-copy {
  max-width: 680px;
}

.connect-inline-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.connect-inline-actions .console {
  flex: 1;
  min-width: 240px;
}

.connect-copy { max-width: 480px; }

.steps {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  list-style: none;
}
.steps li { display: flex; gap: 14px; align-items: flex-start; }

.steps span {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,106,249,0.35);
}
.steps div strong { font-size: 14px; color: #fff; }
.steps div p { color: var(--muted); font-size: 14px; margin-top: 2px; }

.connect-side {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
  border-radius: 12px;
  background: var(--blue-dim);
  border: 1px solid rgba(0,106,249,0.22);
}
.connect-side h3 { font-size: 22px; letter-spacing: -0.03em; color: #fff; }

.console {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(4,6,12,0.8);
  border: 1px solid var(--line2);
  border-radius: 10px;
}
.console span { color: var(--blue-2); font-size: 10px; font-weight: 800; letter-spacing: 0.05em; }
.console code { flex: 1; color: var(--silver); font-size: 12px; }
.console button {
  border: 0; background: transparent;
  color: var(--muted);
  font: 700 10px Montserrat, sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: color 0.2s;
}
.console button:hover { color: #fff; }

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line2);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(0,106,249,0.35); }
.faq-item[open] { border-color: rgba(0,106,249,0.5); }

.faq-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }

.faq-q-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-dim);
  border: 1px solid rgba(0,106,249,0.25);
  color: var(--blue-2);
  font: 800 14px/1 Outfit, Montserrat, sans-serif;
}
.faq-item[open] .faq-q-icon { background: var(--blue); color: #fff; border-color: transparent; }

.faq-title {
  flex: 1;
  font: 700 15px/1.4 Outfit, Montserrat, sans-serif;
  color: #fff;
}

.faq-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); color: var(--blue-2); }

.faq-content {
  padding: 0 22px 20px 66px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.75;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.faq-content strong { color: #fff; }

/* ─── DISCORD BOX ─── */
.discord-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 48px;
  align-items: center;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid rgba(88,101,242,0.3);
  overflow: hidden;
}

.discord-glow-bg {
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,101,242,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.discord-copy { position: relative; z-index: 2; }

.discord-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.badge-discord {
  background: rgba(88,101,242,0.15) !important;
  border: 1px solid rgba(88,101,242,0.4) !important;
  color: #a4b4ff !important;
}
.badge-icon { width: 12px; height: 12px; flex-shrink: 0; }

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(46,232,122,0.1);
  border: 1px solid rgba(46,232,122,0.3);
  color: #2ee87a;
  font: 800 10px/1 Montserrat, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.live-pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2ee87a;
  animation: pulseLive 2s infinite ease-in-out;
}
@keyframes pulseLive {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.discord-copy h2 { font-size: 36px; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 12px; }
.discord-copy p { color: var(--silver); font-size: 14px; line-height: 1.65; margin-bottom: 8px; }
.grad {
  background: linear-gradient(90deg, #fff 0%, #8ea7ff 60%, #5865F2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.promo {
  margin: 14px 0 18px;
  padding: 12px 16px;
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 10px;
  background: rgba(88,101,242,0.08);
  color: #c9d5ff;
  font-size: 13px;
}

.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(16,21,34,0.6);
  border: 1px solid var(--line2);
  color: #fff;
}
.pill b { min-width: 16px; }
.pill-online { border-color: rgba(46,232,122,0.3); background: rgba(46,232,122,0.07); }
.pill-online b { color: #2ee87a; }
.pill-icon { width: 13px; height: 13px; flex-shrink: 0; color: var(--blue-2); }

.discord-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Discord visual */
.discord-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.discord-radar-fx { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }

.radar-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(88,101,242,0.15);
}
.radar-1 { width: 220px; height: 220px; animation: radarSpin 40s linear infinite; }
.radar-2 { width: 300px; height: 300px; border-style: solid; border-color: rgba(0,106,249,0.1); animation: radarSpin 60s linear infinite reverse; }
.radar-3 { width: 380px; height: 380px; border-color: rgba(88,101,242,0.07); animation: radarSpin 80s linear infinite; }
@keyframes radarSpin { to { transform: rotate(360deg); } }

.discord-center-wrap { position: relative; display: grid; place-items: center; z-index: 3; }

.discord-logo-glow {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,101,242,0.5) 0%, transparent 70%);
  filter: blur(24px);
  animation: logoPulse 4s infinite ease-in-out;
}
@keyframes logoPulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; transform: scale(1.1); } }

.discord-logo {
  position: relative;
  width: 160px; height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #5865F2 0%, #3942b0 100%);
  box-shadow: 0 14px 40px rgba(88,101,242,0.5);
  border: 3px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.discord-logo:hover { transform: scale(1.06); box-shadow: 0 20px 55px rgba(88,101,242,0.7); }
.discord-logo svg { width: 76px; height: auto; }

.discord-floating-tag {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10,14,22,0.9);
  border: 1px solid rgba(88,101,242,0.3);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  animation: floatTag 6s ease-in-out infinite;
}
.discord-floating-tag.tag-top { top: 24px; right: 16px; animation-delay: 0s; }
.discord-floating-tag.tag-bottom { bottom: 24px; left: 16px; animation-delay: -3s; }
.tag-status { width: 7px; height: 7px; border-radius: 50%; background: #5865F2; box-shadow: 0 0 6px #5865F2; }
@keyframes floatTag { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  z-index: 8;
  padding: 56px var(--side) 28px;
  border-top: 1px solid var(--line);
  background: var(--bg2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-name img { width: 36px; height: 36px; object-fit: contain; }
.footer-name strong { font-size: 15px; letter-spacing: 0.06em; color: #fff; }
.footer-brand p { max-width: 320px; font-size: 14px; }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line2);
  border-radius: 8px;
  font-size: 11px;
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s;
}
.socials a svg { width: 14px; height: 14px; flex: 0 0 auto; }
.socials a:hover { border-color: var(--blue); color: #fff; }
.socials a.soc-play {
  background: var(--blue);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,106,249,0.3);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h3 {
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-cols a {
  display: block;
  margin: 8px 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}
.ops { color: var(--blue-2); }

/* ─── ANIMACE ─── */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="left"]  { transform: translate3d(-60px, 0, 0); }
[data-animate="right"] { transform: translate3d(60px, 0, 0); }
[data-animate="up"]    { transform: translate3d(0, 40px, 0); }
[data-animate].in { opacity: 1; transform: none; }

.cards [data-animate]:nth-child(2) { transition-delay: 0.07s; }
.cards [data-animate]:nth-child(3) { transition-delay: 0.14s; }
.cards [data-animate]:nth-child(4) { transition-delay: 0.21s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── RESPONZIVITA ─── */
@media (max-width: 980px) {
  .links, .nav #navLogin { display: none; }
  .menu-btn { display: block; }

  .hero, .connect-panel, .connect-panel--single, .discord-box, .footer-top, .footer-cols {
    grid-template-columns: 1fr;
  }

  .cards { grid-template-columns: 1fr 1fr; }
  .card-lg { grid-column: span 2; }

  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gallery figure, .gallery figure:nth-child(n), .gallery .is-featured { grid-column: auto; grid-row: auto; height: auto; }
  .gallery img { height: 200px; flex: none; }

  .hero { min-height: unset; gap: 40px; }
  .hero-art { min-height: 320px; order: -1; }
  .hero-slider { height: 340px; }

  .discord-box { padding: 32px 24px; gap: 24px; }
  .discord-visual { min-height: 280px; }
  .radar-1 { width: 180px; height: 180px; }
  .radar-2 { width: 240px; height: 240px; }
  .radar-3 { width: 300px; height: 300px; }
  .discord-logo { width: 130px; height: 130px; }
  .discord-logo svg { width: 62px; }
}

@media (max-width: 640px) {
  .nav, .hero, .section, .site-footer, .mobile-nav { padding-left: 18px; padding-right: 18px; }
  .connect-panel, .discord-box, .connect-side { padding: 22px; }
  .discord-copy h2 { font-size: 26px; }
  .discord-floating-tag.tag-top { top: 8px; right: 4px; font-size: 10px; padding: 5px 10px; }
  .discord-floating-tag.tag-bottom { bottom: 8px; left: 4px; font-size: 10px; padding: 5px 10px; }
  .console { flex-wrap: wrap; }
  .stat-row { flex-direction: column; }
  .cards { grid-template-columns: 1fr; }
  .card-lg { grid-column: auto; }
  .faq-content { padding: 0 16px 18px 16px; }
  .faq-summary { padding: 15px 16px; gap: 10px; }
}
