@charset "utf-8";

/* ── Reset & base ── */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main { display: block; }
audio, canvas, video { display: inline-block; }
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
*:before, *:after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Cinzel", Georgia, serif;
  color: #e8dcc8;
  background: #0d0806;
}

a { color: #d4af37; text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff8e7; }

/* ── Background video ── */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: translate(-50%, -50%);
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, transparent 0%, rgba(0, 0, 0, 0.55) 70%),
    linear-gradient(180deg, rgba(8, 4, 2, 0.4) 0%, rgba(8, 4, 2, 0.85) 55%, rgba(5, 2, 1, 0.95) 100%);
}

.embers {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 180, 60, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255, 140, 40, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255, 200, 80, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 80%, rgba(255, 160, 50, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 190, 70, 0.4) 0%, transparent 100%);
  animation: ember-drift 18s ease-in-out infinite alternate;
}

@keyframes ember-drift {
  0%   { transform: translateY(0); opacity: 0.25; }
  100% { transform: translateY(-30px); opacity: 0.4; }
}

/* ── Layout ── */
.page-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Hero ── */
.hero-epic {
  text-align: center;
  margin-bottom: 2rem;
  animation: fade-up 1s ease-out both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a227;
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.35);
}

.h1-seo {
  text-align: center;
  margin: 0;
}

