:root {
  --bg: #0a0d0c;
  --bg-2: #0e1211;
  --panel: #121715;
  --panel-2: #161d1a;
  --edge: rgba(201, 162, 39, 0.28);
  --edge-strong: rgba(201, 162, 39, 0.55);
  --text: #e9e2d0;
  --text-dim: #a49a83;
  --text-faint: #6f6754;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --gold-pale: #f3dc95;
  --gold-dark: #8a671a;
  --gold-deep: #5f4610;
  --green-glow: rgba(38, 74, 58, 0.55);
  --discord: #5865f2;
  --radius: 12px;
  --radius-lg: 18px;
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background:
    var(--noise),
    radial-gradient(ellipse 60% 42% at 78% 8%, rgba(46, 88, 66, 0.2), transparent 60%),
    radial-gradient(ellipse 55% 40% at 15% 85%, rgba(26, 60, 70, 0.18), transparent 60%),
    linear-gradient(180deg, #0a0d0c 0%, #0a1416 26%, #071417 48%, #041014 72%, #020609 100%);
  color: var(--text);
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold-pale); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: 'Cinzel', Georgia, serif; color: var(--text); }

/* ===================== Nav ===================== */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 10, 9, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--edge);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}
.nav-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201, 162, 39, 0.5) 50%, transparent 95%);
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 14px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}
.brand img {
  width: 46px;
  height: 46px;
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, #000 74%, transparent 98%);
  mask-image: radial-gradient(circle closest-side at 50% 50%, #000 74%, transparent 98%);
  filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.35));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .b1 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text .b2 {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--text-dim);
  margin-top: 3px;
}

nav a.navlink {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
  transition: color 0.15s ease;
}
nav a.navlink::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: left 0.2s ease, right 0.2s ease;
}
nav a.navlink:hover { color: var(--gold-light); }
nav a.navlink:hover::after, nav a.navlink.active::after { left: 0; right: 0; }
nav a.navlink.active { color: var(--gold-light); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 9px;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition: transform 0.12s ease, filter 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--gold-light) 20%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #17120a;
  border-color: #060503;
  text-shadow: 0 1px 0 rgba(255, 240, 200, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 215, 0.7),
    inset 0 -3px 5px rgba(70, 50, 10, 0.55),
    inset 0 0 0 1px rgba(255, 235, 180, 0.25),
    0 4px 14px rgba(0, 0, 0, 0.6),
    0 0 26px rgba(201, 162, 39, 0.22);
}
.btn-gold:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 215, 0.8),
    inset 0 -3px 5px rgba(70, 50, 10, 0.5),
    inset 0 0 0 1px rgba(255, 240, 195, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.65),
    0 0 42px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: rgba(201, 162, 39, 0.05);
  border-color: var(--edge-strong);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4), 0 0 18px rgba(201, 162, 39, 0.08);
}
.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-pale);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4), 0 0 26px rgba(201, 162, 39, 0.2);
}

.btn-discord {
  background: linear-gradient(180deg, #6d79ff 0%, var(--discord) 45%, #3a44bd 100%);
  color: #fff;
  border-color: #060503;
  text-shadow: 0 1px 2px rgba(20, 24, 90, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(220, 225, 255, 0.4),
    inset 0 -3px 5px rgba(25, 30, 110, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.55);
}
.btn-discord:hover { color: #fff; box-shadow: inset 0 1px 0 rgba(220,225,255,0.5), inset 0 -3px 5px rgba(25,30,110,0.5), 0 6px 18px rgba(0,0,0,0.6), 0 0 30px rgba(88,101,242,0.3); }

.btn-nav { padding: 11px 26px; font-size: 0.76rem; }

.cta-ornate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.cta-ornate .fleur {
  color: var(--gold-dark);
  font-size: 1.4rem;
  text-shadow: 0 0 14px rgba(201, 162, 39, 0.4);
  opacity: 0.9;
}

/* ===================== Runic divider ===================== */
.divider-rune {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.divider-rune::before, .divider-rune::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45));
}
.divider-rune::after { background: linear-gradient(90deg, rgba(201, 162, 39, 0.45), transparent); }
.divider-rune .gem {
  width: 9px; height: 9px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  animation: gem-pulse 3.5s ease-in-out infinite;
}
@keyframes gem-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(201, 162, 39, 0.35); }
  50% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.7); }
}

