/* ===== MYSTORY landing — orange ReallyWorld-inspired theme ===== */

:root {
  --bg: #f4f5f8;
  --bg-card: #ffffff;
  --text: #0f1320;
  --text-soft: #5a6172;
  --muted: #98a0b3;
  --line: #ececef;
  --line-soft: #f2f3f5;

  --orange-50:  #fff3e6;
  --orange-100: #ffe1c2;
  --orange-300: #ffb066;
  --orange-500: #ff7a1a;
  --orange-600: #f37527;
  --orange-700: #de5c10;

  --red-500:    #ff3535;

  --shadow-sm: 0 4px 18px rgba(20, 24, 40, 0.06);
  --shadow-md: 0 10px 40px rgba(20, 24, 40, 0.08);
  --shadow-lg: 0 24px 80px rgba(20, 24, 40, 0.10);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 32px;
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, canvas, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==================== HEADER ==================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 248, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 19, 32, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe9c2 0%, #ffd28a 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand-mark-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0 6px, transparent 6px 12px),
    radial-gradient(circle at 30% 30%, rgba(255,122,26,0.18), transparent 65%);
}
.brand-mark-cactus {
  position: relative;
  width: 78%; height: 78%;
  image-rendering: pixelated;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.18));
}
.brand-mark.brand-mark-sm { width: 40px; height: 40px; border-radius: 10px; }

.brand-text { line-height: 1; }
.brand-name {
  display: block;
  font-family: 'Press Start 2P', 'Inter', sans-serif;
  font-size: 16px;
  color: var(--red-500);
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255,53,53,0.18);
}
.brand-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 28px;
  flex: 1;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-item:hover { color: var(--text); }
.nav-item-active {
  color: var(--text);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.nav-item-active .nav-icon {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  background: var(--orange-500);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.4);
}
.nav-item .nav-icon { display: none; }

.header-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 12px 22px;
  background: var(--bg-card);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  letter-spacing: 0.4px;
}
.header-cta-port { color: var(--orange-500); }

/* ==================== HERO ==================== */

