/* ── Reset & Base ─────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #e4e4e7;
  background: #08080c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Navbar ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 12, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-brand span {
  background: linear-gradient(135deg, #df6035, #f5c842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-links a.nav-active {
  color: #df6035;
}

@media (max-width: 480px) {
  .nav-links { gap: 0.8rem; }
  .nav-links a { font-size: 0.7rem; }
}

/* ── Scroll Progress ──────────────────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #df6035, #f5c842, #ffb25b);
  z-index: 100;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(223, 96, 53, 0.07), transparent 45%),
    radial-gradient(circle at 30% 30%, rgba(245, 200, 66, 0.03), transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
  animation: heroGridDrift 20s linear infinite;
}

@keyframes heroGridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(80px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 680px;
}

.hero-avatar {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  filter: drop-shadow(0 0 20px rgba(223, 96, 53, 0.25));
}

.hero-avatar:hover {
  filter: drop-shadow(0 0 30px rgba(223, 96, 53, 0.4));
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-title-accent {
  background: linear-gradient(135deg, #df6035, #f5c842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

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

.hero-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(223, 96, 53, 0.15);
}

.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
}


/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: rgba(223, 96, 53, 0.12);
  border-color: rgba(223, 96, 53, 0.3);
  color: #ffb25b;
}

.btn-primary:hover {
  background: rgba(223, 96, 53, 0.2);
  border-color: rgba(223, 96, 53, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.btn-coin {
  background: rgba(245, 200, 66, 0.12);
  border-color: rgba(245, 200, 66, 0.3);
  color: #f5c842;
}

.btn-coin:hover {
  background: rgba(245, 200, 66, 0.2);
  border-color: rgba(245, 200, 66, 0.5);
}

/* ── Sections ─────────────────────────────────────────────────────────── */

.section {
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}

.section-shell {
  max-width: 1060px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #df6035;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 520px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Discord Layout ───────────────────────────────────────────────────── */

.discord-mockup {
  display: flex;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #111214;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  height: 520px;
  max-width: 1060px;
  margin: 0 auto;
}

.discord-sidebar {
  width: 220px;
  background: #1e1f22;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.discord-server-header {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discord-server-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}

.discord-channels {
  padding: 0.5rem;
  flex: 1;
  overflow: hidden;
}

.discord-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  padding: 1rem 0.5rem 0.25rem;
}

.discord-channel {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.3rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 4px;
}

.discord-channel.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.discord-hash {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.discord-voice-icon {
  font-size: 0.7rem;
  opacity: 0.5;
}

.discord-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #313338;
  min-width: 0;
}

.discord-toolbar {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.discord-toolbar-hash {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
}

.discord-messages {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.discord-msg {
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
}

.discord-msg.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.discord-msg-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.discord-msg-avatar--img {
  overflow: hidden;
  padding: 0;
  background: none;
}

.discord-msg-avatar--img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.discord-msg-body { min-width: 0; }

.discord-msg-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}

.discord-msg-name { font-size: 0.875rem; font-weight: 600; }

.discord-msg-badge {
  font-size: 0.55rem;
  font-weight: 600;
  background: #5865F2;
  color: #fff;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.discord-msg-time { font-size: 0.68rem; color: rgba(255, 255, 255, 0.2); }

.discord-msg-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.discord-mention {
  color: #7289da;
  background: rgba(114, 137, 218, 0.15);
  padding: 0 2px;
  border-radius: 3px;
}

.discord-embed {
  margin-top: 0.3rem;
  padding: 0.6rem 0.8rem;
  border-left: 3px solid #5865F2;
  background: rgba(47, 49, 54, 0.6);
  border-radius: 0 4px 4px 0;
}

.discord-input {
  padding: 0.7rem 1rem;
  margin: 0 1rem 1rem;
  background: #383a40;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  min-height: 36px;
  transition: color 0.15s;
}

.discord-input.typing {
  color: rgba(255, 255, 255, 0.7);
}

/* Members Panel */
.discord-members {
  width: 220px;
  background: #2b2d31;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.discord-members-header {
  padding: 0.75rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.discord-members-list {
  flex: 1;
  padding: 0.5rem 0.5rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.discord-member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
}

.discord-member:hover {
  background: rgba(255, 255, 255, 0.04);
}

.discord-member-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.discord-member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.discord-member-status {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #2b2d31;
}

.discord-member-status.online { background: #23a559; }
.discord-member-status.idle { background: #f0b232; }
.discord-member-status.dnd { background: #f23f43; }

.discord-member-name {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Game Hero Sections (Vollflaechig) ────────────────────────────────── */

.game-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.game-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  image-rendering: auto;
}

.game-hero:hover .game-hero-bg {
  transform: scale(1.03);
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.7) 40%, rgba(8, 8, 12, 0.3) 70%, transparent 100%);
  z-index: 1;
}

.game-hero-right .game-hero-overlay {
  background: linear-gradient(270deg, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.7) 40%, rgba(8, 8, 12, 0.3) 70%, transparent 100%);
}

.game-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 4rem clamp(2rem, 6vw, 6rem);
}

.game-hero-right .game-hero-content {
  margin-left: auto;
}

.game-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.game-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

/* Coming Soon Ribbon */
.game-hero-ribbon {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  z-index: 3;
  background: linear-gradient(135deg, #f5c842, #df6035);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(245, 200, 66, 0.3);
}

/* Trennlinie zwischen Game Sections */
.game-hero + .game-hero {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Games Coming Section ────────────────────────────────────────────── */

.games-coming {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.games-coming-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.games-coming-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.4);
  min-height: 0;
}

.games-coming-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 8, 12, 0.75) 0%, rgba(8, 8, 12, 0.92) 70%);
  z-index: 1;
}

.games-coming-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 4rem 1.5rem;
}

