@charset "UTF-8";
:root {
  --elder-topbar-h: 64px;
  --elder-left-w: 428px;
  --elder-right-w: 428px;
  --elder-center-max: 1044px;
  --elder-content-overlap: 15px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body.elder-page {
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%), linear-gradient(180deg, #0b0710 0%, #0b0710 40%, #120c1a 100%);
  font-family: "Poppins", serif;
  color: #2a2218;
}

html::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

html::-webkit-scrollbar-track {
  background: #000;
}

html::-webkit-scrollbar-thumb {
  background: #573925;
  border-radius: 4px;
  border: 2px solid #000;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #573925 #000;
}

.elder-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--elder-topbar-h);
  z-index: 2200;
  background: rgba(10, 8, 12, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .elder-topbar {
    display: none;
  }
}
.elder-hamburger {
  width: 46px;
  height: 38px;
  padding: 8px 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: grid;
  gap: 5px;
}
.elder-hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.elder-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.elder-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.elder-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.elder-hamburger.is-open span {
  background: rgba(255, 255, 255, 0.85);
}

.elder-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2100;
  padding: calc(var(--elder-topbar-h) + 16px) 16px 20px;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  display: flex;
  overflow-y: auto;
}

.elder-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .elder-mobile-menu {
    display: none !important;
  }
}
.elder-mobile-menu__panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}

.elder-mobile-menu__logo {
  display: flex;
  justify-content: center;
  padding: 10px 0 20px;
}
.elder-mobile-menu__logo img {
  height: 58px;
  width: auto;
}

.elder-mobile-menu__menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elder-mobile-menu__list {
  width: 210px;
  max-height: 236px;
  overflow-y: scroll;
  padding-left: 10px;
  padding-right: 17px;
  display: grid;
  gap: 10px;
  align-content: start;
  margin-bottom: 20px;
  margin-left: 15px;
  scrollbar-width: thin;
  scrollbar-color: #573925 #000;
}
.elder-mobile-menu__list::-webkit-scrollbar {
  width: 7px;
  -webkit-appearance: none;
}
.elder-mobile-menu__list::-webkit-scrollbar-track {
  background: #000;
}
.elder-mobile-menu__list::-webkit-scrollbar-thumb {
  background: #573925;
  border-radius: 4px;
  border: 2px solid #000;
}

.elder-mobile-menu__footer {
  margin-top: auto;
  padding-top: 20px;
}

.elder-layout {
  min-height: 100vh;
}

.elder-left,
.elder-right {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.elder-left {
  left: 0;
  width: var(--elder-left-w);
  background: url("../assets/img/sidebar-left-bg.png") right top/var(--elder-left-w) auto no-repeat;
}

.elder-left__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0 18px;
  height: 100%;
  overflow-y: auto;
}

.elder-left__logo {
  margin-bottom: 8px;
}
.elder-left__logo img {
  width: min(300px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.25));
}

.elder-right {
  right: 0;
  width: var(--elder-right-w);
  background: url("../assets/img/sidebar-right-bg.png") left top/var(--elder-right-w) auto no-repeat;
}

@media (max-width: 1400px) {
  :root {
    --elder-right-w: 0px;
  }
  .elder-right {
    display: none;
  }
}
@media (max-width: 1200px) {
  :root {
    --elder-left-w: 380px;
  }
}
@media (max-width: 1100px) {
  :root {
    --elder-left-w: 340px;
  }
}
@media (max-width: 991.98px) {
  .elder-left {
    display: none;
  }
}
.elder-menu {
  width: min(92%, 340px);
  padding: 22px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elder-menu__frame {
  width: 305px;
  min-height: 576px;
  background: url("../assets/img/menu-bg.svg") top center/305px 576px no-repeat;
  padding: 56px 18px 18px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.45));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elder-menu__list {
  width: 190px;
  max-height: 400px;
  overflow: auto;
  padding-right: 6px;
  display: grid;
  gap: 10px;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: #573925 #000;
}
.elder-menu__list::-webkit-scrollbar {
  width: 7px;
}
.elder-menu__list::-webkit-scrollbar-track {
  background: #000;
}
.elder-menu__list::-webkit-scrollbar-thumb {
  background: #573925;
  border-radius: 4px;
  border: 2px solid #000;
}