.hero {
  position: relative;
  padding: 36px 0 130px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 28px 28px auto 28px;
  height: 520px;
  z-index: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 80% at 80% 50%, #ff8a3b 0%, #f56b1a 40%, #d9530c 100%);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(220, 90, 16, 0.32);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.55;
}
.hero-blob-1 { top: -60px; left: -40px; width: 360px; height: 360px; background: #ffd093; }
.hero-blob-2 { bottom: -80px; right: -60px; width: 420px; height: 420px; background: #ffb066; }

.hero-castle {
  position: absolute;
  inset: 0;
  background:
    /* horizontal grid lines */
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,0.06) 119px 120px),
    /* castle silhouette via radial gradients */
    radial-gradient(ellipse 800px 240px at 50% 100%, rgba(180, 60, 8, 0.55), transparent 70%),
    radial-gradient(circle  50px at 30% 70%, rgba(110, 30, 5, 0.45), transparent 70%),
    radial-gradient(circle  70px at 50% 65%, rgba(110, 30, 5, 0.5), transparent 70%),
    radial-gradient(circle  60px at 70% 70%, rgba(110, 30, 5, 0.45), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Press Start 2P', sans-serif;
  font-size: 260px;
  letter-spacing: 22px;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Floating cubes */
.hero-cube {
  position: absolute;
  background: linear-gradient(135deg, #8b4a1e 0%, #5b2f10 100%);
  border-radius: 6px;
  box-shadow:
    inset 0 -8px 0 rgba(0,0,0,0.25),
    inset 0 8px 0 rgba(255,255,255,0.1),
    0 10px 30px rgba(0,0,0,0.25);
  animation: float 9s ease-in-out infinite;
}
.hero-cube::before {
  content: '';
  position: absolute; inset: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  border-radius: 4px;
}
.hero-cube-1 { top:  60px; left:  60px; width: 70px; height: 70px; transform: rotate(-18deg); animation-delay: 0s; }
.hero-cube-2 { top: 200px; left:  20px; width: 50px; height: 50px; transform: rotate( 12deg); animation-delay: -3s; }
.hero-cube-3 { top: 350px; left: 110px; width: 60px; height: 60px; transform: rotate(-25deg); animation-delay: -6s; }
.hero-cube-4 { top:  50px; right: 100px; width: 56px; height: 56px; transform: rotate( 20deg); animation-delay: -2s; background: linear-gradient(135deg, #6fae3a, #3d6f1d);}
.hero-cube-5 { top: 280px; right:  60px; width: 76px; height: 76px; transform: rotate(-15deg); animation-delay: -5s; }
.hero-cube-6 { top: 420px; right: 200px; width: 44px; height: 44px; transform: rotate( 30deg); animation-delay: -7s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-18px) rotate(var(--r, 0deg)); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 480px;
  padding: 80px 60px 60px;
}

.hero-text { color: #fff; }
.hero-title {
  font-size: 56px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.hero-title-1 {
  display: block;
  font-family: 'Press Start 2P', sans-serif;
  font-size: 44px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 14px;
}
.hero-title-2 {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.05;
  color: #fff;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 30px;
  max-width: 460px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: #fff;
  color: var(--orange-700);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(0,0,0,0.24); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-arrow { font-size: 18px; transform: translateY(-1px); }
.btn-lg { padding: 16px 26px; font-size: 14px; }

/* Hero skin */
.hero-skin {
  position: relative;
  height: 480px;
  display: grid;
  place-items: center;
}
.hero-skin-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
#skinCanvas, #skinCanvas2 {
  position: relative;
  z-index: 1;
  cursor: grab;
}
#skinCanvas:active, #skinCanvas2:active { cursor: grabbing; }
.hero-skin-fallback, .join-skin-fallback {
  position: absolute;
  width: 180px;
  image-rendering: pixelated;
  opacity: 0;
  pointer-events: none;
}
.hero-skin.no-3d .hero-skin-fallback {
  opacity: 1;
  width: 200px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
}
.hero-skin.no-3d #skinCanvas { display: none; }
.join-skin.no-3d .join-skin-fallback {
  opacity: 1;
  width: 160px;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,0.18));
}
.join-skin.no-3d #skinCanvas2 { display: none; }

/* Server card */
.server-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  width: calc(100% - 56px);
  max-width: 1184px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 30px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: transform 0.15s, box-shadow 0.2s;
}
.server-card:hover { transform: translateX(-50%) translateY(-2px); box-shadow: var(--shadow-lg); }

.server-card-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.4);
}
.server-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.server-card-stat {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  margin: 4px 0 10px;
}
.server-card-stat b { color: var(--text); font-weight: 800; }
.server-card-progress {
  width: 100%; max-width: 320px;
  height: 6px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
}
.server-card-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-700));
  transition: width 0.6s ease;
}

.server-card-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.server-card-copy:hover { background: var(--orange-100); border-color: var(--orange-300); }
.server-card-copy:active { transform: scale(0.98); }
.server-card-copy-icon { display: grid; place-items: center; }