/* ===================== Ornament rule (hero) ===================== */
.rule {
  width: 190px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  position: relative;
  margin: 22px 0 24px;
}
.rule::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.55);
}

/* ===================== Hero (Norse seascape) ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 32px 320px;
  min-height: 720px;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-scene { position: absolute; inset: 0; pointer-events: none; }

/* aurora ribbons */
.aurora { position: absolute; filter: blur(34px); opacity: 0.7; }
.aurora.a1 {
  top: -4%; left: 2%;
  width: 52%; height: 40%;
  background: linear-gradient(100deg, transparent 10%, rgba(72, 170, 130, 0.2) 35%, rgba(201, 162, 39, 0.1) 60%, transparent 90%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora.a2 {
  top: 6%; left: 34%;
  width: 46%; height: 34%;
  background: linear-gradient(80deg, transparent, rgba(96, 120, 200, 0.14) 40%, rgba(72, 170, 130, 0.16) 70%, transparent);
  animation: aurora-drift 24s ease-in-out -6s infinite alternate-reverse;
}
.aurora.a3 {
  top: -8%; right: -4%;
  width: 40%; height: 44%;
  background: linear-gradient(120deg, transparent, rgba(72, 170, 130, 0.12), transparent);
  animation: aurora-drift 21s ease-in-out -12s infinite alternate;
}
@keyframes aurora-drift {
  from { transform: rotate(-12deg) translateX(-30px); opacity: 0.45; }
  to { transform: rotate(-7deg) translateX(40px); opacity: 0.95; }
}

/* stars */
.stars { position: absolute; inset: 0 0 36% 0; }
.stars::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 2px;
  border-radius: 50%;
  box-shadow:
    8vw 12vh 0 rgba(233, 226, 208, 0.7), 18vw 6vh 0 rgba(233, 226, 208, 0.5),
    27vw 18vh 0 rgba(233, 226, 208, 0.6), 38vw 9vh 0 rgba(233, 226, 208, 0.4),
    47vw 15vh 0 rgba(233, 226, 208, 0.65), 58vw 5vh 0 rgba(233, 226, 208, 0.5),
    66vw 13vh 0 rgba(233, 226, 208, 0.6), 76vw 8vh 0 rgba(233, 226, 208, 0.45),
    86vw 16vh 0 rgba(233, 226, 208, 0.55), 93vw 10vh 0 rgba(233, 226, 208, 0.5);
}
.stars.s2::before {
  box-shadow:
    12vw 20vh 0 rgba(233, 226, 208, 0.6), 22vw 11vh 0 rgba(233, 226, 208, 0.45),
    33vw 5vh 0 rgba(233, 226, 208, 0.6), 43vw 19vh 0 rgba(233, 226, 208, 0.5),
    54vw 9vh 0 rgba(233, 226, 208, 0.55), 63vw 22vh 0 rgba(233, 226, 208, 0.4),
    72vw 16vh 0 rgba(233, 226, 208, 0.6), 82vw 4vh 0 rgba(233, 226, 208, 0.5),
    90vw 21vh 0 rgba(233, 226, 208, 0.45), 97vw 14vh 0 rgba(233, 226, 208, 0.55);
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.25; } to { opacity: 1; } }