.elder-menu__btn {
  width: 174px;
  height: 31px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 235, 195, 0.95), rgba(214, 182, 125, 0.92));
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: filter 0.15s ease;
}
.elder-menu__btn:hover {
  filter: brightness(1.04);
}
.elder-menu__btn.is-active {
  filter: brightness(120%) drop-shadow(0 0 2px #BC3F04);
}

.elder-timer {
  margin-top: 14px;
  width: 180px;
  height: 65px;
  border: 1px dashed #573925;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.1);
}

.elder-timer__label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.elder-timer__value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #BC3F04;
  text-align: center;
  white-space: nowrap;
}

.elder-social {
  margin-top: 18px;
  text-align: center;
}

.elder-social__title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFE298;
  line-height: 1.35;
  margin-bottom: 12px;
}

.elder-social__icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.elder-social__icon {
  width: 41px;
  height: 37px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  background: linear-gradient(180deg, #e3c17a, #efde9a);
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: filter 0.15s ease;
}
.elder-social__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.elder-social__icon:hover {
  filter: brightness(1.04);
}

.elder-center {
  position: relative;
  z-index: 20;
  margin-left: calc(var(--elder-left-w) - var(--elder-content-overlap));
  margin-right: calc(var(--elder-right-w) - var(--elder-content-overlap));
  min-height: 100vh;
  padding: 0 40px;
  background: url("../assets/img/content-bg.png") center top/100% auto repeat-y;
  box-sizing: border-box;
  overflow: hidden;
}
.elder-center > .elder-info {
  max-width: var(--elder-center-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 1400px) {
  .elder-center {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .elder-center {
    margin-left: 0;
    margin-right: 0;
    padding-top: var(--elder-topbar-h);
  }
}
.elder-center__inner {
  max-width: var(--elder-center-max);
  margin: 0 auto;
  padding: 0 0 80px;
  overflow: hidden;
  box-sizing: border-box;
}

.elder-hero {
  text-align: center;
  padding: 60px 0 30px;
  position: relative;
}

.elder-hero__logo {
  margin-bottom: 16px;
}
.elder-hero__logo img {
  width: min(400px, 75%);
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
}

.elder-hero__tagline {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #8a7560;
  letter-spacing: 1.5px;
  margin: 0;
}

.elder-hero__character {
  margin: 0 auto;
}
.elder-hero__character img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.elder-intro {
  text-align: center;
  padding: 30px 0;
}

.elder-lead {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #3a3028;
  margin-bottom: 8px;
}

.elder-date-info {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2a2218;
  margin-bottom: 16px;
}
.elder-date-info strong {
  font-weight: 600;
}

.elder-description {
  font-family: "Poppins", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4038;
  max-width: 591px;
  margin: 0 auto 30px;
}

.elder-cta {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.elder-cta__wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.elder-cta__bg {
  width: 290px;
  height: auto;
  display: block;
}

.elder-cta__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #FFD66F;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  padding-top: 5px;
  pointer-events: none;
  text-align: center;
}

.elder-cta-long {
  display: flex;
  justify-content: center;
}

.elder-cta-long__wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.elder-cta-long__bg {
  max-width: 541px;
  height: auto;
  display: block;
}

.elder-cta-long__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #FFD66F;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
}

.elder-box {
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(136, 36, 36, 0.4) 0%, transparent 60%), #100F0F;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 180px;
  overflow: visible;
  max-width: 858px;
  margin: 0 auto 25px;
}

.elder-box--reverse {
  flex-direction: row-reverse;
}

.elder-box__content {
  flex: 1;
  min-width: 0;
}

.elder-box__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.elder-box__text {
  font-family: "Poppins", serif;
  font-size: 14px;
  line-height: 1.7;
  color: #966E53;
  margin: 0;
}

.elder-box__image {
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: -30px;
  margin-top: -40px;
  margin-right: -162px;
  margin-left: -65px;
}
.elder-box__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.elder-box--reverse .elder-box__image {
  margin-right: -49px;
  margin-left: -75px;
}

@media (max-width: 600px) {
  .elder-box {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    min-height: auto;
  }
  .elder-box--reverse {
    flex-direction: column;
  }
  .elder-box__image {
    max-width: 140px;
    order: -1;
    margin: -30px 0 15px 0;
    align-self: center;
  }
  .elder-box--reverse .elder-box__image {
    margin-left: 0;
  }
}
.elder-section {
  scroll-margin-top: 80px;
  padding: 25px 0;
}

.elder-feature {
  margin-bottom: 30px;
}

.elder-feature__header {
  margin-bottom: 0;
}

.elder-feature__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #C9A227;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.2) 0%, transparent 100%);
  border-left: 3px solid #C9A227;
  padding: 10px 15px;
  margin: 0;
  line-height: 1.3;
}