/* ==================== FEATURES ==================== */
.features { padding: 130px 0 60px; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--orange-50);
  color: var(--orange-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.section-title .accent { color: var(--orange-500); }
.section-lead { font-size: 16px; color: var(--text-soft); max-width: 560px; margin: 0 auto; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.3);
}
.feat-card-icon-1 { background: linear-gradient(135deg, #ff7a1a, #de5c10); box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35); }
.feat-card-icon-2 { background: linear-gradient(135deg, #ffb066, #ff7a1a); }
.feat-card-icon-3 { background: linear-gradient(135deg, #ff8c4a, #f37527); }
.feat-card-icon-4 { background: linear-gradient(135deg, #ff5a1f, #d9530c); }
.feat-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.feat-card-text { font-size: 14px; color: var(--text-soft); margin: 0; }

/* ==================== JOIN ==================== */

.join { padding: 60px 0; }

.join-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.join-card::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  right: -100px; top: -100px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.10), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.join-skin {
  position: relative;
  width: 280px; height: 340px;
  display: grid; place-items: center;
}
.join-skin-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-50), transparent 70%);
  border-radius: var(--radius-lg);
}

.join-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}
.join-sub {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 26px;
  line-height: 1.55;
}
.join-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.join-version { line-height: 1.2; }
.join-version-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.join-version-value {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.join-copy {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 122, 26, 0.45);
}
.join-copy:hover { box-shadow: 0 16px 36px rgba(255, 122, 26, 0.55); }
.btn-icon-after { display: grid; place-items: center; }

/* ==================== COMMUNITY ==================== */

.community { padding: 60px 0 100px; }
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.community-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.community-card:hover { transform: translateY(-3px); }
.community-card-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  grid-column: 1 / -1 !important;
  grid-row: 1 / -1 !important;
}
.community-card-discord {
  background: linear-gradient(135deg, #5865F2, #404eed);
  box-shadow: 0 14px 38px rgba(88, 101, 242, 0.4);
}
.community-card-telegram {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  box-shadow: 0 14px 38px rgba(42, 171, 238, 0.38);
}
.community-card > *:not(.community-card-bg) { position: relative; z-index: 1; }
.community-card-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: grid; place-items: center;
}
.community-card-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}
.community-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
}
.community-card-arrow {
  font-size: 28px;
  font-weight: 300;
  opacity: 0.85;
  transition: transform 0.2s;
}
.community-card:hover .community-card-arrow { transform: translateX(4px); }

/* ==================== FOOTER ==================== */

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  padding: 36px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr auto;
  align-items: center;
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand-name {
  font-family: 'Press Start 2P', sans-serif;
  font-size: 14px;
  color: var(--red-500);
  letter-spacing: 1.2px;
}
.footer-brand-sub { font-size: 12px; color: var(--muted); margin-top: 6px; }

.footer-note { font-size: 12px; color: var(--text-soft); line-height: 1.5; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-500); }

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-social-discord  { background: linear-gradient(135deg, #5865F2, #404eed); box-shadow: 0 6px 14px rgba(88,101,242,0.4); }
.footer-social-telegram { background: linear-gradient(135deg, #2AABEE, #229ED9); box-shadow: 0 6px 14px rgba(42,171,238,0.4); }
.footer-social:hover { transform: translateY(-2px); }

/* ==================== REVEAL ==================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0.001;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 22px;
  background: #0f1320;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1080px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding: 50px 30px; text-align: center; min-height: 0; }
  .hero-text { order: 2; }
  .hero-cta-row { justify-content: center; }
  .hero-title-1 { font-size: 32px; }
  .hero-title-2 { font-size: 30px; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-skin { height: 380px; }
  .hero-bg { height: auto; inset: 16px; bottom: 80px; }
  .hero-watermark { font-size: 140px; letter-spacing: 12px; }
  .server-card { position: relative; left: auto; transform: none; bottom: auto; margin: 28px 16px 0; width: auto; grid-template-columns: 1fr; text-align: center; }
  .server-card:hover { transform: translateY(-2px); }
  .server-card-progress { margin: 0 auto; }
  .nav { display: none; }
  .header-cta-port { display: inline; }
  .features { padding-top: 70px; }
  .section-title { font-size: 28px; }
  .join-card { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
  .join-skin { margin: 0 auto; }
  .join-meta { justify-content: center; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links, .footer-socials { justify-content: center; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .hero-title-1 { font-size: 26px; letter-spacing: 2px; }
  .hero-title-2 { font-size: 24px; }
  .hero-watermark { display: none; }
  .header-cta { padding: 10px 14px; font-size: 12px; }
  .header-inner { height: 70px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark .brand-mark-face { width: 44px; height: 44px; transform: scale(2.1); }
  .container { padding: 0 18px; }
  .section-title { font-size: 24px; }
  .join-title { font-size: 22px; }
}