/* constellations */
.constellation { position: absolute; z-index: 0; opacity: 0.85; }
.constellation.ursa { left: 45%; top: 130px; width: 240px; }
.constellation.orion { right: 20%; top: 240px; width: 140px; }
.constellation.cassiopeia { left: 32%; top: 96px; width: 130px; }
.constellation .st {
  fill: rgba(233, 226, 208, 0.9);
  animation: star-twinkle 4.5s ease-in-out infinite alternate;
}
.constellation .st.alt { animation-delay: -2.2s; }
.constellation .st.key { fill: var(--gold-light); }
@keyframes star-twinkle {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* moon */
.moon-wrap {
  position: absolute;
  top: 64px; right: 11%;
  width: 96px; height: 96px;
}
.moon {
  position: relative;
  width: 100%; height: 100%;
  display: block;
}
/* radial-gradient halo instead of box-shadow: iOS Safari renders box-shadow
   on svg as a square, ignoring border-radius */
.moon-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 280%; height: 280%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 201, 106, 0.3) 0%, rgba(232, 201, 106, 0.1) 42%, transparent 68%);
  pointer-events: none;
  animation: moon-glow 6s ease-in-out infinite alternate;
}
@keyframes moon-glow {
  from { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

/* sea */
.sea { position: absolute; left: 0; right: 0; bottom: 0; height: 270px; }

.waves { position: absolute; left: 0; width: 200%; }
.waves.w1 { bottom: 100px; height: 76px; z-index: 1; opacity: 0.9; animation: wave-drift 30s linear infinite; }
.waves.w2 { bottom: 44px; height: 100px; z-index: 3; animation: wave-drift 21s linear infinite reverse; }
.waves.w3 { bottom: -4px; height: 92px; z-index: 5; animation: wave-drift 15s linear infinite; }
@keyframes wave-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* sea serpent */
.serpent {
  position: absolute;
  left: 2%; bottom: 84px;
  width: 340px; height: auto;
  z-index: 2;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5));
  animation: serpent-swim 9s ease-in-out infinite;
}
@keyframes serpent-swim {
  0%, 100% { transform: translateY(10px); }
  50% { transform: translateY(-10px); }
}

/* longships — naval battle */
.ship-wrap {
  position: absolute;
  bottom: 78px; left: 23%;
  width: 300px;
  z-index: 4;
  animation: ship-drift 12s ease-in-out infinite alternate;
}
.ship-wrap.enemy {
  left: auto; right: 12%;
  bottom: 84px;
  width: 280px;
  z-index: 3;
  animation-delay: -5s;
}
@keyframes ship-drift {
  from { transform: translateX(-14px); }
  to { transform: translateX(18px); }
}
.ship-flip { transform: scaleX(-1); }
.ship {
  width: 100%; height: auto;
  transform-origin: 50% 90%;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.55));
  animation: ship-bob 5.5s ease-in-out infinite;
}
.ship-wrap.enemy .ship { animation-duration: 6.3s; animation-delay: -2s; }
@keyframes ship-bob {
  0%, 100% { transform: translateY(0) rotate(-1.4deg); }
  50% { transform: translateY(-8px) rotate(1.4deg); }
}

/* distant ship on the horizon */
.ship-far {
  position: absolute;
  bottom: 148px; left: 55%;
  width: 92px;
  z-index: 0;
  opacity: 0.4;
  animation: ship-drift 16s ease-in-out -4s infinite alternate;
}

