*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f7ead7;
  background-color: #120c08;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(214, 146, 39, 0.14), transparent 32%),
    radial-gradient(circle at 50% 35%, rgba(120, 73, 18, 0.08), transparent 38%),
    linear-gradient(180deg, #1b120c 0%, #140d09 45%, #0f0906 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(22, 15, 10, 0.96), rgba(17, 11, 7, 0.92));
  border-bottom: 1px solid rgba(255, 196, 92, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav__link {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #f3ddbc;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6c15f, #ffdd8f);
  transition: width 0.25s ease;
}

.site-nav__link:hover {
  color: #fff3cf;
}

.site-nav__link:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LANG */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 214, 140, 0.08);
  border: 1px solid rgba(255, 214, 140, 0.12);
}

.lang-switcher__btn {
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #f5e2bf;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lang-switcher__btn:hover {
  transform: translateY(-1px);
}

.lang-switcher__btn.is-active {
  background: linear-gradient(135deg, #e0a83d, #f5d17e);
  color: #2a1b0d;
  box-shadow: 0 8px 20px rgba(245, 209, 126, 0.22);
}

/* BUTTONS */
.header-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.header-btn--ghost {
  color: #f5e2bf;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 214, 140, 0.14);
}

.header-btn--main {
  color: #2a1b0d;
  background: linear-gradient(135deg, #d9982f, #f3cf79);
  box-shadow: 0 14px 28px rgba(217, 152, 47, 0.24);
}

/* BURGER */
.burger {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #d9982f, #f3cf79);
  box-shadow: 0 14px 28px rgba(217, 152, 47, 0.24);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.burger span {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #2a1b0d;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 15, 10, 0.98), rgba(14, 9, 6, 0.98));
  transition: max-height 0.35s ease;
  border-top: 1px solid rgba(255, 214, 140, 0.1);
}

.mobile-menu.is-open {
  max-height: 520px;
}

.mobile-menu__inner {
  padding-top: 16px;
  padding-bottom: 22px;
}

.mobile-menu__top {
  margin-bottom: 16px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 214, 140, 0.1);
  font-size: 16px;
  font-weight: 700;
  color: #f3ddbc;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-nav__link:hover {
  transform: translateX(2px);
  background: rgba(255, 214, 140, 0.06);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-menu__actions .header-btn {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav__link {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .site-nav,
  .header-actions .lang-switcher,
  .header-actions .header-btn {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .burger {
    display: inline-flex;
    margin-left: auto;
  }

  .site-logo img {
    height: 50px;
  }
}

@media (min-width: 961px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .header-inner {
    min-height: 76px;
  }

  .site-logo img {
    height: 46px;
  }

  .burger {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .lang-switcher__btn {
    min-width: 42px;
    height: 34px;
    font-size: 12px;
  }

  .mobile-nav__link {
    font-size: 15px;
  }
}

/* HERO RA */
.hero-ra {
  position: relative;
  z-index: 1;
  padding: 34px 0 28px;
}

.hero-ra__banner {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 9, 6, 0.92) 0%, rgba(19, 12, 8, 0.84) 42%, rgba(19, 12, 8, 0.46) 100%);
  border: 1px solid rgba(255, 214, 140, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hero-ra__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-ra__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 9, 6, 0.96) 0%, rgba(14, 9, 6, 0.88) 36%, rgba(14, 9, 6, 0.52) 62%, rgba(14, 9, 6, 0.28) 100%),
    radial-gradient(circle at 20% 20%, rgba(226, 173, 75, 0.12), transparent 24%);
  z-index: 1;
}

.hero-ra__content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.hero-ra__eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 214, 140, 0.08);
  border: 1px solid rgba(255, 214, 140, 0.14);
  color: #f4dba8;
  font-size: 13px;
  font-weight: 800;
}

.hero-ra__title {
  margin: 0 0 18px;
  max-width: 720px;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff1cf;
}

.hero-ra__text {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.8;
  color: #dcc8a4;
}

.hero-ra__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-ra__btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.hero-ra__btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.hero-ra__btn--primary {
  color: #2a1b0d;
  background: linear-gradient(135deg, #d9982f, #f3cf79);
  box-shadow: 0 16px 34px rgba(217, 152, 47, 0.24);
}

.hero-ra__btn--secondary {
  color: #f5e2bf;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 214, 140, 0.14);
}

.hero-ra__side {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 28px;
}

.hero-ra__side-card {
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 15, 10, 0.84), rgba(16, 10, 7, 0.88));
  border: 1px solid rgba(255, 214, 140, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-ra__side-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 214, 140, 0.08);
  color: #f4dba8;
  font-size: 12px;
  font-weight: 800;
}

.hero-ra__side-list {
  display: grid;
  gap: 14px;
}

.hero-ra__side-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 214, 140, 0.1);
}

.hero-ra__side-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-ra__side-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.3;
  color: #fff0cb;
}

.hero-ra__side-item span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #cfb58d;
}

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