.elder-feature__body {
  background: #E8DCC8;
  border-radius: 0 0 8px 8px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: visible;
}

.elder-feature__body--reverse {
  flex-direction: row-reverse;
}

.elder-feature__content {
  flex: 1;
  min-width: 0;
}

.elder-feature__text {
  font-family: "Poppins", serif;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3028;
  margin: 0 0 12px;
}
.elder-feature__text:last-child {
  margin-bottom: 0;
}
.elder-feature__text strong {
  color: #8B4513;
  font-weight: 600;
}

.elder-feature__image {
  flex-shrink: 0;
  width: 180px;
}
.elder-feature__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.elder-feature__image--right {
  margin-right: -25px;
  margin-bottom: -20px;
  align-self: flex-end;
}

.elder-feature__image--left {
  margin-left: -25px;
  margin-bottom: -20px;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .elder-feature__body {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .elder-feature__body--reverse {
    flex-direction: column;
  }
  .elder-feature__image {
    width: 140px;
    order: -1;
    align-self: center;
    margin: 0 0 15px 0 !important;
  }
  .elder-feature__title {
    font-size: 14px;
  }
  .elder-feature__text {
    font-size: 13px;
  }
}
.elder-h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #2a2218;
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(87, 57, 37, 0.3);
}

.elder-section p {
  font-family: "Poppins", serif;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3028;
  margin-bottom: 12px;
}

.elder-card {
  background: rgba(0, 0, 0, 0.75);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.elder-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.elder-card__text {
  font-family: "Poppins", serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.elder-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.elder-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: "Poppins", serif;
  font-size: 15px;
  color: #3a3028;
}
.elder-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #BC3F04;
  font-weight: bold;
}