/* flaming arrow volleys between the ships */
.volley { position: absolute; z-index: 4; pointer-events: none; }
.volley.v1 { left: 30%; bottom: 200px; animation: volley-x 2.6s linear infinite; }
.volley.v2 { left: 32%; bottom: 186px; animation: volley-x 3.2s linear -1.4s infinite; }
.volley.v3 { left: 74%; bottom: 196px; animation: volley-x-rev 2.9s linear -0.8s infinite; }
.volley.v4 { left: 76%; bottom: 182px; animation: volley-x-rev 3.4s linear -2.2s infinite; }
@keyframes volley-x { from { transform: translateX(0); } to { transform: translateX(46vw); } }
@keyframes volley-x-rev { from { transform: translateX(0); } to { transform: translateX(-46vw); } }
.volley .arrow {
  display: block;
  width: 17px; height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #e8c96a 65%, #f7e3a8);
  box-shadow: 0 0 7px rgba(232, 201, 106, 0.85), 0 0 16px rgba(201, 162, 39, 0.4);
  animation: volley-y 2.6s ease-out infinite;
}
.volley.v2 .arrow { animation-duration: 3.2s; animation-delay: -1.4s; }
.volley.v3 .arrow { animation-name: volley-y-rev; animation-duration: 2.9s; animation-delay: -0.8s; }
.volley.v4 .arrow { animation-name: volley-y-rev; animation-duration: 3.4s; animation-delay: -2.2s; }
@keyframes volley-y {
  0% { transform: translateY(0) rotate(-26deg); opacity: 0; }
  6% { opacity: 1; }
  50% { transform: translateY(-95px) rotate(0deg); }
  94% { opacity: 1; }
  100% { transform: translateY(8px) rotate(30deg); opacity: 0; }
}
@keyframes volley-y-rev {
  0% { transform: translateY(0) rotate(206deg); opacity: 0; }
  6% { opacity: 1; }
  50% { transform: translateY(-95px) rotate(180deg); }
  94% { opacity: 1; }
  100% { transform: translateY(8px) rotate(150deg); opacity: 0; }
}

/* moonlight glint on the water */
.glint {
  position: absolute;
  right: 10%; bottom: 0;
  width: 70px; height: 180px;
  z-index: 6;
  background: linear-gradient(180deg, rgba(232, 201, 106, 0.22), rgba(232, 201, 106, 0.04) 70%, transparent);
  filter: blur(7px);
  animation: glint-shimmer 4.5s ease-in-out infinite alternate;
}
@keyframes glint-shimmer {
  from { opacity: 0.45; transform: scaleX(0.8); }
  to { opacity: 0.95; transform: scaleX(1.15); }
}

/* drifting mist */
.mist {
  position: absolute;
  z-index: 6;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(160, 210, 185, 0.1), transparent 70%);
  filter: blur(14px);
}
.mist.m1 { left: 6%; bottom: 150px; width: 44%; animation: mist-drift 26s ease-in-out infinite alternate; }
.mist.m2 { right: 2%; bottom: 120px; width: 38%; animation: mist-drift 32s ease-in-out -12s infinite alternate-reverse; }
@keyframes mist-drift {
  from { transform: translateX(-50px); }
  to { transform: translateX(60px); }
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.02;
  background: linear-gradient(110deg, var(--gold-dark) 0%, var(--gold) 20%, var(--gold-pale) 38%, var(--gold-light) 50%, var(--gold) 64%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 26px rgba(201, 162, 39, 0.18));
  animation: gold-sheen 8s linear infinite;
}
@keyframes gold-sheen {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

.tagline {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-copy .lede {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 440px;
  margin-bottom: 32px;
}

.trust-row {
  display: flex;
  gap: 40px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 110px;
  text-align: center;
}
.trust-item .medal {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 28%, #1d2420, #141a17 60%, #0c100e);
  border: 1.5px solid var(--edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.15),
    inset 0 -4px 8px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(201, 162, 39, 0.12);
}
.trust-item svg { width: 24px; height: 24px; color: var(--gold-light); filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.4)); }
.trust-item .t1 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.trust-item .t2 { font-size: 0.8rem; color: var(--text-dim); line-height: 1.35; margin-top: -4px; }