.games-coming-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.games-coming-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── JorgeCoin Section ────────────────────────────────────────────────── */

.jc-section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.jc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 200, 66, 0.08), transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(223, 96, 53, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 200, 66, 0.04), transparent 50%);
  pointer-events: none;
}

.jc-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.jc-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}

.jc-title-accent {
  background: linear-gradient(135deg, #f5c842 0%, #df6035 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.jc-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 auto 3rem;
  max-width: 600px;
}

/* ── Coin Stage ───────────────────────────────────────────────────────── */

.jc-stage {
  position: relative;
  width: min(520px, 100%);
  height: 360px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.jc-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 200, 66, 0.35), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: jc-pulse 4s ease-in-out infinite;
}

@keyframes jc-pulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.jc-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, 0.18);
  pointer-events: none;
}

.jc-ring--1 {
  width: 260px; height: 260px;
  transform: translate(-50%, -50%) rotateX(65deg);
  border-color: rgba(245, 200, 66, 0.22);
  animation: jc-ring-rotate 24s linear infinite;
}

.jc-ring--2 {
  width: 340px; height: 340px;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(30deg);
  border-color: rgba(223, 96, 53, 0.18);
  border-style: dashed;
  animation: jc-ring-rotate 40s linear infinite reverse;
}

.jc-ring--3 {
  width: 420px; height: 420px;
  transform: translate(-50%, -50%) rotateX(72deg) rotateZ(-15deg);
  border-color: rgba(255, 255, 255, 0.06);
  animation: jc-ring-rotate 60s linear infinite;
}

@keyframes jc-ring-rotate {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
  to   { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

.jc-coin {
  position: relative;
  width: 180px;
  height: 180px;
  transform-style: preserve-3d;
  animation: jc-coin-spin 8s ease-in-out infinite, jc-coin-float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(245, 200, 66, 0.4));
}

.jc-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes jc-coin-spin {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes jc-coin-float {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -12px; }
}

/* ── Floating Transaction Labels ──────────────────────────────────────── */

.jc-tx {
  position: absolute;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  opacity: 0;
  animation: jc-tx-float 6s ease-in-out infinite;
}

.jc-tx--g {
  background: rgba(35, 165, 89, 0.14);
  border-color: rgba(35, 165, 89, 0.4);
  color: #4ade80;
}

.jc-tx--r {
  background: rgba(242, 63, 67, 0.14);
  border-color: rgba(242, 63, 67, 0.4);
  color: #f87171;
}

.jc-tx--a { top: 15%; left: 8%;  animation-delay: 0s; }
.jc-tx--b { top: 22%; right: 5%; animation-delay: 1.5s; }
.jc-tx--c { bottom: 22%; left: 10%; animation-delay: 3s; }
.jc-tx--d { bottom: 18%; right: 8%; animation-delay: 4.5s; }

@keyframes jc-tx-float {
  0%   { opacity: 0; transform: translateY(10px) scale(0.9); }
  15%  { opacity: 1; transform: translateY(0) scale(1); }
  70%  { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { opacity: 0; transform: translateY(-40px) scale(0.9); }
}

/* ── Features ─────────────────────────────────────────────────────────── */

.jc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.jc-feature {
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.jc-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 200, 66, 0.3);
  background: rgba(245, 200, 66, 0.04);
}

.jc-feature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #f5c842;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.jc-feature span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.jc-cta {
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.footer {
  margin-top: 2rem;
  padding: 3rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer-wordmark {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 13vw, 10rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(223, 96, 53, 0.2);
  paint-order: stroke fill;
  position: relative;
  padding: 0.1em 0 1.5rem;
  user-select: none;
}

.footer-wordmark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(600px, 80%);
  height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(223, 96, 53, 0.1), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.footer-meta {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Legal / Impressum ────────────────────────────────────────────────── */

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem;
}

.legal-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-page__header .footer-wordmark {
  font-size: clamp(2rem, 10vw, 6rem);
  padding-bottom: 0.5rem;
}

.legal-page__shell {
  max-width: 600px;
  width: 100%;
}

.legal-page__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #df6035;
  margin-bottom: 0.5rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-page__lead {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2.5rem;
}

.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
}

.legal-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.75rem;
}

.legal-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.legal-card a {
  color: #df6035;
  transition: color 0.2s;
}

.legal-card a:hover {
  color: #ffb25b;
}

.legal-page__section-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 1rem;
  position: relative;
}

.legal-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}

.legal-page__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}

/* ── Animations ───────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .discord-members { display: none; }
}

@media (max-width: 768px) {
  .discord-sidebar { display: none; }

  .discord-mockup {
    height: 400px;
  }

  .game-hero { min-height: 400px; }

  .game-hero-overlay {
    background: linear-gradient(0deg, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.6) 50%, rgba(8, 8, 12, 0.3) 100%) !important;
  }

  .game-hero-content {
    padding: 3rem 1.5rem;
    margin-left: 0 !important;
  }

  .games-coming { min-height: 400px; }

  .games-coming-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .jc-stage {
    height: 300px;
  }

  .jc-coin {
    width: 140px;
    height: 140px;
  }

  .jc-ring--1 { width: 200px; height: 200px; }
  .jc-ring--2 { width: 270px; height: 270px; }
  .jc-ring--3 { width: 340px; height: 340px; }

  .jc-features {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .jc-tx { font-size: 0.75rem; padding: 0.3rem 0.65rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 1.4rem; }
  .game-hero-title { font-size: 1.8rem; }
  .games-coming-title { font-size: 1.8rem; }
}
