@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap");

:root {
  --sand-950: #110d09;
  --sand-900: #1b130d;
  --sand-850: #24180f;
  --bronze-800: #322116;
  --bronze-700: #49301e;
  --bronze-600: #654323;
  --charcoal: #181815;
  --charcoal-soft: #22221d;
  --gold: #e5b152;
  --gold-bright: #ffd98a;
  --turquoise: #2fbec0;
  --desert-orange: #d67838;
  --cream: #f6e7c8;
  --muted: #bba987;
  --line: rgba(229, 177, 82, 0.24);
  --glass: rgba(31, 23, 16, 0.74);
  --glass-strong: rgba(22, 17, 12, 0.9);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(47, 190, 192, 0.05), transparent 34%),
    radial-gradient(circle at 15% 20%, rgba(214, 120, 56, 0.13), transparent 28%),
    linear-gradient(180deg, var(--sand-900), var(--sand-950) 60%, #0c0907);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.23;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(229, 177, 82, 0.18) 49%, transparent 51%),
    linear-gradient(150deg, transparent 48%, rgba(47, 190, 192, 0.09) 49%, transparent 51%);
  background-size: 82px 82px;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.is-bronze {
  background:
    linear-gradient(180deg, rgba(73, 48, 30, 0.44), rgba(17, 13, 9, 0.2)),
    repeating-linear-gradient(90deg, rgba(229, 177, 82, 0.05) 0 1px, transparent 1px 92px);
}

.section.is-charcoal {
  background:
    linear-gradient(180deg, rgba(24, 24, 21, 0.94), rgba(17, 13, 9, 0.72)),
    linear-gradient(135deg, transparent 0 40%, rgba(47, 190, 192, 0.05) 40% 42%, transparent 42%);
}

.section-curve {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(47, 190, 192, 0.16);
  clip-path: ellipse(145% 100% at 50% 100%);
}

.section-kicker,
.eyebrow,
.tag,
.meta,
.score-label,
.difficulty,
.read-time,
.nav-link,
.btn,
.footer-title {
  font-family: "Rajdhani", "Inter", sans-serif;
  font-weight: 700;
}

.section-kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--turquoise);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.section-title,
.page-title,
.hero-title,
.article-title,
.card-title,
.legal-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  line-height: 1.05;
}

.section-title {
  max-width: 760px;
  font-size: 2.45rem;
}

.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.split-heading .section-intro {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom-color: rgba(229, 177, 82, 0.18);
  background: rgba(13, 10, 7, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.navbar {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(229, 177, 82, 0.56);
  border-radius: 50%;
  color: var(--gold-bright);
  background:
    linear-gradient(135deg, rgba(47, 190, 192, 0.16), transparent),
    rgba(24, 18, 13, 0.88);
  box-shadow: 0 0 22px rgba(229, 177, 82, 0.24);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.07rem;
  font-weight: 800;
}

.brand-domain {
  margin-top: 4px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #e9d8b9;
  font-size: 0.86rem;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-bright);
  border-color: rgba(229, 177, 82, 0.26);
  background: rgba(229, 177, 82, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 177, 82, 0.3);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(27, 19, 13, 0.7);
  cursor: pointer;
}

.nav-toggle-lines {
  display: grid;
  gap: 5px;
}

.nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-active .nav-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-active .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-active .nav-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(229, 177, 82, 0.42);
  border-radius: 999px;
  color: var(--cream);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 217, 138, 0.84);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26), 0 0 24px rgba(229, 177, 82, 0.18);
}

.btn:hover::after {
  transform: translateX(110%);
}

.btn-primary {
  background:
    linear-gradient(135deg, rgba(229, 177, 82, 0.92), rgba(214, 120, 56, 0.84)),
    var(--bronze-700);
  color: #180f08;
}