/* ===================== Sections ===================== */
section { padding: 72px 32px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.sec-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sec-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 65%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
.sec-head .flank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.sec-head .flank::before, .sec-head .flank::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sec-head .flank::after { background: linear-gradient(90deg, var(--gold), transparent); }
.sec-head p { color: var(--text-dim); font-size: 1.02rem; margin-top: 8px; }

/* ===================== Feature cards ===================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  padding: 32px 22px 26px;
  text-align: center;
  background:
    var(--noise),
    radial-gradient(ellipse 100% 45% at 50% 0%, rgba(46, 88, 66, 0.16), transparent 65%),
    linear-gradient(170deg, #151b18 0%, #101412 55%, #0c0f0e 100%);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 39, 0.14);
  border-radius: 8px;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 34px rgba(201, 162, 39, 0.14);
}

/* corner accents */
.card .c-acc {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--edge-strong);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}
.card .c-acc.tl { top: 6px; left: 6px; border-top-width: 1.5px; border-left-width: 1.5px; border-top-left-radius: 6px; }
.card .c-acc.tr { top: 6px; right: 6px; border-top-width: 1.5px; border-right-width: 1.5px; border-top-right-radius: 6px; }
.card .c-acc.bl { bottom: 6px; left: 6px; border-bottom-width: 1.5px; border-left-width: 1.5px; border-bottom-left-radius: 6px; }
.card .c-acc.br { bottom: 6px; right: 6px; border-bottom-width: 1.5px; border-right-width: 1.5px; border-bottom-right-radius: 6px; }

.card .icon-medal {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #232b26, #141a17 60%, #0e1210);
  border: 1.5px solid var(--edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.15),
    inset 0 -4px 8px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(201, 162, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
}

.card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 9px;
  color: var(--gold-light);
}
.card .h-rule {
  width: 44px;
  height: 1px;
  margin: 0 auto 12px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.card p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 16px; line-height: 1.55; }
.card .icon-row { display: flex; justify-content: center; gap: 12px; font-size: 1.1rem; opacity: 0.9; }