.hero-ra__stat {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 214, 140, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-ra__stat span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bfa680;
}

.hero-ra__stat strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  color: #fff0cb;
}

/* HERO RA RESPONSIVE */
@media (max-width: 1180px) {
  .hero-ra__banner {
    grid-template-columns: minmax(0, 1fr) 290px;
    min-height: 520px;
  }

  .hero-ra__title {
    font-size: 48px;
  }

  .hero-ra__content {
    padding: 46px 36px;
  }
}

@media (max-width: 980px) {
  .hero-ra {
    padding: 24px 0 22px;
  }

  .hero-ra__banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-ra__overlay {
    background:
      linear-gradient(180deg, rgba(14, 9, 6, 0.74) 0%, rgba(14, 9, 6, 0.84) 46%, rgba(14, 9, 6, 0.94) 100%),
      radial-gradient(circle at 20% 20%, rgba(226, 173, 75, 0.12), transparent 24%);
  }

  .hero-ra__content {
    padding: 34px 24px 22px;
    max-width: 100%;
  }

  .hero-ra__title {
    font-size: 40px;
  }

  .hero-ra__text {
    font-size: 17px;
  }

  .hero-ra__side {
    padding: 0 24px 24px;
    justify-content: stretch;
  }

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

@media (max-width: 640px) {
  .hero-ra__banner {
    border-radius: 24px;
  }

  .hero-ra__content {
    padding: 28px 18px 18px;
  }

  .hero-ra__title {
    font-size: 31px;
  }

  .hero-ra__text {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-ra__actions {
    flex-direction: column;
  }

  .hero-ra__btn {
    width: 100%;
  }

  .hero-ra__side {
    padding: 0 18px 18px;
  }

  .hero-ra__side-card {
    padding: 18px;
    border-radius: 18px;
  }

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

  .hero-ra__stat {
    border-radius: 18px;
    padding: 18px;
  }
}

.game-frame-section {
  padding: 28px 0 34px;
  position: relative;
  z-index: 1;
}

.game-frame-box {
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(217, 152, 47, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(28, 18, 12, 0.96), rgba(16, 10, 7, 0.98));
  border: 1px solid rgba(255, 214, 140, 0.14);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 214, 140, 0.03);
}

.game-frame-head {
  margin-bottom: 18px;
}

.game-frame-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 214, 140, 0.08);
  border: 1px solid rgba(255, 214, 140, 0.14);
  color: #f4dba8;
  font-size: 13px;
  font-weight: 800;
}

.game-frame-head h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: #fff1cf;
}

.game-frame-head p {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: #d8c3a0;
}

.game-frame-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 214, 140, 0.12);
  background: #0d0805;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.game-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #000;
}

@media (max-width: 980px) {
  .game-frame-head h2 {
    font-size: 28px;
  }

  .game-frame-head p {
    font-size: 16px;
  }

  .game-frame-wrap iframe {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .game-frame-section {
    padding: 20px 0 28px;
  }

  .game-frame-box {
    padding: 16px;
    border-radius: 20px;
  }

  .game-frame-head {
    margin-bottom: 14px;
  }

  .game-frame-head h2 {
    font-size: 24px;
  }

  .game-frame-head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .game-frame-wrap {
    border-radius: 16px;
  }

  .game-frame-wrap iframe {
    height: 420px;
  }
}

/* CONTENT SECTION */
.content-section {
  position: relative;
  z-index: 1;
  padding: 28px 0 34px;
}

.content-box {
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.content-main {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.content-main > *:first-child {
  margin-top: 0;
}

.content-main > *:last-child {
  margin-bottom: 0;
}

/* HEADINGS */
.content-main h1,
.content-main h2,
.content-main h3,
.content-main h4 {
  margin-top: 0;
  color: #fff1cf;
  letter-spacing: -0.02em;
}

.content-main h1 {
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
}

.content-main h2 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
}

.content-main h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.content-main h4 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

/* TEXT */
.content-main p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.78;
  color: #dbc7a8;
}

.content-main strong {
  color: #fff0cb;
  font-weight: 800;
}

.content-main em {
  color: #f2d49a;
  font-style: italic;
}

.content-main a {
  color: #f2c86e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-main a:hover {
  color: #ffe2a2;
}

/* LISTS */
.content-main ul,
.content-main ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.content-main li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.7;
  color: #dbc7a8;
}

.content-main li::marker {
  color: #e2ad4b;
  font-weight: 700;
}

/* BLOCKQUOTE */
.content-main blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border-left: 4px solid #e2ad4b;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.content-main blockquote p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #f2dfbc;
}

/* IMAGES */
.content-main img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 28px auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 214, 140, 0.06);
}

/* TABLE */
.content-main table {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 28px;
  border-collapse: collapse;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 214, 140, 0.1);
  -webkit-overflow-scrolling: touch;
}

.content-main thead {
  background: rgba(226, 173, 75, 0.08);
}