.elder-note {
  background: rgba(188, 63, 4, 0.1);
  border-left: 3px solid #BC3F04;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-family: "Poppins", serif;
  font-size: 14px;
  color: #4a4038;
}
.elder-note code {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.elder-table {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  overflow: hidden;
}
.elder-table table {
  color: rgba(255, 255, 255, 0.9);
}
.elder-table th {
  background: rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 16px;
  border: none;
}
.elder-table td {
  font-family: "Poppins", serif;
  font-size: 14px;
  padding: 10px 16px;
  border-color: rgba(255, 255, 255, 0.08);
}

.elder-ranking {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  overflow: hidden;
}

.elder-ranking__row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.elder-ranking__row:last-child {
  border-bottom: none;
}
.elder-ranking__row span {
  width: 32px;
  color: #BC3F04;
  font-weight: 700;
}
.elder-ranking__row strong {
  flex: 1;
}
.elder-ranking__row em {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-size: 13px;
}

.elder-thumb {
  aspect-ratio: 16/10;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.elder-footer-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.elder-mobile-menu .elder-menu__frame {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .elder-center__inner {
    padding: 0 20px 60px;
  }
  .elder-hero__logo img {
    width: min(280px, 80%);
  }
  .elder-hero__date {
    font-size: 18px;
  }
  .elder-h2 {
    font-size: 18px;
  }
  .elder-box__title {
    font-size: 16px;
  }
}
.elder-info {
  margin-bottom: 30px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.elder-info__body {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.elder-info__body p {
  font-family: "Poppins", serif;
  font-size: 14px;
  line-height: 1.5;
  color: #56473E;
  margin-bottom: 0;
}
.elder-info__body p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: bold;
  font-size: 14px;
  color: #56473E;
}

.elder-creators {
  padding: 15px 0;
}

.elder-creators__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.elder-creator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(136, 36, 36, 0.4) 0%, transparent 60%), #100F0F;
  border-radius: 12px;
  padding: 8px 16px 8px 8px;
  text-decoration: none;
  width: 232px;
  height: 72px;
  transition: filter 0.15s ease;
}
.elder-creator:hover {
  filter: brightness(1.1);
}

.elder-creator__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.elder-creator__name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.elder-creator__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .elder-creator {
    width: 100%;
    max-width: 232px;
    height: 60px;
    padding: 6px 12px 6px 6px;
  }
  .elder-creator__avatar {
    width: 40px;
    height: 40px;
  }
  .elder-creator__name {
    font-size: 12px;
  }
}
.elder-link {
  color: #BC3F04;
  text-decoration: none;
  font-weight: 500;
}
.elder-link:hover {
  color: #d5622d;
  text-decoration: underline;
}

.elder-sub-text {
  color: #966E53 !important;
}

@media (max-width: 550px) {
  img {
    width: 100%;
    height: auto;
  }
  .elder-topbar__brand img {
    width: 110px;
  }
}
ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
ul.elder-sub-text strong {
  color: #966E53 !important;
}

.elder-items-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
}

.elder-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.elder-item__icon {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}

.elder-item__name {
  font-family: "Poppins", serif;
  font-size: 15px;
  color: #966E53;
}

.elder-items-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.elder-item-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.elder-item-row__icon {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}

.elder-item-row__text {
  font-family: "Poppins", serif;
  font-size: 15px;
  color: #3a3028;
}
.elder-item-row__text strong {
  font-weight: 600;
}
.elder-item-row__text .text-muted {
  color: #7a7068;
}

@media (max-width: 576px) {
  .elder-items-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .elder-item-row__icon {
    width: 48px;
    height: 48px;
  }
  .elder-item-row__text {
    font-size: 14px;
  }
}
.text-muted {
  color: #966E53 !important;
}

.elder-table-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 100%;
  overflow: hidden;
}

