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

:root {
  --ink:    #09111c;
  --deep:   #0d1e30;
  --ocean:  #112744;
  --slate:  #1c3a56;
  --fog:    #2a4f6e;
  --gold:   #c8a84b;
  --gold-l: #e2c87a;
  --gold-d: #96792e;
  --parch:  #f0e3c4;
  --parch2: #d9c89a;
  --mist:   rgba(240,227,196,0.07);
  --line:   rgba(200,168,75,0.18);
  --ff-head: 'Cinzel', 'Georgia', serif;
  --ff-body: 'Crimson Pro', 'Georgia', serif;
  --ease: cubic-bezier(0.22, 0.8, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--parch);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: linear-gradient(to bottom, rgba(9,17,28,0.97), rgba(9,17,28,0));
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(9,17,28,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--line);
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--parch); opacity: 0.5; margin: 0 0.5em; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(240,227,196,0.55);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-l); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold-d);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 11rem 4rem 6rem;
  overflow: hidden;
  border-bottom: 0.5px solid var(--line);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #09111c 0%, #0d1e30 50%, #112744 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.page-hero-eyebrow {
  font-family: var(--ff-head);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold-d);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.page-hero-eyebrow::after { content: ''; width: 40px; height: 0.5px; background: var(--gold-d); }
.page-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--parch);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-hero-title em { font-style: normal; color: var(--gold-l); }
.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,227,196,0.6);
  max-width: 500px;
}