.content-main tr {
  border-bottom: 1px solid rgba(255, 214, 140, 0.08);
}

.content-main tr:last-child {
  border-bottom: 0;
}

.content-main th,
.content-main td {
  min-width: 180px;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.6;
}

.content-main th {
  font-weight: 800;
  color: #fff0cb;
  white-space: nowrap;
  width: 1%;
}

.content-main td {
  color: #dbc7a8;
}

/* HR */
.content-main hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid rgba(255, 214, 140, 0.1);
}

/* SPACING LOGIC */
.content-main p + h2,
.content-main ul + h2,
.content-main ol + h2,
.content-main blockquote + h2,
.content-main table + h2,
.content-main img + h2 {
  margin-top: 46px;
}

.content-main p + h3,
.content-main ul + h3,
.content-main ol + h3,
.content-main blockquote + h3,
.content-main table + h3,
.content-main img + h3 {
  margin-top: 34px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .content-box {
    padding: 22px;
    border-radius: 22px;
  }

  .content-main h1 {
    font-size: 38px;
  }

  .content-main h2 {
    font-size: 32px;
  }

  .content-main h3 {
    font-size: 24px;
  }

  .content-main h4 {
    font-size: 20px;
  }

  .content-main p,
  .content-main li,
  .content-main blockquote p {
    font-size: 17px;
  }

  .content-main img {
    max-width: 100%;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .content-section {
    padding: 20px 0 28px;
  }

  .content-box {
    padding: 16px;
    border-radius: 18px;
  }

  .content-main h1 {
    font-size: 30px;
  }

  .content-main h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .content-main h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 22px;
  }

  .content-main h4 {
    font-size: 19px;
  }

  .content-main p,
  .content-main li,
  .content-main blockquote p {
    font-size: 16px;
    line-height: 1.68;
  }

  .content-main ul,
  .content-main ol {
    padding-left: 20px;
  }

  .content-main blockquote {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .content-main img {
    margin: 22px auto;
    border-radius: 16px;
  }

  .content-main th,
  .content-main td {
    min-width: 150px;
    padding: 14px;
    font-size: 15px;
  }
}

.author-box-section {
  padding: 18px 0 36px;
  position: relative;
  z-index: 1;
}

.author-box {
  border-top: 1px solid rgba(255, 214, 140, 0.18);
  border-bottom: 1px solid rgba(255, 214, 140, 0.18);
  padding: 0;
}

.author-box__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 16px;
  margin-bottom: 18px;
}

.author-box__tab {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #8f7b5a;
  background: transparent;
}

.author-box__tab--active {
  background: #f3ede2;
  color: #2c1b0f;
}

.author-box__body {
  padding: 0 0 20px;
}

.author-box__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 14px;
}

.author-box__name {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  color: #ff5a4f;
}

.author-box__date {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #d4bc92;
}

.author-box__text {
  margin: 0;
  max-width: 1100px;
  font-size: 18px;
  line-height: 1.8;
  color: #ead8b6;
}

@media (max-width: 980px) {
  .author-box__name {
    font-size: 28px;
  }

  .author-box__text {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .author-box-section {
    padding: 12px 0 28px;
  }

  .author-box__tabs {
    gap: 6px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .author-box__tab {
    min-height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }

  .author-box__meta {
    margin-bottom: 12px;
  }

  .author-box__name {
    font-size: 24px;
  }

  .author-box__date {
    font-size: 14px;
  }

  .author-box__text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 24px 0 30px;
}

.site-footer__box {
  padding: 30px 30px 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(217, 152, 47, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(27, 18, 12, 0.96), rgba(14, 9, 6, 0.98));
  border: 1px solid rgba(255, 214, 140, 0.12);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 214, 140, 0.03);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.site-footer__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.site-footer__description {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.8;
  color: #dbc7a8;
}

.site-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-footer__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 214, 140, 0.08);
  border: 1px solid rgba(255, 214, 140, 0.12);
  color: #f0d7a6;
  font-size: 13px;
  font-weight: 800;
}

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

.site-footer__col h3,
.site-footer__license h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff0cb;
}

.site-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__col li + li {
  margin-top: 10px;
}

.site-footer__col a,
.site-footer__col span {
  font-size: 15px;
  line-height: 1.65;
  color: #d4be99;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__col a:hover {
  color: #ffe2a2;
}

.site-footer__license {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 214, 140, 0.10);
}

.site-footer__license p {
  margin: 0;
  max-width: 1100px;
  font-size: 15px;
  line-height: 1.8;
  color: #d8c39f;
}

.site-footer__license strong {
  color: #fff0cb;
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 214, 140, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #bca27d;
}

.site-footer__up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9982f, #f3cf79);
  color: #2a1b0d;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(217, 152, 47, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__up:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

@media (max-width: 1080px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-footer {
    padding: 18px 0 24px;
  }

  .site-footer__box {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .site-footer__logo img {
    height: 50px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__description,
  .site-footer__license p {
    font-size: 15px;
    line-height: 1.7;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}