.h1-seo .logo-title {
  display: block;
  font-family: "Cinzel Decorative", "Cinzel", serif;
  font-size: clamp(3.5rem, 14vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
  background: linear-gradient(180deg, #fff8e0 0%, #e8c547 35%, #a8841a 70%, #6b5210 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(232, 197, 71, 0.45)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
  animation: title-glow 4s ease-in-out infinite alternate;
}

.h1-seo .h1-text {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(0.85rem, 2.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f5e6c8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  -webkit-text-fill-color: #f5e6c8;
  line-height: 1.35;
  max-width: 28em;
  margin: 0 auto;
}

.logo-title {
  font-family: "Cinzel Decorative", "Cinzel", serif;
  font-size: clamp(3.5rem, 14vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  margin: 0 0 0.25rem;
  background: linear-gradient(180deg, #fff8e0 0%, #e8c547 35%, #a8841a 70%, #6b5210 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(232, 197, 71, 0.45))
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
  animation: title-glow 4s ease-in-out infinite alternate;
}

@keyframes title-glow {
  from { filter: drop-shadow(0 0 20px rgba(232, 197, 71, 0.35)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8)); }
  to   { filter: drop-shadow(0 0 45px rgba(255, 220, 100, 0.55)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9)); }
}

.seo-h1-sub {
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(232, 197, 71, 0.9);
  margin: 0.35rem 0 0.75rem;
}

.seo-h1-sub strong {
  color: #f5e6c8;
  font-weight: 700;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(232, 220, 200, 0.85);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.opening-date {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 700;
  color: #f5e6c8;
  text-shadow: 0 0 20px rgba(255, 180, 60, 0.4), 0 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.75rem;
}

.presentation-link a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding-bottom: 2px;
}

.presentation-link a:hover {
  color: #fff;
  border-color: #fff;
}

.presentation-link {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.quick-links a {
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a0f04;
  background: linear-gradient(180deg, #c9a227, #8a6a12);
  border: 1px solid #f5e6a8;
  border-radius: 3px;
  text-decoration: none;
}

.quick-links a:hover {
  filter: brightness(1.1);
  color: #1a0f04;
}

.server-specs {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.specs-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  color: rgba(232, 220, 200, 0.9);
  line-height: 1.7;
}

.rates-table {
  width: 100%;
  margin: 0 auto 1rem;
  border-collapse: collapse;
  font-family: Georgia, serif;
  font-size: 0.82rem;
}

.rates-table caption {
  font-family: "Cinzel", serif;
  color: #e8c547;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rates-table th,
.rates-table td {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.rates-table th {
  text-align: left;
  color: #d4c4a8;
  font-weight: 600;
}

.rates-table td {
  color: #f5e6c8;
}

.btn-register {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8c547;
  border: 1px solid rgba(232, 197, 71, 0.45);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-register:hover {
  background: rgba(232, 197, 71, 0.15);
  color: #fff8e7;
}

body #root {
  cursor: pointer;
}

body.seo-guide-page {
  cursor: default;
}

body a,
body button,
body iframe {
  cursor: pointer;
}

/* ── Main content ── */
.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* ── CTA button ── */
.btn-start-now {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1rem 3rem;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1a0f04;
  background: linear-gradient(180deg, #ffe9a0 0%, #e8c547 30%, #b8921f 70%, #8a6a12 100%);
  border: 2px solid #fff0b8;
  border-radius: 4px;
  box-shadow:
    0 0 40px rgba(232, 197, 71, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  animation: fade-up 1s ease-out 0.2s both;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 70% { left: -100%; }
  100%    { left: 150%; }
}

.btn-start-now:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
  box-shadow:
    0 0 60px rgba(255, 220, 100, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #1a0f04;
}

/* ── Video frame ── */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(80, 55, 25, 0.5), rgba(20, 12, 5, 0.8));
  border: 1px solid rgba(201, 162, 39, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(201, 162, 39, 0.15),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
  animation: fade-up 1s ease-out 0.35s both;
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #e8c547;
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.frame-corner--tl { top: 4px; left: 4px; border-width: 2px 0 0 2px; }
.frame-corner--tr { top: 4px; right: 4px; border-width: 2px 2px 0 0; }
.frame-corner--bl { bottom: 4px; left: 4px; border-width: 0 0 0 2px; border-bottom-width: 2px; }
.frame-corner--br { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; }

.video-wrap {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.video-wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 533 / 344;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

/* ── Section titles ── */
.section-title {
  text-align: center;
  margin-bottom: 1.25rem;
  font-family: "Cinzel Decorative", "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-title span {
  display: inline-block;
  padding: 0 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.2), transparent);
  color: #e8c547;
  text-shadow: 0 0 20px rgba(232, 197, 71, 0.3);
}

.section-title--sm { font-size: 1.15rem; }

/* ── Intro ── */
.realm-intro {
  text-align: center;
  max-width: 520px;
  animation: fade-up 1s ease-out 0.5s both;
}

.realm-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(232, 220, 200, 0.8);
  font-weight: 400;
}

.realm-text strong {
  color: #e8c547;
  font-weight: 600;
}

/* ── Classes ── */
.classes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 520px;
}

.class-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: linear-gradient(180deg, rgba(40, 28, 18, 0.85) 0%, rgba(15, 10, 6, 0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.class-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 197, 71, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 197, 71, 0.15);
  color: #fff8e7;
}

.class-icon {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(232, 197, 71, 0.4));
}

.class-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4c4a8;
}

.class-card:hover .class-name { color: #f5e6c8; }

/* ── Feature grid ── */
.features {
  width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  display: block;
  padding: 1.25rem 1.35rem;
  background:
    linear-gradient(135deg, rgba(50, 35, 20, 0.6) 0%, rgba(12, 8, 4, 0.92) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 197, 71, 0.65);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(201, 162, 39, 0.12);
}

.feature-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 0 6px rgba(232, 197, 71, 0.35));
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8c547;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(212, 196, 168, 0.75);
  font-family: Georgia, serif;
}

.feature-card:hover h3 { color: #fff0b8; }
.feature-card:hover p  { color: rgba(232, 220, 200, 0.9); }

/* ── Dungeons strip ── */
.dungeons-strip {
  width: 100%;
  text-align: center;
}

.dungeon-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.25rem;
}

.dungeon-list li a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b498;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.dungeon-list li a:hover {
  color: #1a0f04;
  background: linear-gradient(180deg, #e8c547, #a8841a);
  border-color: #f5e6a8;
}

/* ── Secondary CTA ── */
.btn-enter-realm {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8c547;
  border: 1px solid rgba(232, 197, 71, 0.5);
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-enter-realm:hover {
  color: #1a0f04;
  background: #e8c547;
  box-shadow: 0 0 30px rgba(232, 197, 71, 0.35);
}

/* ── SEO content block ── */
.seo-about {
  width: 100%;
  max-width: 640px;
  text-align: left;
}

.seo-article {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 4px;
}

.seo-article p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(212, 196, 168, 0.8);
  margin-bottom: 0.75rem;
}

.seo-article p:last-child {
  margin-bottom: 0;
}

.seo-article strong {
  color: #d4af37;
  font-weight: 600;
}

.seo-article a {
  color: #e8c547;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-keywords-block,
.seo-news {
  width: 100%;
  max-width: 640px;
}

.seo-h3 {
  font-size: 0.9rem;
  color: #d4af37;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.footer-links {
  font-size: 0.8rem;
  font-family: Georgia, serif;
}

.footer-links a {
  color: #9a8a78;
}

.footer-links a:hover {
  color: #e8dcc8;
}

.seo-pages-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 640px;
}

.seo-pages-nav a {
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4b498;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.seo-pages-nav a:hover {
  color: #1a0f04;
  background: #e8c547;
  border-color: #f5e6a8;
}

.systems-seo {
  width: 100%;
  max-width: 640px;
  text-align: left;
}

.system-block {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid rgba(232, 197, 71, 0.5);
  border-radius: 0 4px 4px 0;
}

.system-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e8c547;
}

.system-block h3 a {
  color: #e8c547;
  text-decoration: none;
}

.system-block h3 a:hover {
  color: #fff8e7;
}

.system-block p {
  font-family: Georgia, serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(212, 196, 168, 0.85);
}

.system-block p a {
  color: #d4af37;
  white-space: nowrap;
}

.wiki-ref {
  font-size: 0.75rem;
  font-family: Georgia, serif;
  color: rgba(180, 165, 140, 0.65);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.wiki-ref a {
  color: rgba(212, 175, 55, 0.85);
}

.term-en {
  font-size: 0.75em;
  color: rgba(180, 165, 140, 0.7);
  font-style: italic;
}

/* ── Redirect notice & footer ── */
.redirect-notice {
  text-align: center;
  font-size: 0.8rem;
  font-family: Georgia, serif;
  color: rgba(200, 185, 160, 0.55);
}

.redirect-notice a { color: rgba(212, 175, 55, 0.8); }

.site-footer {
  margin-top: 1rem;
  padding-top: 2rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.site-footer p[align="center"] {
  margin-top: 1rem;
  margin-bottom: 0;
}

.site-footer p[align="center"] a {
  color: #9a8a78;
  font-size: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  text-decoration: none;
}

.site-footer p[align="center"] a:hover {
  color: #e8dcc8;
  text-decoration: underline;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(180, 165, 140, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #9a8a78;
  font-size: 0.8rem;
  font-family: Georgia, serif;
}

.site-footer a:hover {
  color: #e8dcc8;
  text-decoration: underline;
}

/* ── Redirect page ── */
body.redirect-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #1a1208;
  color: #e8ddd4;
  font-family: Georgia, "Times New Roman", serif;
}

body.redirect-page .site-footer {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  border: none;
}

body.redirect-page a { color: #d4af37; }

/* ── SEO subpages ── */
body.seo-subpage {
  min-height: 100vh;
  background: #0d0806;
  color: #e8dcc8;
  font-family: "Cinzel", Georgia, serif;
}

.seo-subpage-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.seo-subpage h1 {
  font-size: 1.5rem;
  color: #e8c547;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.seo-subpage h2 {
  font-size: 1.1rem;
  color: #d4af37;
  margin: 1.25rem 0 0.5rem;
}

.seo-subpage .lead,
.seo-subpage p {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(212, 196, 168, 0.9);
  margin-bottom: 0.75rem;
}

.seo-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: #9a8a78;
}

.seo-breadcrumb a { color: #d4af37; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.guide-top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.guide-top-bar a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4af37;
}

.guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.25rem 0;
}

.guide-nav a {
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c4b498;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 2px;
  text-decoration: none;
}

.guide-nav a:hover,
.guide-nav a.is-current {
  color: #1a0f04;
  background: #e8c547;
  border-color: #f5e6a8;
}

.guide-cta-box {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 4px;
}

.guide-cta-box .btn-start-now {
  margin-bottom: 0.75rem;
}

.guide-cta-box p {
  font-family: Georgia, serif;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.8);
  margin: 0;
}

.news-item {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid #e8c547;
  border-radius: 0 4px 4px 0;
}

.news-item time {
  display: block;
  font-size: 0.75rem;
  color: #9a8a78;
  margin-bottom: 0.35rem;
}

.news-item h3 {
  font-size: 1rem;
  color: #e8c547;
  margin-bottom: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .classes-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .btn-start-now {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
}
