:root {
  --e2-bg: #090b0b;
  --e2-bg-2: #111413;
  --e2-panel: rgba(18, 21, 20, .96);
  --e2-panel-2: rgba(26, 28, 26, .96);
  --e2-gold: #c79b54;
  --e2-gold-light: #ead7a8;
  --e2-gold-dark: #74552d;
  --e2-jade: #245f52;
  --e2-jade-light: #4f8b77;
  --e2-red: #7b241d;
  --e2-red-light: #b84f3d;
  --e2-text: #d3cdc0;
  --e2-muted: #999386;
  --e2-line: rgba(198, 155, 84, .34);
  --e2-shadow: 0 24px 70px rgba(0, 0, 0, .44);
  --e2-radius: 2px;
  --e2-shell: 1240px;
  --e2-header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 65, 57, .14), transparent 32rem),
    linear-gradient(180deg, #0c0e0e 0%, #080a09 100%);
  color: var(--e2-text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.025) 0 1px, transparent 1.4px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.02) 0 1px, transparent 1.4px);
  background-size: 13px 13px, 17px 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--e2-gold-light); text-decoration: none; }
a:hover { color: #fff0c6; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .7em;
  color: var(--e2-gold-light);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: .025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.2em; }
ul, ol { margin-top: 0; }

.shell { width: min(calc(100% - 40px), var(--e2-shell)); margin-inline: auto; }
.shell--narrow { width: min(calc(100% - 40px), 880px); }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus { clip: auto !important; clip-path: none; width: auto; height: auto; left: 12px; top: 12px; z-index: 9999; background: #fff; color: #000; padding: 10px 14px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--e2-header-h);
  background: linear-gradient(180deg, rgba(8, 10, 9, .97), rgba(9, 11, 10, .92));
  border-bottom: 1px solid rgba(199, 155, 84, .45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(199,155,84,.45) 15%, rgba(46,107,88,.5) 50%, rgba(199,155,84,.45) 85%, transparent);
  opacity: .65;
}
.site-header.is-scrolled { background: rgba(7, 9, 8, .985); box-shadow: 0 12px 40px rgba(0, 0, 0, .45); }
.admin-bar .site-header { top: 32px; }
.site-header__inner { height: 100%; display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: center; }
.site-brand { display: flex; align-items: center; min-width: 0; }
.site-brand__logo { width: 210px; max-height: 68px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.6)); }
.primary-navigation { justify-self: center; }
.primary-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(14px, 1.7vw, 27px); }
.primary-menu li { margin: 0; }
.primary-menu a {
  color: #d2c6a8;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding: 29px 0 25px;
  white-space: nowrap;
}
.primary-menu a::after {
  content: '';
  position: absolute;
  height: 1px;
  left: 50%; right: 50%; bottom: 18px;
  background: var(--e2-gold);
  transition: left .2s ease, right .2s ease;
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after { left: 0; right: 0; }
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { color: var(--e2-gold-light); }
.nav-toggle { display: none; }

.button {
  --btn-bg: linear-gradient(180deg, #2b6357, #173e36);
  --btn-border: #9b7a43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid var(--btn-border);
  outline: 1px solid rgba(0,0,0,.65);
  outline-offset: -4px;
  background: var(--btn-bg);
  color: #f2dfb3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 10px 25px rgba(0,0,0,.25);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px #000;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.button:hover { color: #fff4d3; transform: translateY(-2px); filter: brightness(1.12); box-shadow: 0 14px 30px rgba(0,0,0,.34); }
.button:focus-visible, a:focus-visible { outline: 2px solid #f2d99c; outline-offset: 4px; }
.button--header { min-height: 40px; padding: 9px 22px; }
.button--primary { --btn-bg: linear-gradient(180deg, #28695a, #153f36); }
.button--danger { --btn-bg: linear-gradient(180deg, #8e3128, #5f1d18); --btn-border: #a67b43; }
.button--ghost { --btn-bg: linear-gradient(180deg, rgba(47,48,43,.72), rgba(22,24,22,.8)); }
.button--full { width: 100%; }
.button--large { min-height: 58px; padding-inline: 38px; font-size: .86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.text-link { color: #d7ba80; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--e2-header-h) + 70px) 0 120px;
  background-image: url('../img/hero.webp');
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(199,155,84,.5);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(9,11,10,.95));
  pointer-events: none;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,5,.32), transparent 35%, transparent 68%, rgba(4,6,5,.34)),
    linear-gradient(180deg, rgba(4,6,5,.06) 20%, rgba(6,8,7,.28) 55%, rgba(5,7,6,.68) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 920px; }
.hero__logo { width: min(780px, 86vw); margin: 0 auto 8px; filter: drop-shadow(0 20px 28px rgba(0,0,0,.65)); }
.eyebrow {
  display: inline-block;
  color: #d2b779;
  font-size: .72rem;
  line-height: 1.1;
  letter-spacing: .24em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.7rem, 5.5vw, 5.4rem);
  text-transform: uppercase;
  color: #ead39a;
  text-shadow: 0 3px 0 #4d3420, 0 9px 24px rgba(0,0,0,.82);
  letter-spacing: .045em;
  margin-bottom: 18px;
}
.hero__lead { max-width: 690px; margin: 0 auto 28px; color: #e1d8c6; font-size: clamp(1rem, 1.7vw, 1.2rem); text-shadow: 0 2px 10px #000; }
.countdown { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 22px; padding: 10px 22px; background: rgba(8,10,9,.48); border-top: 1px solid rgba(215,184,119,.45); border-bottom: 1px solid rgba(215,184,119,.45); backdrop-filter: blur(5px); }
.countdown__label { color: var(--e2-muted); letter-spacing: .17em; font-size: .62rem; }
.countdown__values { color: #f0d79e; font-size: 1.05rem; letter-spacing: .08em; }

.petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.petals span { position: absolute; top: -6%; width: 11px; height: 7px; background: #e8a6ac; opacity: .65; border-radius: 70% 0 70% 0; filter: blur(.1px); animation: petal-fall linear infinite; }
.petals span:nth-child(1){left:8%;animation-duration:13s;animation-delay:-2s;transform:scale(.8)}
.petals span:nth-child(2){left:18%;animation-duration:16s;animation-delay:-8s;transform:scale(1.1)}
.petals span:nth-child(3){left:31%;animation-duration:14s;animation-delay:-6s}
.petals span:nth-child(4){left:42%;animation-duration:19s;animation-delay:-11s;transform:scale(.7)}
.petals span:nth-child(5){left:53%;animation-duration:15s;animation-delay:-3s;transform:scale(1.2)}
.petals span:nth-child(6){left:62%;animation-duration:18s;animation-delay:-13s}
.petals span:nth-child(7){left:71%;animation-duration:17s;animation-delay:-5s;transform:scale(.9)}
.petals span:nth-child(8){left:81%;animation-duration:20s;animation-delay:-10s;transform:scale(1.3)}
.petals span:nth-child(9){left:91%;animation-duration:14s;animation-delay:-7s}
.petals span:nth-child(10){left:24%;animation-duration:22s;animation-delay:-16s;transform:scale(.6)}
.petals span:nth-child(11){left:76%;animation-duration:21s;animation-delay:-14s;transform:scale(.75)}
@keyframes petal-fall { to { transform: translate(90px, 115vh) rotate(680deg); opacity: .1; } }

.feature-strip {
  position: relative;
  z-index: 5;
  margin-top: -68px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, rgba(28,31,29,.98), rgba(15,18,17,.98));
  border: 1px solid rgba(199,155,84,.58);
  box-shadow: var(--e2-shadow);
}
.feature-strip::before, .panel::before {
  content: '';
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 1px solid rgba(199,155,84,.13);
}
.feature-strip__item { position: relative; text-align: center; padding: 27px 20px 24px; min-height: 175px; }
.feature-strip__item + .feature-strip__item::after { content: ''; position: absolute; left: 0; top: 23px; bottom: 23px; width: 1px; background: linear-gradient(transparent, rgba(199,155,84,.45), transparent); }
.feature-strip__item h2 { font-size: .86rem; margin: 8px 0 5px; letter-spacing: .04em; }
.feature-strip__item p { color: #aaa395; font-size: .77rem; margin: 0; line-height: 1.45; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; margin: auto; color: #d6ac69; font-size: 1.65rem; border: 1px solid rgba(199,155,84,.42); transform: rotate(45deg); background: linear-gradient(135deg,#222623,#101211); box-shadow: inset 0 0 15px rgba(0,0,0,.65); }
.feature-icon::first-letter { transform: rotate(-45deg); }

.section { padding: 92px 0; position: relative; }
.section--muted { background: rgba(255,255,255,.015); border-top: 1px solid rgba(199,155,84,.1); }
.section--news { padding-top: 72px; }
.split-grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(300px, .65fr); gap: 20px; align-items: stretch; }
.panel {
  position: relative;
  background: linear-gradient(180deg, rgba(25,28,26,.97), rgba(14,17,16,.97));
  border: 1px solid rgba(199,155,84,.42);
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}
.panel--news, .status-panel, .ranking-panel, .article-panel { padding: 28px; }
.section-heading { margin-bottom: 27px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 650px; color: var(--e2-muted); }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(199,155,84,.18); padding-bottom: 18px; }
.section-heading--center { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.section-heading--center p { margin-inline: auto; }

.news-list { display: grid; gap: 15px; }
.news-card { display: grid; grid-template-columns: 180px 1fr; gap: 17px; align-items: stretch; min-height: 130px; padding: 7px; border: 1px solid rgba(199,155,84,.12); background: rgba(255,255,255,.013); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.news-card:hover { border-color: rgba(199,155,84,.36); background: rgba(255,255,255,.025); transform: translateY(-2px); }
.news-card__thumb { display: block; min-height: 120px; background-image: linear-gradient(135deg, rgba(19,55,47,.5), rgba(100,50,36,.35)), url('../img/arena.webp'); background-size: cover; background-position: center; overflow: hidden; }
.news-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 8px 10px 8px 0; align-self: center; }
.tag { display: inline-block; margin-bottom: 5px; color: #9cbb87; font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.news-card h3 { margin: 0 0 5px; font-size: 1.15rem; }
.news-card h3 a { color: var(--e2-gold-light); }
.news-card p { margin: 0 0 6px; font-size: .84rem; color: #aaa397; line-height: 1.5; }
.news-card time { color: #77736a; font-size: .72rem; }
.news-card--fallback > div:last-child { padding: 8px 10px 8px 0; align-self: center; }

.status-panel { display: flex; flex-direction: column; }
.status-panel__top { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding-bottom: 19px; border-bottom: 1px solid rgba(199,155,84,.18); }
.status-panel h2 { font-size: 1.6rem; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: #aca69a; white-space: nowrap; }
.status-badge i { width: 8px; height: 8px; border-radius: 50%; background: #777; box-shadow: 0 0 10px rgba(255,255,255,.12); }
.status-badge.is-online { color: #8fd48c; }.status-badge.is-online i { background: #77d26d; box-shadow: 0 0 10px rgba(119,210,109,.65); }
.status-badge.is-offline { color: #d98479; }.status-badge.is-offline i { background: #cf5749; box-shadow: 0 0 10px rgba(207,87,73,.5); }
.status-grid { display: grid; margin: 17px 0 24px; }
.status-grid > div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .86rem; }
.status-grid span { color: #9e9789; }
.status-grid strong { color: #d8c797; }
.admin-hint { margin: auto 0 18px; padding: 10px 12px; font-size: .76rem; color: #a8a196; background: rgba(255,255,255,.025); border-left: 2px solid var(--e2-gold-dark); }

.world-section { overflow: hidden; padding-block: 100px; }
.world-section::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 15% 50%, rgba(57,96,78,.1), transparent 34rem); pointer-events:none; }
.world-section__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.world-section__media { position: relative; }
.world-section__image { min-height: 480px; background: url('../img/arena.webp') center/cover; border: 1px solid rgba(199,155,84,.55); box-shadow: var(--e2-shadow); }
.world-section__image::after { content:''; position:absolute; inset:7px; border:1px solid rgba(199,155,84,.17); pointer-events:none; }
.media-crest { position:absolute; right:-24px; bottom:-24px; width:92px; height:92px; display:grid; place-items:center; background:radial-gradient(circle,#304f44,#101413 70%); border:1px solid var(--e2-gold); transform:rotate(45deg); color:#dcbf82; font-weight:700; font-size:1.2rem; box-shadow:0 15px 35px #000; }
.world-section__copy h2 { font-size: clamp(2.2rem,4vw,3.8rem); }
.world-section__copy > p { color:#aea698; font-size:1.03rem; }
.ornate-list { list-style:none; padding:0; margin:24px 0 30px; display:grid; gap:11px; }
.ornate-list li { position:relative; padding-left:28px; color:#d0c7b7; }
.ornate-list li::before { content:'◆'; position:absolute; left:0; color:var(--e2-jade-light); font-size:.8rem; top:.22em; }

.systems-section { background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0)); border-top: 1px solid rgba(199,155,84,.12); }
.system-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.system-card { min-height:280px; position:relative; overflow:hidden; padding:32px 27px; background:linear-gradient(160deg, rgba(33,37,34,.98), rgba(12,15,14,.98)); border:1px solid rgba(199,155,84,.34); box-shadow:0 16px 35px rgba(0,0,0,.2); }
.system-card::before { content:''; position:absolute; inset:6px; border:1px solid rgba(199,155,84,.09); }
.system-card::after { content:''; position:absolute; width:160px; height:160px; right:-80px; bottom:-80px; border:1px solid rgba(59,112,94,.25); transform:rotate(45deg); }
.system-card__number { display:block; color:#5c846f; font-size:2.8rem; line-height:1; opacity:.7; margin-bottom:42px; }
.system-card h3 { font-size:1.45rem; }
.system-card p { color:#9f988b; font-size:.9rem; position:relative; z-index:2; }

.opening-section { border-top:1px solid rgba(199,155,84,.11); }
.opening-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.72fr); gap:46px; align-items:center; }
.opening-art { display:block; position:relative; border:1px solid rgba(199,155,84,.55); box-shadow:var(--e2-shadow); overflow:hidden; }
.opening-art::after { content:''; position:absolute; inset:7px; border:1px solid rgba(241,211,148,.18); pointer-events:none; }
.opening-art img { width:100%; aspect-ratio:1/1; object-fit:cover; transition:transform .5s ease; }
.opening-art:hover img { transform:scale(1.015); }
.opening-copy h2 { font-size:clamp(2.2rem,4vw,3.6rem); }
.opening-copy p { color:#aba397; }
.opening-copy .button-row { justify-content:flex-start; }

.page-hero { min-height: 470px; padding: calc(var(--e2-header-h) + 110px) 0 75px; display:grid; place-items:center; text-align:center; position:relative; background: linear-gradient(180deg,rgba(6,8,7,.35),rgba(7,9,8,.87)), url('../img/hero.webp') center/cover; border-bottom:1px solid rgba(199,155,84,.42); }
.page-hero::after { content:''; position:absolute; inset:auto 0 0; height:120px; background:linear-gradient(transparent,var(--e2-bg)); }
.page-hero > .shell { position:relative; z-index:2; }
.page-hero h1 { text-transform:uppercase; text-shadow:0 5px 22px #000; }
.page-hero p { max-width:660px; margin:0 auto 25px; color:#d8d0c0; text-shadow:0 2px 10px #000; }
.page-hero--compact { min-height: 350px; padding-top: calc(var(--e2-header-h) + 90px); }
.page-hero--article { min-height:420px; }
.page-hero--download { background-image:linear-gradient(180deg,rgba(6,8,7,.3),rgba(7,9,8,.89)),url('../img/arena.webp'); }
.page-hero--guide { background-image:linear-gradient(180deg,rgba(6,8,7,.32),rgba(7,9,8,.88)),url('../img/guide-bg.png'); }
.page-hero--rankings { background-image:linear-gradient(180deg,rgba(6,8,7,.32),rgba(7,9,8,.9)),url('../img/rankings-bg.png'); }
.page-hero--community, .page-hero--shop, .page-hero--register { background-image:linear-gradient(180deg,rgba(6,8,7,.30),rgba(7,9,8,.88)),url('../img/community-bg.png'); }
.article-meta { color:#b5a986; font-size:.82rem; }

.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.post-grid .news-card { display:block; min-height:100%; padding:8px; }
.post-grid .news-card__thumb { min-height:210px; }
.post-grid .news-card__body { padding:18px 13px 15px; }
.pagination-wrap { margin-top:28px; }
.nav-links { display:flex; gap:8px; justify-content:center; }
.page-numbers { min-width:38px; height:38px; display:grid; place-items:center; border:1px solid rgba(199,155,84,.28); background:#141716; }
.page-numbers.current { color:#fff1c5; border-color:var(--e2-gold); }

.article-panel { padding: clamp(24px,5vw,54px); }
.article-featured { margin:-20px -20px 35px; border-bottom:1px solid rgba(199,155,84,.25); }
.article-featured img { width:100%; max-height:520px; object-fit:cover; }
.entry-content { color:#d0c9bb; font-family: Georgia,'Times New Roman',serif; }
.entry-content h2, .entry-content h3 { margin-top:1.5em; }
.entry-content a { text-decoration:underline; text-underline-offset:3px; }
.entry-content blockquote { margin:2em 0; padding:16px 20px; border-left:3px solid var(--e2-gold); background:rgba(255,255,255,.02); color:#e4d6b5; }
.entry-content img { border:1px solid rgba(199,155,84,.3); }
.entry-content table { width:100%; border-collapse:collapse; }
.entry-content th, .entry-content td { border:1px solid rgba(199,155,84,.22); padding:10px 12px; }

.ranking-panel { overflow:hidden; }
.table-scroll { overflow-x:auto; }
.ranking-table { width:100%; border-collapse:collapse; min-width:680px; }
.ranking-table th { text-align:left; color:#aa9b7a; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; padding:13px 15px; border-bottom:1px solid rgba(199,155,84,.33); }
.ranking-table td { padding:15px; border-bottom:1px solid rgba(255,255,255,.05); color:#bdb6a8; }
.ranking-table tbody tr:hover { background:rgba(199,155,84,.045); }
.ranking-table td:first-child { color:#d7ae68; width:65px; }
.empty-state { text-align:center; padding:60px 24px; }
.empty-state__crest { width:72px; height:72px; display:grid; place-items:center; margin:0 auto 20px; border:1px solid rgba(199,155,84,.5); transform:rotate(45deg); color:#d6b477; font-size:1.6rem; }
.empty-state h3 { font-size:1.55rem; }
.empty-state p { color:var(--e2-muted); max-width:600px; margin-inline:auto; }

.download-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step-card { padding:34px 30px; min-height:245px; }
.step-card > span { display:block; font-size:3rem; line-height:1; color:#507665; opacity:.75; margin-bottom:45px; }
.step-card h2 { font-size:1.45rem; }
.step-card p { color:#9e978a; }
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.guide-card { padding:34px 28px; min-height:275px; }
.guide-card__icon { display:grid; place-items:center; width:58px; height:58px; border:1px solid rgba(199,155,84,.45); color:#d4b16e; font-size:1.6rem; margin-bottom:35px; background:linear-gradient(135deg,#29302c,#101311); }
.guide-card h2 { font-size:1.45rem; }
.guide-card p { color:#a29b8d; }
.community-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.community-card { padding:38px 30px; min-height:280px; }
.community-card > span { font-size:2rem; color:#d4b16e; }
.community-card h2 { margin-top:35px; font-size:1.55rem; }
.community-card p { color:#a29b8d; }
.error-hero { min-height:70vh; }

.site-footer { position:relative; margin-top:70px; padding:90px 0 24px; background:linear-gradient(180deg,#111412,#090b0a); border-top:1px solid rgba(199,155,84,.5); }
.site-footer__crest { position:absolute; width:125px; height:125px; left:50%; top:0; transform:translate(-50%,-52%); display:grid; place-items:center; }
.site-footer__crest img { width:120px; max-height:120px; object-fit:contain; filter:drop-shadow(0 16px 18px rgba(0,0,0,.75)); }
.site-footer__grid { display:grid; grid-template-columns:1.6fr repeat(3,1fr); gap:55px; }
.site-footer h3 { font-size:.9rem; text-transform:uppercase; letter-spacing:.08em; color:#d8bb7d; }
.site-footer p { color:#817c72; max-width:310px; font-size:.83rem; }
.site-footer__grid > div:not(:first-child) { display:flex; flex-direction:column; gap:7px; }
.site-footer__grid > div:not(:first-child) a { color:#9e978a; font-size:.82rem; }
.site-footer__grid > div:not(:first-child) a:hover { color:#e1c88e; }
.footer-logo { display:inline-block; margin-bottom:8px; }
.footer-logo__img { width:220px; max-height:76px; object-fit:contain; }
.site-footer__bottom { display:flex; justify-content:space-between; gap:20px; margin-top:45px; padding-top:19px; border-top:1px solid rgba(199,155,84,.15); color:#6f6b63; font-size:.7rem; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns:190px 1fr auto; gap:18px; }
  .site-brand__logo { width:180px; }
  .primary-menu { gap:14px; }
  .primary-menu a { font-size:.68rem; }
  .button--header { padding-inline:16px; }
  .feature-strip { grid-template-columns:repeat(5,1fr); }
  .feature-strip__item { padding-inline:12px; }
  .system-cards { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 960px) {
  :root { --e2-header-h:68px; }
  .admin-bar .site-header { top:46px; }
  .site-header__inner { grid-template-columns:1fr auto auto; }
  .site-brand__logo { width:170px; }
  .nav-toggle { display:flex; width:43px; height:39px; padding:9px; border:1px solid rgba(199,155,84,.4); background:#111413; flex-direction:column; justify-content:center; gap:5px; cursor:pointer; }
  .nav-toggle span:not(.screen-reader-text) { display:block; height:1px; background:#d9bd82; width:100%; transition:transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
  .primary-navigation { position:absolute; top:100%; left:0; right:0; display:none; background:rgba(8,10,9,.99); border-bottom:1px solid rgba(199,155,84,.5); box-shadow:0 18px 30px rgba(0,0,0,.45); }
  .primary-navigation.is-open { display:block; }
  .primary-menu { display:block; width:min(calc(100% - 40px),var(--e2-shell)); margin:auto; padding:10px 0 18px; }
  .primary-menu a { display:block; padding:13px 4px; font-size:.76rem; border-bottom:1px solid rgba(255,255,255,.035); }
  .primary-menu a::after { display:none; }
  .feature-strip { grid-template-columns:repeat(3,1fr); margin-top:-42px; }
  .feature-strip__item:nth-child(4), .feature-strip__item:nth-child(5) { border-top:1px solid rgba(199,155,84,.13); }
  .feature-strip__item + .feature-strip__item::after { display:none; }
  .split-grid { grid-template-columns:1fr; }
  .world-section__grid { grid-template-columns:1fr; gap:45px; }
  .world-section__media { order:2; }
  .world-section__image { min-height:400px; }
  .opening-grid { grid-template-columns:1fr; }
  .opening-art { max-width:650px; }
  .post-grid, .guide-grid { grid-template-columns:repeat(2,1fr); }
  .download-grid, .community-cards { grid-template-columns:1fr; }
  .site-footer__grid { grid-template-columns:1.4fr repeat(3,1fr); gap:30px; }
}

@media (max-width: 700px) {
  .shell, .shell--narrow { width:min(calc(100% - 28px),var(--e2-shell)); }
  .button--header { display:none; }
  .site-header__inner { grid-template-columns:1fr auto; }
  .hero { min-height:720px; padding-top:calc(var(--e2-header-h) + 60px); background-position:62% center; }
  .hero__logo { width:min(680px,95vw); }
  .hero h1 { font-size:clamp(2.3rem,12vw,3.8rem); }
  .hero__lead { font-size:.98rem; }
  .button-row { flex-direction:column; align-items:stretch; max-width:340px; margin-inline:auto; }
  .feature-strip { grid-template-columns:1fr; margin-top:-32px; }
  .feature-strip__item { min-height:auto; padding:24px 20px; display:grid; grid-template-columns:55px 1fr; column-gap:17px; text-align:left; align-items:center; }
  .feature-strip__item + .feature-strip__item { border-top:1px solid rgba(199,155,84,.12); }
  .feature-icon { grid-row:1/3; margin:0; width:46px; height:46px; }
  .feature-strip__item h2 { margin:0; }
  .feature-strip__item p { margin:3px 0 0; }
  .section { padding:68px 0; }
  .section-heading--row { align-items:start; }
  .panel--news, .status-panel, .ranking-panel, .article-panel { padding:20px; }
  .news-card { grid-template-columns:115px 1fr; }
  .news-card__thumb { min-height:110px; }
  .world-section__image { min-height:310px; }
  .media-crest { width:74px; height:74px; right:-7px; bottom:-18px; }
  .system-cards { grid-template-columns:1fr; }
  .system-card { min-height:235px; }
  .post-grid, .guide-grid { grid-template-columns:1fr; }
  .page-hero { min-height:410px; padding-top:calc(var(--e2-header-h) + 90px); }
  .page-hero--compact { min-height:310px; }
  .site-footer__grid { grid-template-columns:1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column:1/-1; }
  .site-footer__bottom { flex-direction:column; }
}

@media (max-width: 480px) {
  .site-brand__logo { width:150px; }
  .hero { min-height:690px; }
  .hero__logo { margin-bottom:18px; }
  .hero h1 { font-size:2.45rem; }
  .eyebrow { letter-spacing:.16em; }
  .news-card { grid-template-columns:1fr; }
  .news-card__thumb { min-height:170px; }
  .news-card__body, .news-card--fallback > div:last-child { padding:12px; }
  .section-heading--row { display:block; }
  .section-heading--row .text-link { display:inline-block; margin-top:12px; }
  .site-footer__grid { grid-template-columns:1fr; }
  .site-footer__grid > div:first-child { grid-column:auto; }
}

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


.system-cards--six { grid-template-columns:repeat(3,1fr); }
.detail-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.detail-card { padding:30px 26px; min-height:220px; }
.detail-card h3 { font-size:1.4rem; margin-bottom:14px; }
.detail-card p { color:#a79f92; }
.info-stack { display:grid; gap:12px; margin:20px 0 24px; }
.info-stack__item { padding:12px 14px; border:1px solid rgba(199,155,84,.18); background:rgba(255,255,255,.02); }
.info-stack__item span { display:block; color:#8d8577; font-size:.74rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:4px; }
.info-stack__item strong { color:#dfd3ba; font-size:.92rem; }
.timeline-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.timeline-card { position:relative; padding:32px 26px; min-height:270px; overflow:hidden; }
.timeline-card__step { display:inline-grid; place-items:center; width:48px; height:48px; border:1px solid rgba(199,155,84,.45); color:#ddb877; margin-bottom:24px; font-weight:700; background:linear-gradient(135deg,#29302c,#101311); }
.timeline-card strong { display:block; color:#d8c79f; margin-bottom:12px; font-size:.92rem; }
.timeline-card p { color:#a39c8e; }
.guide-grid--wide { grid-template-columns:repeat(3,1fr); }
.split-layout { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.compact-table th, .compact-table td { font-size:.9rem; }
.download-grid--four { grid-template-columns:repeat(4,1fr); }

@media (max-width: 1120px) {
  .system-cards--six { grid-template-columns:repeat(2,1fr); }
  .detail-grid { grid-template-columns:repeat(2,1fr); }
  .timeline-grid { grid-template-columns:repeat(2,1fr); }
  .download-grid--four { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 960px) {
  .split-layout { grid-template-columns:1fr; }
}

@media (max-width: 700px) {
  .system-cards--six, .detail-grid, .timeline-grid, .guide-grid--wide, .download-grid--four { grid-template-columns:1fr; }
  .detail-card, .timeline-card { min-height:auto; }
}

/* =========================
   Elder2 presentation v3
   ========================= */
.shell--wide { width:min(calc(100% - 36px), 1420px); }
.section-anchor { scroll-margin-top: 138px; }

/* Header + structured dropdown */
.site-header__inner.shell--wide { grid-template-columns:230px 1fr; gap:26px; }
.site-brand__logo { width:220px; }
.primary-navigation { justify-self:end; }
.primary-menu { gap:clamp(12px,1.45vw,24px); }
.primary-menu > li { position:relative; }
.menu-parent-row { display:flex; align-items:center; }
.menu-parent-row > a { flex:1; }
.submenu-toggle {
  border:0; background:transparent; color:#d2c6a8; font-size:1rem; line-height:1; padding:0 0 0 6px;
  cursor:pointer; transition:transform .2s ease,color .2s ease;
}
.menu-item-has-children:hover .submenu-toggle,
.menu-item-has-children.is-submenu-open .submenu-toggle { color:#f1d797; transform:rotate(180deg); }
.sub-menu {
  position:absolute; top:calc(100% - 8px); left:50%; transform:translateX(-50%) translateY(8px);
  width:230px; margin:0; padding:8px; list-style:none; opacity:0; visibility:hidden; pointer-events:none;
  background:linear-gradient(180deg,rgba(18,21,20,.99),rgba(8,10,9,.99));
  border:1px solid rgba(199,155,84,.45); box-shadow:0 22px 50px rgba(0,0,0,.55);
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
}
.sub-menu::before { content:''; position:absolute; inset:5px; border:1px solid rgba(199,155,84,.10); pointer-events:none; }
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu,
.menu-item-has-children.is-submenu-open .sub-menu { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.primary-menu .sub-menu a { display:block; padding:11px 13px; font-size:.7rem; border-bottom:1px solid rgba(255,255,255,.045); }
.primary-menu .sub-menu li:last-child a { border-bottom:0; }
.primary-menu .sub-menu a::after { display:none; }
.nav-discord::before { content:'●'; color:#6f9f80; margin-right:7px; font-size:.68em; }

/* Home hero */
.hero--home { min-height:820px; }
.hero--home::before {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(circle at 50% 44%, rgba(89,130,105,.15), transparent 28%),
    linear-gradient(90deg,rgba(3,5,4,.62),rgba(3,5,4,.08) 38%,rgba(3,5,4,.08) 62%,rgba(3,5,4,.58));
}
.hero__content--home { padding-top:26px; }
.hero__content--home .hero__logo { width:min(690px,80vw); }
.hero__motto {
  margin:-3px auto 15px; max-width:820px; color:#f1dfb3; font-size:clamp(1.25rem,2.2vw,2rem);
  text-transform:uppercase; letter-spacing:.08em; text-shadow:0 3px 16px rgba(0,0,0,.9);
}
.hero__edge { position:absolute; inset:auto 0 0; height:5px; z-index:4; background:linear-gradient(90deg,transparent,#74552d 14%,#58a083 50%,#74552d 86%,transparent); opacity:.7; }
.hero-runes { position:absolute; inset:0; z-index:1; opacity:.12; pointer-events:none; background:radial-gradient(circle at 18% 60%,rgba(73,130,108,.45),transparent 15%),radial-gradient(circle at 83% 38%,rgba(160,104,65,.4),transparent 16%); animation:runePulse 7s ease-in-out infinite alternate; }
@keyframes runePulse { from{opacity:.07;transform:scale(1)} to{opacity:.18;transform:scale(1.025)} }

/* Main stat band */
.home-stat-band {
  position:relative; z-index:8; display:grid; grid-template-columns:repeat(4,1fr); margin-top:-62px;
  background:linear-gradient(180deg,rgba(23,27,25,.99),rgba(10,13,12,.99)); border:1px solid rgba(199,155,84,.55);
  box-shadow:0 25px 70px rgba(0,0,0,.52);
}
.home-stat-band::before { content:''; position:absolute; inset:6px; border:1px solid rgba(199,155,84,.12); pointer-events:none; }
.home-stat { display:grid; grid-template-columns:74px 1fr; gap:15px; align-items:center; min-height:150px; padding:24px 22px; position:relative; }
.home-stat + .home-stat::before { content:''; position:absolute; left:0; top:24px; bottom:24px; width:1px; background:linear-gradient(transparent,rgba(199,155,84,.42),transparent); }
.home-stat__icon { width:62px; height:62px; display:grid; place-items:center; border:1px solid rgba(199,155,84,.5); transform:rotate(45deg); color:#e1c17c; background:radial-gradient(circle,#2d4e42,#111513 70%); font-size:.85rem; font-weight:700; letter-spacing:.03em; }
.home-stat__icon::first-line { transform:rotate(-45deg); }
.home-stat strong { display:block; color:#dfc687; letter-spacing:.08em; font-size:.82rem; margin-bottom:5px; }
.home-stat p { color:#8f897d; font-size:.82rem; margin:0; line-height:1.45; }

/* Home presentation blocks */
.home-pillars { padding-top:105px; }
.pillar-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pillar-card { position:relative; min-height:390px; overflow:hidden; background:#111413; border:1px solid rgba(199,155,84,.38); box-shadow:0 18px 45px rgba(0,0,0,.3); transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease; transform-style:preserve-3d; }
.pillar-card::after { content:''; position:absolute; inset:6px; border:1px solid rgba(199,155,84,.10); pointer-events:none; }
.pillar-card:hover { transform:translateY(-7px); border-color:rgba(222,183,112,.72); box-shadow:0 28px 65px rgba(0,0,0,.48); }
.pillar-card__media { height:205px; background-image:linear-gradient(180deg,transparent 30%,#111413 100%),var(--card-image); background-size:cover; background-position:center; filter:saturate(.78) contrast(1.08); transition:transform .55s ease,filter .35s ease; }
.pillar-card:hover .pillar-card__media { transform:scale(1.035); filter:saturate(.95) contrast(1.08); }
.pillar-card__body { padding:22px 22px 26px; position:relative; z-index:2; }
.pillar-card__body > span { color:#588a73; font-size:.72rem; letter-spacing:.15em; }
.pillar-card h3 { font-size:1.35rem; margin:8px 0 10px; }
.pillar-card p { color:#999184; font-size:.9rem; margin:0; }

.home-live-section { background:linear-gradient(180deg,rgba(255,255,255,.012),transparent); border-top:1px solid rgba(199,155,84,.11); border-bottom:1px solid rgba(199,155,84,.10); }
.home-live-grid { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(330px,.65fr); gap:22px; align-items:stretch; }
.live-world { min-height:500px; }
.live-world__media { min-height:100%; position:relative; display:flex; align-items:flex-end; overflow:hidden; border:1px solid rgba(199,155,84,.5); background-image:linear-gradient(90deg,rgba(6,8,7,.94) 0%,rgba(6,8,7,.72) 35%,rgba(6,8,7,.18) 68%,rgba(6,8,7,.22)),var(--live-image); background-position:center; background-size:cover; box-shadow:var(--e2-shadow); }
.live-world__media::before { content:''; position:absolute; inset:7px; border:1px solid rgba(229,196,128,.16); }
.live-world__copy { position:relative; z-index:2; max-width:610px; padding:52px; }
.live-world__copy h2 { font-size:clamp(2.2rem,4vw,4rem); }
.live-world__copy p { color:#c7bfae; }
.status-panel--home { min-height:500px; display:flex; flex-direction:column; justify-content:center; }
.status-grid--large div { padding:17px 0; }
.status-grid--large strong { font-size:1.15rem; }

.home-showcase { padding-top:92px; }
.showcase-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.showcase-panel { padding:20px; background:linear-gradient(180deg,#171a18,#0d100f); border:1px solid rgba(199,155,84,.42); box-shadow:0 18px 48px rgba(0,0,0,.28); position:relative; }
.showcase-panel::before { content:''; position:absolute; inset:6px; border:1px solid rgba(199,155,84,.08); pointer-events:none; }
.showcase-panel__heading { display:flex; justify-content:space-between; gap:20px; align-items:end; margin-bottom:15px; }
.showcase-panel__heading h2 { font-size:1.7rem; margin:0; }
.showcase-main { height:300px; position:relative; overflow:hidden; border:1px solid rgba(199,155,84,.26); background-image:linear-gradient(180deg,rgba(5,7,6,.02),rgba(5,7,6,.72)),var(--showcase-image); background-size:cover; background-position:center; }
.showcase-main::after { content:''; position:absolute; inset:0; box-shadow:inset 0 0 70px rgba(0,0,0,.6); }
.media-label { position:absolute; left:18px; bottom:15px; z-index:2; padding:7px 11px; background:rgba(7,10,8,.78); border:1px solid rgba(199,155,84,.38); color:#e4cf9f; font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; }
.showcase-thumbs { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-top:8px; }
.showcase-thumbs span { height:74px; background-image:linear-gradient(rgba(5,7,6,.18),rgba(5,7,6,.5)),var(--thumb-image); background-size:cover; background-position:center; border:1px solid rgba(199,155,84,.22); transition:transform .2s ease,filter .2s ease,border-color .2s ease; }
.showcase-thumbs span:hover { transform:translateY(-3px); filter:brightness(1.12); border-color:rgba(226,188,116,.6); }

.home-ranking-section { background:radial-gradient(circle at 80% 50%,rgba(41,88,73,.12),transparent 30%); }
.home-ranking-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(350px,.8fr); gap:28px; align-items:center; }
.ranking-panel--home { padding:30px; }
.ranking-table--compact { min-width:520px; }
.ranking-placeholder { display:flex; align-items:center; gap:22px; padding:35px 15px; color:#9e978b; }
.ranking-placeholder span { width:62px; height:62px; display:grid; place-items:center; border:1px solid rgba(199,155,84,.45); color:#d9b774; font-size:1.5rem; transform:rotate(45deg); }
.ranking-placeholder strong { max-width:480px; font-weight:400; }
.community-cta { padding:48px 5vw; position:relative; }
.community-cta::before { content:'◆'; position:absolute; left:0; top:50%; transform:translateY(-50%); color:rgba(80,135,111,.3); font-size:9rem; }
.community-cta > * { position:relative; z-index:2; }
.community-cta h2 { font-size:clamp(2.3rem,4vw,3.8rem); }
.community-cta p { color:#a9a194; }
.button-row--left { justify-content:flex-start; }

/* Server presentation */
.page-hero--presentation { min-height:570px; }
.page-hero--presentation h1 { font-size:clamp(3rem,7vw,6.3rem); }
.presentation-nav { position:sticky; top:var(--e2-header-h); z-index:50; background:rgba(8,10,9,.94); backdrop-filter:blur(10px); border-top:1px solid rgba(199,155,84,.18); border-bottom:1px solid rgba(199,155,84,.35); box-shadow:0 10px 28px rgba(0,0,0,.26); }
.admin-bar .presentation-nav { top:calc(var(--e2-header-h) + 32px); }
.presentation-nav .shell { display:flex; justify-content:center; gap:5px; overflow-x:auto; scrollbar-width:none; }
.presentation-nav .shell::-webkit-scrollbar { display:none; }
.presentation-nav a { padding:17px 26px; color:#afa68f; white-space:nowrap; font-size:.76rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; border-left:1px solid rgba(199,155,84,.08); border-right:1px solid rgba(199,155,84,.08); }
.presentation-nav a:hover,.presentation-nav a.is-active { background:rgba(48,91,75,.18); color:#e7ce94; }
.presentation-section { position:relative; overflow:hidden; }
.presentation-section--dark { background:linear-gradient(180deg,#0f1211,#090b0a); border-top:1px solid rgba(199,155,84,.12); border-bottom:1px solid rgba(199,155,84,.12); }
.presentation-section--dark::before { content:''; position:absolute; inset:0; pointer-events:none; opacity:.11; background:radial-gradient(circle at 85% 20%,rgba(80,140,116,.7),transparent 22%),radial-gradient(circle at 10% 75%,rgba(135,90,48,.5),transparent 25%); }
.presentation-stats { display:grid; grid-template-columns:repeat(6,1fr); margin:35px 0 42px; border:1px solid rgba(199,155,84,.38); background:linear-gradient(180deg,#191d1a,#101311); }
.presentation-stats > div { min-height:130px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:18px; position:relative; }
.presentation-stats > div + div::before { content:''; position:absolute; left:0; top:25px; bottom:25px; width:1px; background:linear-gradient(transparent,rgba(199,155,84,.35),transparent); }
.presentation-stats strong { color:#e2c680; font-size:1.7rem; line-height:1; letter-spacing:.04em; margin-bottom:9px; }
.presentation-stats span { color:#8f897d; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; }
.feature-mosaic { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }
.feature-tile { display:grid; grid-template-columns:58px 1fr; gap:16px; padding:22px; min-height:160px; background:linear-gradient(155deg,rgba(27,31,28,.96),rgba(12,15,14,.96)); border:1px solid rgba(199,155,84,.24); position:relative; overflow:hidden; transition:transform .22s ease,border-color .22s ease; transition-delay:var(--delay,0ms); }
.feature-tile::after { content:''; position:absolute; width:110px; height:110px; right:-70px; bottom:-70px; border:1px solid rgba(70,130,105,.18); transform:rotate(45deg); }
.feature-tile:hover { transform:translateY(-4px); border-color:rgba(199,155,84,.52); }
.feature-tile__icon { width:52px; height:52px; display:grid; place-items:center; border:1px solid rgba(199,155,84,.38); background:#111513; font-size:1.35rem; }
.feature-tile h3 { font-size:1.08rem; margin:2px 0 8px; }
.feature-tile p { color:#989184; font-size:.86rem; margin:0; }

.gameplay-layout { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr); gap:34px; align-items:start; position:relative; z-index:2; }
.gameplay-list { display:grid; gap:12px; }
.gameplay-item { display:grid; grid-template-columns:54px 1fr; gap:18px; padding:19px 20px; background:rgba(255,255,255,.018); border:1px solid rgba(199,155,84,.16); transition:background .2s ease,border-color .2s ease,transform .2s ease; }
.gameplay-item:hover { background:rgba(199,155,84,.035); border-color:rgba(199,155,84,.38); transform:translateX(5px); }
.gameplay-item > span { color:#5b8a75; font-size:1.35rem; line-height:1; padding-top:6px; }
.gameplay-item h3 { font-size:1.15rem; margin:0 0 5px; }
.gameplay-item p { color:#9e978a; margin:0; font-size:.9rem; }
.gameplay-gallery { position:sticky; top:155px; padding:10px; border:1px solid rgba(199,155,84,.35); background:#111412; box-shadow:var(--e2-shadow); }
.gameplay-gallery figure { margin:0; position:relative; overflow:hidden; }
.gameplay-gallery img { width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.06); transition:transform .5s ease,filter .5s ease; }
.gameplay-gallery figure:hover img { transform:scale(1.035); filter:saturate(1) contrast(1.06); }
.gameplay-gallery__large { height:315px; }
.gameplay-gallery__large::after,.gameplay-gallery__small figure::after { content:''; position:absolute; inset:0; box-shadow:inset 0 0 55px rgba(0,0,0,.7); pointer-events:none; }
.gameplay-gallery figcaption { position:absolute; left:16px; bottom:13px; z-index:2; color:#e0c888; background:rgba(7,9,8,.72); padding:7px 10px; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; }
.gameplay-gallery__small { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:8px; }
.gameplay-gallery__small figure { height:150px; }
.gameplay-gallery blockquote { margin:18px 8px 8px; padding:18px 20px; border-left:2px solid #5d8d77; color:#d7c8a4; font-size:1.04rem; background:rgba(64,104,85,.07); }

.section-counter,.solo-seal { align-self:center; padding:10px 15px; border:1px solid rgba(199,155,84,.34); color:#d7b978; font-size:.72rem; letter-spacing:.12em; background:#111412; }
.world-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.world-card { position:relative; overflow:hidden; background:linear-gradient(180deg,#171a18,#0e1110); border:1px solid rgba(199,155,84,.3); min-height:360px; box-shadow:0 15px 38px rgba(0,0,0,.25); transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.world-card:hover { transform:translateY(-6px); border-color:rgba(214,174,103,.58); box-shadow:0 25px 55px rgba(0,0,0,.42); }
.world-card::after { content:''; position:absolute; inset:6px; border:1px solid rgba(199,155,84,.08); pointer-events:none; }
.world-card__media { height:195px; position:relative; overflow:hidden; background:#0c0f0e; }
.world-card__media::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(4,6,5,.02),rgba(13,16,15,.93)); box-shadow:inset 0 0 50px rgba(0,0,0,.55); }
.world-card__media img { width:100%; height:100%; object-fit:cover; filter:saturate(.72) sepia(.06) contrast(1.08); transition:transform .55s ease,filter .55s ease; }
.world-card:hover .world-card__media img { transform:scale(1.045); filter:saturate(.95) sepia(0) contrast(1.08); }
.world-card__number { position:absolute; right:15px; top:13px; z-index:2; width:42px; height:42px; display:grid; place-items:center; background:rgba(7,9,8,.76); border:1px solid rgba(199,155,84,.42); color:#e0bd77; font-size:.7rem; }
.world-card__body { position:relative; z-index:2; padding:19px 22px 25px; }
.world-card__body h3 { font-size:1.35rem; margin:7px 0 9px; }
.world-card__body p { color:#9b9487; font-size:.88rem; margin:0; }

.presentation-section--dungeons { background:linear-gradient(180deg,#0d100f,#090b0a); border-top:1px solid rgba(199,155,84,.14); }
.dungeon-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.dungeon-card { position:relative; overflow:hidden; min-height:460px; background:linear-gradient(180deg,#171a18,#0c0f0e); border:1px solid rgba(199,155,84,.35); box-shadow:0 18px 46px rgba(0,0,0,.28); transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease; }
.dungeon-card:hover { transform:translateY(-7px); border-color:rgba(226,185,109,.66); box-shadow:0 30px 65px rgba(0,0,0,.48); }
.dungeon-card::after { content:''; position:absolute; inset:6px; border:1px solid rgba(199,155,84,.08); pointer-events:none; }
.dungeon-card__media { height:225px; position:relative; overflow:hidden; }
.dungeon-card__media::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(5,7,6,.03),rgba(12,15,14,.9)); box-shadow:inset 0 0 62px rgba(0,0,0,.65); }
.dungeon-card__media img { width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.08); transition:transform .6s ease,filter .45s ease; }
.dungeon-card:hover .dungeon-card__media img { transform:scale(1.05); filter:saturate(1) contrast(1.08); }
.dungeon-card__solo,.dungeon-card__level { position:absolute; z-index:2; top:14px; padding:6px 9px; background:rgba(7,9,8,.8); border:1px solid rgba(199,155,84,.35); font-size:.66rem; letter-spacing:.1em; }
.dungeon-card__solo { left:14px; color:#72ae8b; border-color:rgba(83,151,117,.5); }
.dungeon-card__level { right:14px; color:#e0c181; }
.dungeon-card__body { position:relative; z-index:2; padding:20px 23px 26px; }
.dungeon-card__body h3 { font-size:1.45rem; margin-bottom:12px; }
.dungeon-card__body p { color:#9e978a; font-size:.88rem; margin:14px 0 0; }
.boss-line { display:grid; grid-template-columns:auto 1fr auto; gap:10px; align-items:center; padding:10px 0; border-top:1px solid rgba(199,155,84,.14); border-bottom:1px solid rgba(199,155,84,.14); font-size:.78rem; }
.boss-line span { color:#7f796f; text-transform:uppercase; letter-spacing:.08em; }
.boss-line strong { color:#d8c69d; font-weight:600; }
.boss-line em { color:#5d8e78; font-style:normal; white-space:nowrap; }
.solo-seal { color:#78b18e; border-color:rgba(76,142,109,.45); }

.presentation-finale { text-align:center; min-height:430px; display:grid; place-items:center; background:linear-gradient(180deg,rgba(8,10,9,.8),rgba(8,10,9,.96)),url('../img/community-bg.png') center/cover; border-top:1px solid rgba(199,155,84,.32); }
.presentation-finale h2 { font-size:clamp(3rem,6vw,5.5rem); }
.presentation-finale p { color:#c5bcaa; font-size:1.08rem; max-width:720px; margin-inline:auto; }
.footer-small { font-size:.76rem !important; margin-top:10px; }

/* Extra motion */
.reveal:nth-child(2n) { transition-delay:.045s; }
.reveal:nth-child(3n) { transition-delay:.09s; }
@media (hover:hover) and (pointer:fine) {
  [data-tilt] { will-change:transform; }
}

@media (max-width: 1180px) {
  .site-header__inner.shell--wide { grid-template-columns:190px 1fr; }
  .site-brand__logo { width:185px; }
  .primary-menu { gap:12px; }
  .primary-menu a { font-size:.66rem; }
  .home-stat-band { grid-template-columns:repeat(2,1fr); }
  .home-stat:nth-child(3),.home-stat:nth-child(4) { border-top:1px solid rgba(199,155,84,.12); }
  .home-stat:nth-child(3)::before { display:none; }
  .pillar-grid { grid-template-columns:repeat(2,1fr); }
  .presentation-stats { grid-template-columns:repeat(3,1fr); }
  .presentation-stats > div:nth-child(4)::before { display:none; }
  .presentation-stats > div:nth-child(n+4) { border-top:1px solid rgba(199,155,84,.12); }
  .world-grid,.dungeon-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 960px) {
  .site-header__inner.shell--wide { grid-template-columns:1fr auto; }
  .primary-navigation { justify-self:stretch; }
  .menu-parent-row { width:100%; }
  .submenu-toggle { display:grid; place-items:center; width:44px; height:42px; padding:0; border-left:1px solid rgba(199,155,84,.14); }
  .sub-menu { position:static; transform:none !important; width:100%; opacity:1; visibility:visible; pointer-events:auto; display:none; border:0; border-left:1px solid rgba(199,155,84,.22); background:rgba(255,255,255,.015); box-shadow:none; padding:0 0 0 15px; }
  .menu-item-has-children.is-submenu-open .sub-menu { display:block; }
  .primary-menu .sub-menu a { padding:10px 12px; }
  .presentation-nav { top:var(--e2-header-h); }
  .home-live-grid,.home-ranking-grid,.gameplay-layout { grid-template-columns:1fr; }
  .gameplay-gallery { position:relative; top:auto; }
  .showcase-grid { grid-template-columns:1fr; }
  .feature-mosaic { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 700px) {
  .shell--wide { width:min(calc(100% - 24px),1420px); }
  .hero--home { min-height:760px; }
  .hero__content--home .hero__logo { width:min(600px,94vw); }
  .hero__motto { font-size:1.08rem; }
  .home-stat-band { grid-template-columns:1fr; margin-top:-38px; }
  .home-stat + .home-stat::before { display:none; }
  .home-stat + .home-stat { border-top:1px solid rgba(199,155,84,.12); }
  .pillar-grid,.feature-mosaic,.presentation-stats,.world-grid,.dungeon-grid { grid-template-columns:1fr; }
  .presentation-stats > div + div::before { display:none; }
  .presentation-stats > div { border-top:1px solid rgba(199,155,84,.11); min-height:105px; }
  .presentation-stats > div:first-child { border-top:0; }
  .presentation-nav .shell { justify-content:flex-start; }
  .presentation-nav a { padding:14px 17px; font-size:.68rem; }
  .live-world__copy { padding:34px 28px; }
  .showcase-main { height:235px; }
  .showcase-thumbs span { height:58px; }
  .community-cta { padding:35px 5px; }
  .gameplay-gallery__large { height:250px; }
  .gameplay-gallery__small figure { height:110px; }
  .section-counter,.solo-seal { display:none; }
  .world-card,.dungeon-card { min-height:auto; }
  .world-card__media { height:185px; }
  .dungeon-card__media { height:205px; }
  .boss-line { grid-template-columns:1fr; gap:2px; }
}