/* ─── HERO (homepage) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(17,39,68,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(13,30,48,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(26,60,90,0.5) 0%, transparent 65%),
    linear-gradient(170deg, #09111c 0%, #0d1e30 40%, #112744 70%, #0d1e30 100%);
}
.stars { position: absolute; inset: 0; pointer-events: none; }
.hero-compass {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  width: 460px;
  animation: compass-spin 80s linear infinite;
}
@keyframes compass-spin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; overflow: hidden; }
.hero-wave svg { display: block; }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) forwards 0.3s;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 32px; height: 0.5px; background: var(--gold-d); }
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--parch);
  text-shadow: 0 0 80px rgba(200,168,75,0.2);
  margin-bottom: 0.15em;
  opacity: 0;
  animation: fade-up 1s var(--ease) forwards 0.5s;
}
.hero-title em { font-style: normal; color: var(--gold-l); display: block; }
.hero-rule { width: 60px; height: 0.5px; background: var(--gold-d); margin: 1.8rem auto; opacity: 0; animation: fade-up 0.9s var(--ease) forwards 0.8s; }
.hero-sub {
  font-size: 1.15rem; font-weight: 300; font-style: italic;
  color: rgba(240,227,196,0.7); max-width: 540px;
  margin: 0 auto 2.8rem; opacity: 0;
  animation: fade-up 0.9s var(--ease) forwards 1s;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fade-up 0.9s var(--ease) forwards 1.2s; }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: var(--ff-head); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; background: var(--gold); color: var(--ink);
  padding: 1rem 2.4rem; border-radius: 2px; text-decoration: none;
  font-weight: 700; transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-secondary {
  font-family: var(--ff-head); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; background: transparent; color: var(--parch);
  padding: 1rem 2.4rem; border: 0.5px solid rgba(240,227,196,0.3);
  border-radius: 2px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-l); transform: translateY(-2px); }

/* ─── CONNECT BAR ─── */
.connect {
  background: var(--deep);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  padding: 3.5rem 4rem;
}
.connect-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 3rem;
}
.connect-label {
  font-family: var(--ff-head); font-size: 0.6rem;
  letter-spacing: 0.3em; color: var(--gold-d);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.connect-ip {
  font-family: 'Courier New', monospace; font-size: 1.05rem;
  color: var(--parch); background: rgba(200,168,75,0.07);
  border: 0.5px solid var(--line); padding: 0.9rem 1.4rem;
  border-radius: 2px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.connect-ip:hover { border-color: var(--gold-d); background: rgba(200,168,75,0.12); }
.connect-ip .copy-btn {
  font-family: var(--ff-head); font-size: 0.55rem; letter-spacing: 0.15em;
  color: var(--gold-d); text-transform: uppercase;
  background: none; border: none; cursor: pointer; transition: color 0.2s;
}
.connect-ip:hover .copy-btn { color: var(--gold); }
.connect-divider {
  text-align: center; font-family: var(--ff-head);
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: rgba(240,227,196,0.25); text-transform: uppercase;
}
.platform-name {
  font-family: var(--ff-head); font-size: 0.85rem;
  font-weight: 600; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 0.8rem;
}

/* ─── SECTION COMMONS ─── */
section { padding: 7rem 4rem; }
.section-eyebrow {
  font-family: var(--ff-head); font-size: 0.6rem;
  letter-spacing: 0.35em; color: var(--gold-d);
  text-transform: uppercase; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow::after { content: ''; flex: 1; height: 0.5px; background: var(--line); max-width: 60px; }
.section-title {
  font-family: var(--ff-head); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--parch); line-height: 1.15; margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: rgba(240,227,196,0.6); max-width: 520px; margin-bottom: 4rem;
}
.max-w { max-width: 1100px; margin: 0 auto; }

/* ─── FEATURES ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 0.5px solid var(--line); border-radius: 3px; overflow: hidden;
}
.feature-card {
  background: var(--ink); padding: 2.5rem 2rem;
  transition: background 0.3s; position: relative;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--gold-d), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.feature-card:hover { background: rgba(17,39,68,0.6); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 44px; height: 44px; margin-bottom: 1.4rem; color: var(--gold-d); transition: color 0.3s; }
.feature-card:hover .feature-icon { color: var(--gold); }
.feature-title {
  font-family: var(--ff-head); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--parch); margin-bottom: 0.7rem; text-transform: uppercase;
}
.feature-desc { font-size: 0.92rem; font-weight: 300; color: rgba(240,227,196,0.55); line-height: 1.7; }

/* ─── STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; counter-reset: steps; }
.step { counter-increment: steps; position: relative; }
.step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--ff-head); font-size: 3.5rem; font-weight: 900;
  color: rgba(200,168,75,0.08); line-height: 1; display: block;
  margin-bottom: 0.5rem; letter-spacing: -0.03em;
}
.step-title { font-family: var(--ff-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.step-desc { font-size: 0.95rem; font-weight: 300; color: rgba(240,227,196,0.6); line-height: 1.7; }
.step-connector { position: absolute; top: 1.6rem; right: -1.5rem; width: 1px; height: 30px; background: var(--line); }
.step:last-child .step-connector { display: none; }

/* ─── RULES ─── */
.rules-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.rules-list { display: flex; flex-direction: column; gap: 0; }
.rule-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 0.5px solid var(--line); }
.rule-item:first-child { border-top: 0.5px solid var(--line); }
.rule-num { font-family: var(--ff-head); font-size: 0.6rem; font-weight: 700; color: var(--gold-d); letter-spacing: 0.15em; flex-shrink: 0; margin-top: 0.35rem; }
.rule-text { font-size: 0.97rem; font-weight: 300; color: rgba(240,227,196,0.7); line-height: 1.65; }
.rule-text strong { font-weight: 500; color: var(--parch); display: block; margin-bottom: 0.2rem; font-family: var(--ff-head); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.rules-aside { position: sticky; top: 6rem; background: var(--deep); border: 0.5px solid var(--line); border-radius: 3px; padding: 2.5rem; }
.aside-title { font-family: var(--ff-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.aside-text { font-size: 0.97rem; font-weight: 300; font-style: italic; color: rgba(240,227,196,0.6); line-height: 1.75; margin-bottom: 1.5rem; }
.aside-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ff-head); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); background: rgba(200,168,75,0.1); border: 0.5px solid var(--gold-d); padding: 0.5rem 1rem; border-radius: 2px; }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto; gap: 8px; }
.gallery-item { border-radius: 2px; overflow: hidden; position: relative; background: var(--ocean); border: 0.5px solid var(--line); }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-placeholder { width: 100%; padding-bottom: 70%; position: relative; overflow: hidden; }
.gallery-item:nth-child(1) .gallery-placeholder { padding-bottom: 100%; }
.gallery-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.gallery-inner svg { opacity: 0.15; }
.gallery-label { font-family: var(--ff-head); font-size: 0.6rem; letter-spacing: 0.2em; color: rgba(240,227,196,0.3); text-transform: uppercase; text-align: center; padding: 0 1rem; }
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #0d2035 0%, #1a3a5c 100%); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #121e2d 0%, #1c3040 100%); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #0f2030 0%, #162e45 100%); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #0e1f30 0%, #1a2e42 100%); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #121d2c 0%, #1e3248 100%); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem 0.7rem; background: linear-gradient(to top, rgba(9,17,28,0.9), transparent); font-family: var(--ff-head); font-size: 0.6rem; letter-spacing: 0.18em; color: rgba(240,227,196,0.5); text-transform: uppercase; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── COMMUNITY ─── */
.discord-card { background: var(--deep); border: 0.5px solid var(--line); border-radius: 4px; padding: 3rem 2.5rem; position: relative; overflow: hidden; }
.discord-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.discord-stat { display: flex; justify-content: center; gap: 4rem; margin-bottom: 2rem; }
.stat-val { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-family: var(--ff-head); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,227,196,0.4); display: block; margin-top: 0.3rem; }
.discord-desc { font-size: 0.97rem; font-weight: 300; font-style: italic; color: rgba(240,227,196,0.55); margin-bottom: 2rem; }
.btn-discord { display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--ff-head); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; background: #5865f2; color: white; padding: 1rem 2.2rem; border-radius: 2px; text-decoration: none; font-weight: 600; transition: background 0.2s, transform 0.2s; }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