.btn-secondary {
  background: rgba(22, 17, 12, 0.72);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 13, 9, 0.94) 0%, rgba(17, 13, 9, 0.72) 42%, rgba(17, 13, 9, 0.24)),
    url("../img/hero-egypt.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 9, 6, 0.2), rgba(13, 9, 6, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(229, 177, 82, 0.035) 9px 10px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 54%;
  height: 72%;
  right: -10%;
  bottom: -8%;
  border: 1px solid rgba(229, 177, 82, 0.28);
  transform: skewX(-12deg);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(47, 190, 192, 0.13) 48% 49%, transparent 49%),
    repeating-linear-gradient(45deg, rgba(229, 177, 82, 0.07) 0 1px, transparent 1px 34px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding-top: 92px;
}

.hero-title {
  max-width: 760px;
  margin-top: 16px;
  font-size: 4.5rem;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 32px;
  color: #dbc6a5;
  font-size: 1.13rem;
}

.hero-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 190, 192, 0.28);
  border-radius: 999px;
  background: rgba(16, 15, 13, 0.62);
  color: var(--turquoise);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-signal::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 18px var(--turquoise);
}

.hero-widgets {
  display: grid;
  gap: 16px;
}

.floating-widget,
.glass-card,
.panel,
.story-card,
.compact-article,
.tournament-card,
.guide-card,
.voice-card,
.news-card,
.review-card,
.legal-card,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-widget {
  padding: 18px;
  transform: translateY(0);
  animation: floatWidget 5.8s ease-in-out infinite;
}

.floating-widget:nth-child(2) {
  margin-left: 42px;
  animation-delay: 900ms;
}

.floating-widget:nth-child(3) {
  margin-right: 34px;
  animation-delay: 1600ms;
}

.widget-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.widget-value {
  display: block;
  margin-top: 14px;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 800;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 32px;
  margin-top: 16px;
}

.signal-bars span {
  flex: 1;
  min-width: 8px;
  background: linear-gradient(180deg, var(--turquoise), rgba(47, 190, 192, 0.12));
}

.signal-bars span:nth-child(1) {
  height: 42%;
}

.signal-bars span:nth-child(2) {
  height: 68%;
}

.signal-bars span:nth-child(3) {
  height: 52%;
}

.signal-bars span:nth-child(4) {
  height: 88%;
}

.signal-bars span:nth-child(5) {
  height: 74%;
}

.dust-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(246, 231, 200, 0.5);
  animation: dustDrift var(--dust-speed, 12s) linear infinite;
  opacity: 0.42;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
}

.story-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transition: transform 520ms ease;
}

.story-card:hover img,
.news-card:hover img,
.review-card:hover img,
.guide-card:hover img {
  transform: scale(1.045);
}

.story-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  background: linear-gradient(180deg, transparent, rgba(13, 9, 6, 0.94) 36%, rgba(13, 9, 6, 0.98));
}

.article-title {
  margin: 12px 0;
  font-size: 2.35rem;
}

.story-meta,
.meta-row,
.article-tags,
.rank-item,
.event-row,
.review-meta,
.guide-meta,
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta,
.tag,
.read-time,
.difficulty,
.genre {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(229, 177, 82, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(17, 13, 9, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.tag,
.difficulty.elite {
  color: var(--gold-bright);
  border-color: rgba(229, 177, 82, 0.38);
}

.difficulty.competitive {
  color: var(--turquoise);
  border-color: rgba(47, 190, 192, 0.36);
}

.difficulty.beginner {
  color: #f0c19c;
  border-color: rgba(214, 120, 56, 0.34);
}

.article-stack {
  display: grid;
  gap: 16px;
}

.compact-article {
  position: relative;
  padding: 20px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.compact-article::before,
.tournament-card::before,
.guide-card::before,
.review-card::before,
.legal-card::before,
.contact-panel::before,
.form-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent, var(--turquoise));
  opacity: 0.75;
}

.compact-article:hover,
.tournament-card:hover,
.guide-card:hover,
.news-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 177, 82, 0.42);
  background:
    linear-gradient(145deg, rgba(229, 177, 82, 0.08), rgba(47, 190, 192, 0.03)),
    var(--glass);
}