.elder-table-custom__row {
  display: flex;
  align-items: center;
  min-height: 54px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(180, 140, 100, 0.2);
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.elder-table-custom__row:hover {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(210, 170, 120, 0.35);
}

.elder-table-custom__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex: 1 1 0;
  min-width: 0;
  padding: 9px 14px;
  border: none;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.elder-table-custom__cell--icon {
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.elder-table-custom__cell--icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.elder-table-custom__cell--item {
  flex: 1.5;
  max-width: 200px;
}

.elder-table-custom__cell--level {
  flex: 0 0 70px;
  max-width: 70px;
  text-align: center;
  align-items: center;
}

.elder-table-custom__label {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(120, 90, 60, 0.7);
}

.elder-table-custom__value {
  font-family: "Poppins", serif;
  font-size: 13px;
  color: #7a5c3e;
  font-weight: 500;
}

@media (max-width: 991px) {
  .elder-table-custom__row {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 10px 14px;
    gap: 3px;
  }
  .elder-table-custom__cell--icon {
    flex: none;
    width: auto;
    padding: 2px 0;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
  }
  .elder-table-custom__cell--icon img {
    width: 34px;
    height: 34px;
  }
  .elder-table-custom__cell {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 2px 0;
  }
  .elder-table-custom__cell--item {
    max-width: none;
  }
  .elder-table-custom__cell--level {
    max-width: none;
    flex: none;
    text-align: left;
    align-items: flex-start;
  }
  .elder-table-custom__label {
    font-size: 9px;
  }
  .elder-table-custom__value {
    font-size: 12px;
  }
}
.elder-icons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 0;
}

.elder-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.elder-icon-box img {
  -o-object-fit: contain;
     object-fit: contain;
}

.elder-map-info {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  max-width: 781px;
  margin: 0 auto;
}

.elder-map-info--reverse {
  flex-direction: row-reverse;
}

.elder-map-info__content {
  flex: 1;
}
.elder-map-info__content p {
  font-family: "Poppins", serif;
  font-size: 14px;
  color: #3a3028;
  margin-bottom: 5px;
  text-align: left;
}
.elder-map-info__content ul {
  margin-bottom: 15px;
  align-items: flex-start;
  margin-left: 20px;
}

.elder-map-info__image {
  flex: 0 0 auto;
}
.elder-map-info__image img {
  height: auto;
}

@media (max-width: 768px) {
  .elder-map-info {
    flex-direction: column;
    padding: 15px 0;
  }
  .elder-map-info--reverse {
    flex-direction: column;
  }
  .elder-map-info__image {
    width: 100%;
    text-align: center;
    order: -1;
  }
  .elder-map-info__image img {
    width: 100%;
    max-width: 280px;
  }
  .elder-map-info__content ul {
    align-items: center;
    margin-left: 0;
  }
  .elder-map-info__content p {
    text-align: center;
  }
}
.elder-scrolls-compare {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

.elder-scrolls-compare__item {
  text-align: center;
}
.elder-scrolls-compare__item p {
  margin-bottom: 15px;
}
.elder-scrolls-compare__item img {
  max-width: 240px;
  height: auto;
}

@media (max-width: 768px) {
  .elder-scrolls-compare {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .elder-scrolls-compare__item img {
    max-width: 200px;
  }
}
.elder-shop-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

.elder-shop-info__left,
.elder-shop-info__right {
  flex: 1;
}
.elder-shop-info__left p,
.elder-shop-info__right p {
  font-family: "Poppins", serif;
  font-size: 14px;
  color: #3a3028;
  margin-bottom: 15px;
}
.elder-shop-info__left img,
.elder-shop-info__right img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .elder-shop-info {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .elder-shop-info__left,
  .elder-shop-info__right {
    text-align: center;
  }
  .elder-shop-info__left img,
  .elder-shop-info__right img {
    max-width: 280px;
  }
}
.elders-socials .elder-social__icons .elder-social__icon {
  width: 64px;
  height: 58px;
  border-radius: 12px;
}
.elders-socials .elder-social__icons .elder-social__icon svg {
  width: 24px;
  height: 24px;
}

.elder-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(ellipse 80% 80% at 50% 30%, rgba(136, 36, 36, 0.3) 0%, transparent 50%), linear-gradient(180deg, #0a0608 0%, #0f0b0b 50%, #120c1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.elder-loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.elder-loading-logo {
  width: min(320px, 70vw);
  height: auto;
  margin-bottom: 40px;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 210, 111, 0.3));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.elder-loading-container {
  width: min(300px, 80vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.elder-loading-bar-wrapper {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 111, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.elder-loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e3c17a, #efde9a, #ffd66f);
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 210, 111, 0.5);
  position: relative;
}

.elder-loading-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.elder-loading-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 226, 152, 0.8);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.elder-loading-percent {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffd66f;
  text-shadow: 0 0 20px rgba(255, 210, 111, 0.5);
}

.elder-loading-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.elder-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 210, 111, 0.6);
  border-radius: 50%;
  animation: particleRise 4s infinite ease-out;
}

@keyframes particleRise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}
/* Audio Control Button */
.elder-audio-control {
  position: fixed;
  bottom: 220px;
  right: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(227, 193, 122, 0.9), rgba(214, 182, 125, 0.85));
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.elder-audio-control:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.elder-audio-control svg {
  width: 20px;
  height: 20px;
  fill: #1a1a1a;
}

.elder-audio-control .icon-muted {
  display: none;
}

