@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700&family=Noto+Sans+Georgian:wght@400;700&display=swap');

:root {
  --purple: #aa44ff;
  --purple-dark: #6600cc;
  --purple-light: #dd99ff;
  --glow: #cc66ff;
}

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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: 'Cinzel', 'Noto Sans Georgian', serif;
  overflow-x: hidden;
}

.lang-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  background: rgba(15, 5, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 7px 10px;
  line-height: 0;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
#langFlag {
  width: 38px;
  height: 28px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.lang-toggle:hover {
  border-color: rgba(170,80,255,0.55);
  box-shadow: 0 0 18px rgba(150,0,255,0.3);
  transform: scale(1.08);
}

/* ═══════════════════════════════════
   SHARED CANVAS BG — fixed full page
═══════════════════════════════════ */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════ */
.section {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.section-hero { min-height: 100vh; }

/* Each section has its own tinted overlay */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Section 1: Hero ── */
.section-hero {
  background: transparent;
}
.section-hero::before {
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,0.97) 100%
  );
}

/* Hero background image */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/mnt/user-data/uploads/1776029281610_image.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
  filter: brightness(0.4) saturate(0.8);
}

/* ── Section 2: Classes ── */
.section-classes { background: #0d0020; }

/* ── Section 3: Gear ── */
.section-gear { background: #00091a; }

/* ── Section 4: Leveling ── */
.section-leveling { background: #040d00; }

/* ── Section 5: Cosmo Stones ── */
.section-stones { background: #0f0525; }

/* SECTION DIVIDER — the "new page" separator */
.section-divider {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(120,40,220,0.3) 10%,
    rgba(180,80,255,0.8) 30%,
    rgba(220,140,255,1) 50%,
    rgba(180,80,255,0.8) 70%,
    rgba(120,40,220,0.3) 90%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(180,80,255,0.5), 0 0 60px rgba(120,40,200,0.3);
  overflow: visible;
}

.section-divider::before {
  content: '✦';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #cc88ff;
  background: #000;
  padding: 0 12px;
  text-shadow: 0 0 20px #aa44ff;
  animation: diamondSpin 8s linear infinite;
}
@keyframes diamondSpin {
  0%   { text-shadow: 0 0 20px #aa44ff; }
  50%  { text-shadow: 0 0 40px #ee99ff, 0 0 80px #aa44ff; }
  100% { text-shadow: 0 0 20px #aa44ff; }
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(100,0,200,0.2);
  background: linear-gradient(180deg, rgba(0,0,0,0.85), transparent);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  gap: 12px;
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: #cc88ff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  image-rendering: pixelated;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #c0a0e0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ee99ff; }

/* ═══════════════════════════════════
   HERO CONTENT
═══════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 14rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(100,0,200,0.25);
  border: 1px solid rgba(150,50,255,0.4);
  border-radius: 40px;
  padding: 8px 24px;
  font-size: 13px;
  letter-spacing: 4px;
  color: #cc88ff;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 1s ease 0.2s both;
}
.season-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #aa44ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #aa44ff;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

.main-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 6vw, 58px);
  letter-spacing: 4px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 60px rgba(170,68,255,0.8), 0 0 20px rgba(120,0,170,0.6);
  margin-bottom: 0.5rem;
  animation: fadeUp 1s ease 0.3s both, titleGlow 3s ease-in-out 1.3s infinite;
  line-height: 1.2;
}
@keyframes titleGlow {
  0%,100% { text-shadow: 0 0 40px rgba(170,68,255,0.7), 0 0 15px rgba(120,0,170,0.5); }
  50%      { text-shadow: 0 0 100px rgba(200,100,255,0.95), 0 0 40px rgba(170,0,200,0.8), 0 0 80px rgba(100,0,170,0.5); }
}

.subtitle {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(13px, 2.5vw, 22px);
  letter-spacing: 8px;
  color: #dd77ff;
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.4s both;
  text-shadow: 0 0 20px rgba(150,50,255,0.6);
}

.hero-divider {
  width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, #9933ff, transparent);
  margin: 0 auto 2rem;
  animation: fadeUp 1s ease 0.5s both;
}

.desc {
  font-size: 16px;
  color: #d0b0ee;
  text-align: center;
  line-height: 2;
  max-width: 520px;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  animation: fadeUp 1s ease 0.6s both;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #7700dd, #aa33ff);
  color: #fff; border: none; border-radius: 4px;
  padding: 14px 40px;
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(136,0,255,0.4);
  transition: all 0.3s ease;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #9900ff, #cc44ff);
  box-shadow: 0 0 60px rgba(170,0,255,0.7);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #cc88ff;
  border: 1px solid rgba(150,50,255,0.5);
  border-radius: 4px;
  padding: 14px 40px;
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover {
  background: rgba(150,50,255,0.15);
  border-color: #cc88ff;
  transform: translateY(-2px);
}

/* Copy IP button */
.btn-copy-ip {
  background: linear-gradient(135deg, #7700dd, #aa33ff);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 40px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(136,0,255,0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-copy-ip:hover {
  background: linear-gradient(135deg, #9900ff, #cc44ff);
  box-shadow: 0 0 60px rgba(170,0,255,0.7);
  transform: translateY(-2px);
}
.btn-copy-ip.copied {
  background: linear-gradient(135deg, #006633, #00aa55);
  box-shadow: 0 0 30px rgba(0,170,85,0.5);
}

/* ═══════════════════════════════════
   SECTION INNER CONTENT
═══════════════════════════════════ */
.section-content {
  position: relative;
  z-index: 10;
  width: 80%;
  margin: 0 auto;
  padding: 5vw 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(20px, 4vw, 34px);
  letter-spacing: 3px;
  color: #fff;
  text-align: center;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 40px rgba(170,68,255,0.6);
}

.section-sublabel {
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(180,120,255,0.6);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.section-hdivider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, #9933ff, transparent);
  margin: 0 auto 3rem;
}

/* FEATURE GRID */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.feat-card {
  background: linear-gradient(145deg, rgba(100,0,180,0.14), rgba(50,0,100,0.08));
  border: 1px solid rgba(150,50,255,0.2);
  border-radius: 12px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,100,255,0.7), transparent);
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(120,40,200,0.08);
  transition: all 0.4s ease;
}
.feat-card:hover {
  border-color: rgba(180,80,255,0.5);
  background: linear-gradient(145deg, rgba(120,0,200,0.22), rgba(60,0,120,0.14));
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(120,40,200,0.25), 0 0 0 1px rgba(180,80,255,0.15);
}
.feat-card:hover::after { width: 120px; height: 120px; background: rgba(120,40,200,0.14); }
.feat-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.feat-title { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #dd99ff; text-transform: uppercase; margin-bottom: 10px; }
.feat-desc { font-size: 13px; color: rgba(220,205,240,0.88); line-height: 1.75; letter-spacing: 0.3px; font-family: 'Cinzel', serif; font-weight: 500; }
.cmd { font-family: 'Courier New', monospace; background: rgba(150,50,255,0.2); border: 1px solid rgba(150,50,255,0.35); border-radius: 3px; padding: 0 5px; font-size: 12px; color: #cc88ff; }
@media (max-width: 680px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .feat-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════
   LEVELING TIMELINE
═══════════════════════════════════ */
.timeline { width: 100%; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }
.tl-level { flex-shrink: 0; width: 80px; text-align: right; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; padding-top: 4px; }
.tl-early  { color: #44ee88; }
.tl-nether { color: #ff8844; }
.tl-timber { color: #ffcc33; }
.tl-elite  { color: #cc66ff; }
.tl-dot-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; position: relative; }
.tl-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; opacity: 0.3; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.5); opacity: 0; } }
.dot-early  { background: #44ee88; box-shadow: 0 0 10px rgba(68,238,136,0.7); }
.dot-early::after  { background: #44ee88; }
.dot-nether { background: #ff8844; box-shadow: 0 0 10px rgba(255,136,68,0.7); }
.dot-nether::after { background: #ff8844; }
.dot-timber { background: #ffcc33; box-shadow: 0 0 10px rgba(255,204,51,0.7); }
.dot-timber::after { background: #ffcc33; }
.dot-elite  { background: #cc66ff; box-shadow: 0 0 10px rgba(204,102,255,0.7); }
.dot-elite::after  { background: #cc66ff; }
.tl-line { width: 1px; flex: 1; background: rgba(255,255,255,0.06); margin-top: 6px; }
.timeline-item:last-child .tl-line { display: none; }
.tl-content { flex: 1; }
.tl-split { display: flex; gap: 12px; align-items: stretch; }
.tl-split-col {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.tl-split-col:hover {
  border-color: rgba(170,80,255,0.5);
  background: rgba(120,0,220,0.1);
  box-shadow: 0 0 20px rgba(150,0,255,0.2);
}
.tl-split-divider { display: none; }
.tl-intro { font-size: 14px; color: rgba(170,155,190,0.72); text-align: center; margin-bottom: 2rem; max-width: 560px; line-height: 1.6; }
.tl-title { font-size: 16px; font-weight: 700; color: rgba(235,225,245,0.95); margin-bottom: 6px; letter-spacing: 0.5px; }
.tl-desc { font-size: 13px; color: rgba(170,155,190,0.72); line-height: 1.65; padding-left: 14px; border-left: 2px solid rgba(255,255,255,0.07); }

/* ═══════════════════════════════════
   COSMO STONES
═══════════════════════════════════ */
.stones-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; width: 100%; }
.stone {
  border-radius: 10px; padding: 14px 12px 12px;
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  display: flex; flex-direction: column; gap: 6px; border: 1px solid;
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.stone::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; opacity: 0.6; }
.stone:hover { transform: translateY(-4px); }
.stone span { font-size: 11px; font-weight: 400; letter-spacing: 0.5px; opacity: 0.65; }
.stone-soul    { background: rgba(80,30,160,0.25);  border-color: rgba(130,60,220,0.5);   color: #c0a0ff; }
.stone-soul::before    { background: linear-gradient(90deg, transparent, rgba(160,100,255,0.8), transparent); }
.stone-soul:hover      { box-shadow: 0 8px 30px rgba(100,40,200,0.3); }
.stone-power   { background: rgba(140,50,10,0.25);  border-color: rgba(200,80,20,0.5);    color: #ffaa77; }
.stone-power::before   { background: linear-gradient(90deg, transparent, rgba(230,100,40,0.8), transparent); }
.stone-power:hover     { box-shadow: 0 8px 30px rgba(180,60,10,0.3); }
.stone-time    { background: rgba(10,80,160,0.25);  border-color: rgba(30,130,220,0.5);   color: #88ccff; }
.stone-time::before    { background: linear-gradient(90deg, transparent, rgba(60,160,255,0.8), transparent); }
.stone-time:hover      { box-shadow: 0 8px 30px rgba(20,100,200,0.3); }
.stone-reality { background: rgba(10,110,55,0.25);  border-color: rgba(20,160,80,0.5);    color: #66eeaa; }
.stone-reality::before { background: linear-gradient(90deg, transparent, rgba(40,200,100,0.8), transparent); }
.stone-reality:hover   { box-shadow: 0 8px 30px rgba(10,140,60,0.3); }
.stone-mind    { background: rgba(130,110,0,0.25);  border-color: rgba(190,160,10,0.5);   color: #ffdd55; }
.stone-mind::before    { background: linear-gradient(90deg, transparent, rgba(220,190,20,0.8), transparent); }
.stone-mind:hover      { box-shadow: 0 8px 30px rgba(170,140,0,0.3); }
.stone-space   { background: rgba(40,40,55,0.35);   border-color: rgba(100,100,130,0.45); color: #bbbbdd; }
.stone-space::before   { background: linear-gradient(90deg, transparent, rgba(150,150,200,0.6), transparent); }
.stone-space:hover     { box-shadow: 0 8px 30px rgba(80,80,120,0.3); }

.btn-readmore {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 10px 28px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(180,130,255,0.8);
  border: 1px solid rgba(150,60,255,0.3);
  border-radius: 4px;
  text-decoration: none;
  background: rgba(100,30,200,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-readmore:hover {
  color: #ee99ff;
  border-color: rgba(200,100,255,0.6);
  background: rgba(120,40,220,0.18);
  box-shadow: 0 0 20px rgba(150,60,255,0.2);
  transform: translateY(-2px);
}
.btn-readmore::after {
  content: ' →';
  opacity: 0.6;
}

.btn-modrinth {
  background: transparent;
  color: #5ddf8a;
  border: 1px solid rgba(80,200,120,0.45);
  border-radius: 4px;
  padding: 14px 0;
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
}
.btn-modrinth:hover {
  background: rgba(80,200,120,0.12);
  border-color: #5ddf8a;
  box-shadow: 0 0 30px rgba(80,200,120,0.25);
  transform: translateY(-2px);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1s ease 0.8s both;
}
.cta-stack .cta-row {
  animation: none;
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   RESPONSIVE — TABLET (≤768px)
═══════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.2rem;
    gap: 8px;
  }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; letter-spacing: 1.5px; }

  .hero-content {
    padding: 9rem 5% 4rem;
  }

  .section-content {
    width: 92%;
    padding: 8vw 4%;
  }

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

  .stones-row { grid-template-columns: repeat(3, 1fr); }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn-copy-ip,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .tl-level { width: 56px; font-size: 12px; }
  .timeline-item { gap: 14px; }

  .footer-inner { padding: 0 1rem; }
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE (≤480px)
═══════════════════════════════════ */
@media (max-width: 480px) {
  .nav-logo { font-size: 13px; letter-spacing: 2px; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 10px; letter-spacing: 1px; }

  .hero-content {
    padding: 7rem 5% 3rem;
  }

  .season-badge {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 7px 14px;
  }

  .subtitle { letter-spacing: 3px; }

  .section-content {
    width: 95%;
    padding: 10vw 3%;
  }

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

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

  .tl-level { display: none; }
  .timeline-item { gap: 12px; }
  .tl-title { font-size: 15px; }
  .tl-split { flex-direction: column; }
  .tl-desc { font-size: 12px; }

  .section-sublabel { font-size: 11px; letter-spacing: 2px; }

  .btn-modrinth { font-size: 12px; letter-spacing: 2px; }

  footer { padding: 3rem 1rem 2rem; }
  .footer-desc { font-size: 13px; }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.97) 0%, #000 100%);
  border-top: 1px solid rgba(120,40,220,0.25);
  text-align: center;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,80,255,0.7), rgba(80,200,130,0.4), transparent);
}
.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
  letter-spacing: 4px;
  color: #cc88ff;
  text-shadow: 0 0 20px rgba(170,68,255,0.5);
}
.footer-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #9933ff, transparent);
}
.footer-desc {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: rgba(180,155,210,0.6);
  line-height: 1.9;
  letter-spacing: 0.8px;
  max-width: 480px;
}
.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: rgba(120,100,150,0.45);
  letter-spacing: 1px;
  line-height: 1.7;
}