.compact-article h3,
.tournament-card h3,
.guide-card h3,
.news-card h3,
.review-card h3,
.legal-card h3 {
  margin: 10px 0 8px;
  font-size: 1.18rem;
  line-height: 1.24;
}

.compact-article p,
.tournament-card p,
.guide-card p,
.news-card p,
.review-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tournament-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
}

.tournament-card.is-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 22px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.count-box {
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 1px solid rgba(47, 190, 192, 0.18);
  border-radius: 6px;
  background: rgba(13, 12, 10, 0.55);
}

.count-box strong {
  color: var(--gold-bright);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
}

.count-box span {
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.73rem;
  text-transform: uppercase;
}

.rank-list,
.event-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rank-item,
.event-row {
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(229, 177, 82, 0.12);
}

.rank-item strong,
.event-row strong {
  color: var(--cream);
}

.rank-item span,
.event-row span {
  color: var(--turquoise);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

.strategy-grid,
.news-grid,
.review-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.guide-card,
.news-card,
.review-card,
.legal-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-card img,
.news-card img,
.review-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 520ms ease;
}

.card-body {
  padding: 20px;
}

.guide-extra {
  max-height: 0;
  overflow: hidden;
  color: var(--cream);
  transition: max-height 280ms ease, margin-top 280ms ease;
}

.guide-card:hover .guide-extra,
.guide-card:focus-within .guide-extra {
  max-height: 130px;
  margin-top: 14px;
}

.metrics-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(214, 120, 56, 0.18), rgba(47, 190, 192, 0.11)),
    rgba(17, 13, 9, 0.92);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 24px 18px;
  border-top: 1px solid rgba(229, 177, 82, 0.38);
  background: rgba(255, 255, 255, 0.035);
}

.metric strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.voice-carousel {
  position: relative;
}

.voice-track {
  display: grid;
  min-height: 310px;
}

.voice-card {
  grid-area: 1 / 1;
  padding: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.voice-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.rating {
  display: flex;
  gap: 5px;
  color: var(--gold-bright);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
}

.voice-quote {
  margin: 22px 0;
  color: #f1dfbc;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.32;
}

.voice-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(229, 177, 82, 0.3);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(17, 13, 9, 0.66);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 177, 82, 0.65);
  background: rgba(229, 177, 82, 0.08);
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 13, 9, 0.95), rgba(17, 13, 9, 0.62)),
    var(--page-image, url("../img/hero-egypt.jpg")) center/cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, var(--sand-950));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-title {
  max-width: 840px;
  margin: 14px 0 18px;
  font-size: 3.6rem;
}

.page-subtitle {
  max-width: 720px;
  margin: 0;
  color: #dbc6a5;
  font-size: 1.08rem;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 24px;
  align-items: stretch;
}

.featured-article img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(31, 23, 16, 0.72);
}

.featured-copy h2 {
  margin: 12px 0 16px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.1;
}

.featured-copy p {
  color: var(--muted);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.category-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(229, 177, 82, 0.22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(17, 13, 9, 0.55);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.academy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.sidebar-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 17, 12, 0.78);
}

.sidebar-panel h2 {
  margin: 0 0 16px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.side-nav a:hover,
.side-nav a.is-active {
  color: var(--gold-bright);
  border-color: rgba(229, 177, 82, 0.24);
  background: rgba(229, 177, 82, 0.07);
}

.guide-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(31, 23, 16, 0.72);
}

.guide-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.guide-feature-copy {
  padding: 30px;
}

.guide-feature-copy h2 {
  margin: 12px 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
  line-height: 1.12;
}