.elder-audio-control.is-muted .icon-sound {
  display: none;
}

.elder-audio-control.is-muted .icon-muted {
  display: block;
}

/* ============================================================
   NAVBAR – Top navigation bar
   ============================================================ */
.elder-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  z-index: 3000;
  background: rgba(10, 7, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.elder-navbar.is-hidden {
  transform: translateY(-100%);
}
.elder-navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.elder-navbar__brand {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.elder-navbar__brand img {
  height: 28px;
  width: auto;
}
.elder-navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.elder-navbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.elder-navbar__link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.elder-navbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.elder-navbar__link--discord:hover {
  color: #5865F2;
  background: rgba(88, 101, 242, 0.1);
}
.elder-navbar__link--facebook:hover {
  color: #1877F2;
  background: rgba(24, 119, 242, 0.1);
}

/* Navbar mobile toggle */
.elder-navbar__toggle {
  display: none;
  width: 36px;
  height: 30px;
  padding: 6px 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.elder-navbar__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.elder-navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.elder-navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.elder-navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .elder-navbar__links {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 7, 16, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 14px;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }
  .elder-navbar.is-open .elder-navbar__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .elder-navbar__link {
    width: 100%;
    padding: 10px 14px;
  }
  .elder-navbar__toggle {
    display: flex;
  }
}

/* ============================================================
   PROMO BOX – Blinking corner notification
   ============================================================ */
.elder-promo {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 290px;
  background: linear-gradient(135deg, rgba(18, 12, 26, 0.96), rgba(30, 18, 10, 0.96));
  border: 1px solid rgba(255, 214, 111, 0.25);
  border-radius: 14px;
  padding: 20px 18px 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 63, 4, 0.15);
  animation: elderPromoGlow 2.5s ease-in-out infinite alternate;
  font-family: "Poppins", sans-serif;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.elder-promo.is-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
  pointer-events: none;
}
@keyframes elderPromoGlow {
  0% {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(188, 63, 4, 0.1);
    border-color: rgba(255, 214, 111, 0.15);
  }
  100% {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 214, 111, 0.18);
    border-color: rgba(255, 214, 111, 0.4);
  }
}
.elder-promo__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}
.elder-promo__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.elder-promo__badge {
  display: inline-block;
  background: linear-gradient(135deg, #BC3F04, #e85d1a);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  animation: elderBadgePulse 1.8s ease-in-out infinite;
}
@keyframes elderBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}
.elder-promo__title {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 8px;
}
.elder-promo__title strong {
  color: #FFD66F;
  font-weight: 700;
}
.elder-promo__codes {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
  line-height: 1.5;
}
.elder-promo__code {
  display: inline-block;
  background: rgba(255, 214, 111, 0.1);
  color: #FFD66F;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 214, 111, 0.15);
  font-family: monospace;
}
.elder-promo__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #BC3F04, #d4520f);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.elder-promo__btn:hover {
  background: linear-gradient(135deg, #d4520f, #e86520);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(188, 63, 4, 0.35);
  color: #fff;
}

/* Audio button position adjustment (above promo on left side) */
@media (max-width: 576px) {
  .elder-promo {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }
}

/* ============================================================
   WELCOME SPLASH
   ============================================================ */
.elder-welcome {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 3, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.elder-welcome.is-fading {
  opacity: 0;
}
.elder-welcome.is-hidden {
  display: none;
}
.elder-welcome__content {
  text-align: center;
}
.elder-welcome__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  color: #FFD66F;
  text-shadow: 0 0 40px rgba(255, 214, 111, 0.4), 0 0 80px rgba(188, 63, 4, 0.2);
  opacity: 0;
  transform: translateY(15px) scale(0.96);
  animation: welcomeFadeIn 0.8s ease 0.2s forwards;
}
.elder-welcome__sub {
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: welcomeFadeIn 0.8s ease 0.5s forwards;
}
@keyframes welcomeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Timer hide (removed from HTML but just in case) */
.elder-timer {
  display: none !important;
}

/*# sourceMappingURL=style.min.css.map */