.trust-fine {
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-fine .dot { opacity: 0.5; }

/* ===================== Pricing ===================== */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 36px;
  background:
    var(--noise),
    radial-gradient(ellipse 100% 35% at 50% 0%, rgba(46, 88, 66, 0.18), transparent 60%),
    linear-gradient(170deg, #161d1a, #0e1210);
  background-color: #131916;
  border: 1px solid var(--edge-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 162, 39, 0.08);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: 12px;
  pointer-events: none;
}
.pricing-card .crest {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, #000 74%, transparent 98%);
  mask-image: radial-gradient(circle closest-side at 50% 50%, #000 74%, transparent 98%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(201, 162, 39, 0.35));
}

.pricing-card .plan-name {
  font-family: 'Cinzel', serif;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 6px 0 10px;
}
.pricing-card .price {
  font-family: 'Cinzel', serif;
  font-size: 3.1rem;
  font-weight: 900;
  margin: 2px 0 8px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
.pricing-card .price span { font-size: 1rem; font-weight: 500; font-family: 'Spectral', serif; }

.pricing-card ul { list-style: none; text-align: left; margin: 26px 0 28px; }
.pricing-card li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before {
  content: "";
  width: 7px; height: 7px;
  flex: 0 0 7px;
  transform: rotate(45deg) translateY(-1px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
}

/* ===================== Tier grid ===================== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tier-card {
  position: relative;
  padding: 28px 12px 22px;
  text-align: center;
  background:
    var(--noise),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(46, 88, 66, 0.14), transparent 65%),
    linear-gradient(170deg, #151b18 0%, #101412 55%, #0c0f0e 100%);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.tier-card:hover {
  transform: translateY(-5px);
  border-color: var(--edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(201, 162, 39, 0.14);
}
.tier-card.popular, .tier-card.best {
  border-color: var(--edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.14),
    0 14px 30px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 162, 39, 0.16);
}

.tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 60%, var(--gold-dark));
  color: #17120a;
  border: 1px solid #060503;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 14px rgba(201, 162, 39, 0.3);
}

.tier-count {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.6));
}

.tier-unit {
  font-family: 'Cinzel', serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 4px 0 12px;
}

.tier-price { font-size: 1.28rem; font-weight: 600; color: var(--text); }
.tier-price span { font-size: 0.82rem; color: var(--text-dim); }

/* ===================== Support ===================== */
.support-card {
  max-width: 580px;
  margin: 0 auto;
  padding: 38px 34px;
  text-align: center;
  background:
    var(--noise),
    linear-gradient(170deg, #151b18, #0e1210);
  background-color: #121815;
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(232, 201, 106, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.55);
  position: relative;
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 162, 39, 0.14);
  border-radius: 12px;
  pointer-events: none;
}
.support-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold-light); }
.support-card p { color: var(--text-dim); margin: 12px 0 24px; }

/* ===================== Footer ===================== */
footer {
  border-top: 1px solid var(--edge);
  background:
    var(--noise),
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(46, 88, 66, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0d0c, #070908);
  background-color: #080a09;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201, 162, 39, 0.5) 50%, transparent 95%);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img {
  width: 40px; height: 40px;
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, #000 74%, transparent 98%);
  mask-image: radial-gradient(circle closest-side at 50% 50%, #000 74%, transparent 98%);
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}
.footer-brand .fb-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.footer-brand .b1 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-brand .b2 {
  font-family: 'Cinzel', serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.05);
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}
.footer-social a:hover {
  border-color: var(--edge-strong);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.18);
}
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  text-align: center;
  padding: 0 24px 26px;
  color: var(--text-faint);
  font-size: 0.8rem;
}

/* ===================== Ambient scenes (all sections) ===================== */
#features, #pricing, #support { overflow: hidden; }

/* depth tints — the deeper you scroll, the darker the water */
#features { background: linear-gradient(180deg, rgba(18, 52, 54, 0.4) 0%, rgba(10, 30, 34, 0.32) 60%, rgba(7, 22, 26, 0.28) 100%); }
#pricing { background: linear-gradient(180deg, rgba(7, 24, 30, 0.45), rgba(4, 15, 20, 0.55)); }
#support { background: linear-gradient(180deg, rgba(3, 11, 16, 0.6), rgba(1, 5, 9, 0.85)); }
.sec-scene { position: absolute; inset: 0; pointer-events: none; }
.sec-head, .cards, .cta-ornate, .trust-fine, .pricing-card, .support-card { position: relative; z-index: 2; }

/* distant Valhalla great hall on the horizon */
.hall {
  position: absolute;
  right: 1%;
  bottom: 146px;
  width: 640px;
  z-index: 0;
  opacity: 0.92;
  filter: drop-shadow(0 0 14px rgba(232, 201, 106, 0.1));
}
.hall .win { animation: window-flicker 4s ease-in-out infinite alternate; }
.hall .win.w2 { animation-delay: -1.3s; }
.hall .win.w3 { animation-delay: -2.6s; }
.hall .win.w4 { animation-delay: -3.4s; }
@keyframes window-flicker {
  from { opacity: 0.45; }
  to { opacity: 1; }
}
.hall .beacon { animation: beacon-pulse 2.2s ease-in-out infinite alternate; }
@keyframes beacon-pulse {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* ravens */
.raven-wrap {
  position: absolute;
  left: 0;
  width: 40px;
  z-index: 1;
  animation: raven-fly 38s linear infinite;
}
.raven-wrap.rv2 { animation-duration: 52s; animation-delay: -18s; }
.raven-wrap.rv3 { animation-duration: 64s; animation-delay: -40s; }
@keyframes raven-fly {
  from { transform: translateX(-90px); }
  to { transform: translateX(calc(100vw + 90px)); }
}
.raven {
  width: 100%; height: auto;
  animation: raven-glide 2.2s ease-in-out infinite;
}
@keyframes raven-glide {
  0%, 100% { transform: translateY(0) scaleY(1); }
  25% { transform: translateY(-4px) scaleY(0.82); }
  50% { transform: translateY(-9px) scaleY(1.12); }
  75% { transform: translateY(-4px) scaleY(0.88); }
}

/* ---------- underwater: light rays ---------- */
.ray {
  position: absolute;
  top: -40px;
  height: 72%;
  background: linear-gradient(180deg, rgba(150, 220, 205, 0.11), transparent 82%);
  filter: blur(6px);
  animation: ray-shift 9s ease-in-out infinite alternate;
}
.ray.r1 { left: 16%; width: 120px; }
.ray.r2 { left: 40%; width: 80px; animation-delay: -3s; }
.ray.r3 { left: 64%; width: 160px; animation-delay: -6s; }
@keyframes ray-shift {
  from { opacity: 0.35; transform: skewX(-12deg) translateX(-16px); }
  to { opacity: 0.85; transform: skewX(-17deg) translateX(18px); }
}

/* ---------- underwater: bubbles ---------- */
.bubble {
  position: absolute;
  bottom: -16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(220, 240, 240, 0.3), rgba(180, 220, 220, 0.06) 65%, transparent);
  border: 1px solid rgba(210, 235, 235, 0.32);
  opacity: 0;
  animation: bubble-rise 12s linear infinite;
}
.bubble.b-s { width: 7px; height: 7px; }
.bubble.b-m { width: 11px; height: 11px; }
.bubble.b-l { width: 17px; height: 17px; }
@keyframes bubble-rise {
  0% { transform: translate(0, 0); opacity: 0; }
  6% { opacity: 0.85; }
  50% { transform: translate(18px, -330px); }
  100% { transform: translate(-14px, -680px); opacity: 0; }
}

/* ---------- underwater: kelp ---------- */
.kelp {
  position: absolute;
  bottom: -6px;
  transform-origin: 50% 100%;
  animation: kelp-sway 7s ease-in-out infinite alternate;
}
.kelp.k1 { left: 1.5%; height: 210px; }
.kelp.k2 { left: 5.5%; height: 150px; animation-delay: -2s; }
.kelp.k3 { right: 2%; height: 235px; animation-delay: -4.5s; }
.kelp.k4 { right: 6.5%; height: 140px; animation-delay: -3.5s; }
@keyframes kelp-sway {
  from { transform: rotate(-3.5deg); }
  to { transform: rotate(3.5deg); }
}

/* ---------- underwater: fish school ---------- */
.school {
  position: absolute;
  top: 36%;
  left: 0;
  width: 120px; height: 80px;
  animation: swim-across 32s linear infinite;
}
@keyframes swim-across {
  from { transform: translateX(-180px); }
  to { transform: translateX(calc(100vw + 180px)); }
}
.school .fish { position: absolute; width: 44px; animation: fish-bob 3s ease-in-out infinite; }
.school .fish.f2 { left: 54px; top: 22px; width: 34px; animation-delay: -1s; }
.school .fish.f3 { left: 14px; top: 46px; width: 30px; animation-delay: -2s; }
@keyframes fish-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- underwater: jellyfish ---------- */
.jelly-wrap {
  position: absolute;
  filter: drop-shadow(0 0 12px rgba(232, 201, 106, 0.25));
  animation: jelly-drift 18s ease-in-out infinite alternate;
}
.jelly-wrap.j1 { right: 4%; top: 8%; width: 54px; }
.jelly-wrap.j2 { left: 9%; bottom: 16%; width: 38px; animation-delay: -7s; }
@keyframes jelly-drift {
  from { transform: translateY(26px); }
  to { transform: translateY(-32px); }
}
.jelly {
  width: 100%; height: auto;
  transform-origin: 50% 30%;
  animation: jelly-pulse 3s ease-in-out infinite;
}
@keyframes jelly-pulse {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  50% { transform: scaleY(1.09) scaleX(0.94); }
}

/* ---------- abyss: sunken wreck ---------- */
.wreck {
  position: absolute;
  left: 4%;
  bottom: -10px;
  width: 480px;
  z-index: 0;
  opacity: 0.85;
}

/* ---------- abyss: anglerfish ---------- */
.angler {
  position: absolute;
  right: 13%;
  top: 22%;
  width: 98px;
  filter: drop-shadow(0 0 10px rgba(232, 201, 106, 0.15));
  animation: angler-patrol 13s ease-in-out infinite alternate;
}
@keyframes angler-patrol {
  from { transform: translate(0, 0); }
  to { transform: translate(-52px, 16px); }
}
.angler .lure { animation: lure-glow 2.4s ease-in-out infinite alternate; }
@keyframes lure-glow {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

/* rotating rune rings + coins (pricing) */
.glow-radial {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  margin: -350px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.09), transparent 60%);
}
.rune-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 162, 39, 0.18);
}
.rune-ring.r1 {
  width: 580px; height: 580px;
  margin: -290px;
  animation: ring-spin 70s linear infinite;
}
.rune-ring.r2 {
  width: 440px; height: 440px;
  margin: -220px;
  border-style: solid;
  border-color: rgba(201, 162, 39, 0.1);
  animation: ring-spin 50s linear infinite reverse;
}
.rune-ring.r1::before, .rune-ring.r1::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
}
.rune-ring.r1::before { top: -5px; left: 50%; }
.rune-ring.r1::after { bottom: -5px; left: 50%; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

.coin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: #5f4610;
  background: radial-gradient(circle at 35% 30%, #f3dc95, #c9a227 60%, #8a671a);
  border: 1.5px solid #5f4610;
  box-shadow: 0 0 14px rgba(201, 162, 39, 0.35), inset 0 1px 2px rgba(255, 245, 210, 0.6);
  animation: coin-bob 7s ease-in-out infinite;
}
.coin.c1 { left: 16%; top: 30%; }
.coin.c2 { right: 15%; top: 24%; animation-delay: -2s; }
.coin.c3 { left: 22%; bottom: 20%; animation-delay: -4s; width: 22px; height: 22px; font-size: 10px; }
.coin.c4 { right: 20%; bottom: 28%; animation-delay: -1s; width: 24px; height: 24px; font-size: 11px; }
@keyframes coin-bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

/* floating runes (support) */
.rune-float {
  position: absolute;
  font-size: 1.7rem;
  color: rgba(201, 162, 39, 0.22);
  text-shadow: 0 0 12px rgba(201, 162, 39, 0.3);
  animation: rune-drift 14s ease-in-out infinite alternate;
}
.rune-float.f1 { left: 10%; top: 30%; }
.rune-float.f2 { left: 22%; bottom: 22%; animation-delay: -4s; font-size: 1.3rem; }
.rune-float.f3 { right: 12%; top: 26%; animation-delay: -8s; }
.rune-float.f4 { right: 24%; bottom: 26%; animation-delay: -11s; font-size: 2rem; }
.rune-float.f5 { left: 46%; top: 16%; animation-delay: -6s; font-size: 1.2rem; }
@keyframes rune-drift {
  from { transform: translateY(16px); opacity: 0.35; }
  to { transform: translateY(-22px); opacity: 0.8; }
}

/* ===================== Scroll reveal ===================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero { padding: 60px 24px 300px; min-height: 640px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .constellation.cassiopeia { display: none; }
  .constellation.orion { right: 5%; top: 190px; width: 110px; }
}
@media (max-width: 640px) {
  nav { flex-wrap: wrap; gap: 14px; padding: 12px 20px; }
  nav a.navlink { display: none; }
  .cards { grid-template-columns: 1fr; max-width: 380px; }
  .trust-row { justify-content: center; gap: 22px; }
  .footer-inner { justify-content: center; text-align: center; }
  section { padding: 56px 22px; }
  .hall { width: 360px; right: -60px; }
  .ship-wrap { left: 38%; width: 220px; }
  .ship-wrap.enemy, .volley { display: none; }
  .ship-far { left: 70%; }
  .serpent { left: -24px; width: 240px; }
  .constellation { display: none; }
  .rune-ring.r1 { width: 380px; height: 380px; margin: -190px; }
  .rune-ring.r2 { display: none; }
  .coin.c1, .coin.c3 { left: 4%; }
  .coin.c2, .coin.c4 { right: 4%; }
  .kelp.k2, .kelp.k4 { display: none; }
  .wreck { width: 300px; left: 0; }
  .angler { right: 4%; }
}