.guide-feature-copy p {
  color: var(--muted);
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.review-head {
  position: relative;
  overflow: hidden;
}

.score-ring {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #18120d 0 53%, transparent 54%),
    conic-gradient(var(--gold) calc(var(--score, 80) * 1%), rgba(229, 177, 82, 0.16) 0);
  box-shadow: 0 0 24px rgba(229, 177, 82, 0.22);
  color: var(--gold-bright);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.pros-cons div {
  padding: 12px;
  border: 1px solid rgba(229, 177, 82, 0.16);
  border-radius: 6px;
  background: rgba(17, 13, 9, 0.44);
}

.pros-cons h4 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
}

.pros-cons ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.form-panel {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(229, 177, 82, 0.14);
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: var(--cream);
}

.map-placeholder {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(47, 190, 192, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(47, 190, 192, 0.19) 48% 49%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(229, 177, 82, 0.08) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(229, 177, 82, 0.06) 0 1px, transparent 1px 52px),
    linear-gradient(135deg, #2b1e13, #10110f);
}

.map-pin {
  position: absolute;
  left: 58%;
  top: 44%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 10px rgba(47, 190, 192, 0.14), 0 0 28px var(--turquoise);
}

.map-label {
  position: absolute;
  left: 32px;
  bottom: 28px;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  border: 1px solid rgba(229, 177, 82, 0.24);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--cream);
  background: rgba(13, 10, 7, 0.74);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-group textarea {
  min-height: 148px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--gold-bright);
  background: rgba(13, 10, 7, 0.92);
  box-shadow: 0 0 0 4px rgba(229, 177, 82, 0.1), 0 0 26px rgba(229, 177, 82, 0.12);
}

.field-error {
  min-height: 18px;
  color: #ffb78d;
  font-size: 0.86rem;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 190, 192, 0.34);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(47, 190, 192, 0.12);
}

.form-status.is-visible {
  display: block;
}

.legal-article {
  max-width: 920px;
}

.legal-card {
  padding: 24px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.4rem;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-highlight {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid rgba(47, 190, 192, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 190, 192, 0.1), rgba(214, 120, 56, 0.08));
}

.legal-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(229, 177, 82, 0.4);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(229, 177, 82, 0.18);
  background: #0d0a07;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 28px;
  padding: 54px 0;
}

.footer-copy {
  max-width: 430px;
  color: var(--muted);
}

.footer-title {
  margin: 0 0 14px;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(229, 177, 82, 0.12);
  color: rgba(246, 231, 200, 0.66);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(229, 177, 82, 0.34);
  border-radius: var(--radius);
  background: rgba(13, 10, 7, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h2 {
  margin: 0 0 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
}

.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 200;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--gold);
  color: #130d08;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

@keyframes floatWidget {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes dustDrift {
  from {
    transform: translate3d(0, 20px, 0);
  }
  to {
    transform: translate3d(34px, -110vh, 0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .featured-article,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-widget:nth-child(2),
  .floating-widget:nth-child(3) {
    margin: 0;
  }

  .command-grid,
  .strategy-grid,
  .news-grid,
  .review-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tournament-card.is-wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(229, 177, 82, 0.24);
    border-radius: var(--radius);
    background: rgba(13, 10, 7, 0.94);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.menu-active .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    justify-content: center;
    border-radius: 6px;
  }

  .split-heading,
  .editorial-grid,
  .academy-layout,
  .guide-feature {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    position: relative;
    top: auto;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .hero-title,
  .page-title {
    font-size: 3.05rem;
  }

  .hero-widgets {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card img {
    min-height: 430px;
  }

  .article-title {
    font-size: 1.85rem;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-domain {
    display: none;
  }

  .hero-title,
  .page-title {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .btn-row,
  .btn {
    width: 100%;
  }

  .command-grid,
  .strategy-grid,
  .news-grid,
  .review-grid,
  .legal-grid,
  .metric-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .tournament-card.is-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-overlay,
  .voice-card,
  .featured-copy,
  .contact-panel,
  .form-panel,
  .legal-card {
    padding: 22px;
  }

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