/* ─── STORE ─── */
.store-tabs { display: flex; gap: 0; border: 0.5px solid var(--line); border-radius: 3px; overflow: hidden; margin-bottom: 3rem; width: fit-content; }
.store-tab { font-family: var(--ff-head); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.8rem 2rem; background: transparent; color: rgba(240,227,196,0.45); border: none; cursor: pointer; transition: background 0.2s, color 0.2s; border-right: 0.5px solid var(--line); }
.store-tab:last-child { border-right: none; }
.store-tab.active { background: rgba(200,168,75,0.12); color: var(--gold); }
.store-tab:hover:not(.active) { background: var(--mist); color: rgba(240,227,196,0.7); }

.store-panel { display: none; }
.store-panel.active { display: block; }

.ranks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.rank-card {
  background: var(--deep); border: 0.5px solid var(--line);
  border-radius: 4px; padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.rank-card:hover { transform: translateY(-4px); }
.rank-card.featured { border-color: var(--gold-d); }
.rank-card.featured::before { content: 'Most Popular'; position: absolute; top: 1rem; right: -2rem; background: var(--gold); color: var(--ink); font-family: var(--ff-head); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; padding: 0.3rem 3rem; transform: rotate(35deg); }
.rank-accent { width: 100%; height: 3px; border-radius: 2px; margin-bottom: 1.8rem; }
.rank-name { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.rank-tagline { font-size: 0.85rem; font-style: italic; font-weight: 300; color: rgba(240,227,196,0.5); margin-bottom: 1.5rem; }
.rank-price { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.rank-price span { font-size: 0.9rem; font-weight: 400; color: rgba(240,227,196,0.4); }
.rank-divider { width: 100%; height: 0.5px; background: var(--line); margin: 1.5rem 0; }
.rank-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.rank-perks li { font-size: 0.88rem; font-weight: 300; color: rgba(240,227,196,0.65); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.rank-perks li::before { content: '✦'; color: var(--gold-d); font-size: 0.6rem; flex-shrink: 0; margin-top: 0.3rem; }
.rank-btn { display: block; text-align: center; font-family: var(--ff-head); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem; border-radius: 2px; text-decoration: none; margin-top: 1.8rem; font-weight: 600; border: 0.5px solid var(--gold-d); color: var(--gold); transition: background 0.2s, color 0.2s; }
.rank-btn:hover { background: var(--gold); color: var(--ink); }
.rank-card.featured .rank-btn { background: var(--gold); color: var(--ink); }
.rank-card.featured .rank-btn:hover { background: var(--gold-l); }

.crates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.crate-card {
  background: var(--deep); border: 0.5px solid var(--line);
  border-radius: 4px; padding: 2.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.crate-card:hover { transform: translateY(-4px); border-color: var(--gold-d); }
.crate-icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.crate-name { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem; }
.crate-sub { font-size: 0.88rem; font-style: italic; font-weight: 300; color: rgba(240,227,196,0.5); margin-bottom: 1.5rem; }
.crate-items { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; text-align: left; }
.crate-item { font-size: 0.88rem; font-weight: 300; color: rgba(240,227,196,0.65); display: flex; align-items: center; gap: 0.5rem; }
.crate-item::before { content: '—'; color: var(--gold-d); font-size: 0.75rem; }
.crate-price { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 1.2rem; }
.crate-btn { display: block; text-align: center; font-family: var(--ff-head); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem; border-radius: 2px; text-decoration: none; font-weight: 600; border: 0.5px solid var(--gold-d); color: var(--gold); transition: background 0.2s, color 0.2s; }
.crate-btn:hover { background: var(--gold); color: var(--ink); }

.store-notice { background: var(--deep); border: 0.5px solid var(--line); border-left: 3px solid var(--gold-d); border-radius: 2px; padding: 1.2rem 1.5rem; margin-top: 3rem; font-size: 0.88rem; font-weight: 300; color: rgba(240,227,196,0.55); line-height: 1.7; }
.store-notice strong { font-family: var(--ff-head); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-d); font-weight: 600; display: block; margin-bottom: 0.3rem; }

/* ─── FOOTER ─── */
footer { background: var(--deep); border-top: 0.5px solid var(--line); padding: 3rem 4rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-brand { font-family: var(--ff-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.footer-tagline { font-size: 0.85rem; font-style: italic; color: rgba(240,227,196,0.3); font-weight: 300; }
.footer-note { font-family: var(--ff-head); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,227,196,0.2); }

/* ─── ANIMATIONS ─── */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  section { padding: 5rem 2rem; }
  .connect { padding: 3rem 2rem; }
  .connect-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .connect-divider { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .step-connector { display: none; }
  .rules-layout { grid-template-columns: 1fr; }
  .rules-aside { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2),.gallery-item:nth-child(3),.gallery-item:nth-child(4),.gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .discord-stat { gap: 2rem; }
  .ranks-grid { grid-template-columns: 1fr 1fr; }
  .crates-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 9rem 2rem 4rem; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .ranks-grid { grid-template-columns: 1fr; }
}
