:root {
  --page: #050705;
  --panel: #0d1511;
  --panel-strong: rgba(6, 17, 13, 0.88);
  --ink: #f6fff9;
  --muted: #b9c9bf;
  --soft: #819287;
  --green: #19bc82;
  --green-dark: #063d31;
  --gold: #f4c45f;
  --gold-light: #ffe39a;
  --orange: #ff8b22;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: var(--page);
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(25, 188, 130, 0.16), transparent 32%),
    radial-gradient(circle at 85% 22%, rgba(244, 196, 95, 0.12), transparent 28%),
    linear-gradient(180deg, #050705 0%, #0b110e 42%, #050806 100%);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

body.sky88-page {
  overflow-x: hidden;
}

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

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

.sky-site {
  width: min(1280px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #0c100d;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 26px 100px rgba(0, 0, 0, 0.72);
}

.sky-topbar {
  min-height: 74px;
  padding: 14px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(90deg, #080b09, #111813 54%, #07130f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.sky-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(145deg, #15352c, #0a1814);
  border: 1px solid rgba(244, 196, 95, 0.38);
  box-shadow: 0 0 30px rgba(25, 188, 130, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sky-mark span {
  width: 20px;
  height: 20px;
  display: block;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold-light), var(--green));
  box-shadow: 0 0 18px rgba(244, 196, 95, 0.45);
}

.sky-logo {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.sky-logo span {
  color: var(--green);
}

.sky-brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.sky-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sky-btn {
  min-height: 42px;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #120d05;
  background: linear-gradient(180deg, #ffd37d, var(--orange));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset, 0 14px 34px rgba(255, 139, 34, 0.28);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.sky-btn.secondary {
  color: #ecfff4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.sky-nav {
  min-height: 58px;
  padding: 0 34px;
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
  background: linear-gradient(90deg, var(--green-dark), var(--green) 48%, #0b7c5a);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sky-nav a {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.sky-nav a:first-child {
  color: var(--gold-light);
}

.sky-nav a:first-child::after,
.sky-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(244, 196, 95, 0.55);
}

.sky-hero {
  position: relative;
  min-height: 592px;
  padding: 62px 56px 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 46px;
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.96) 0%, rgba(5, 31, 24, 0.84) 48%, rgba(3, 7, 6, 0.94) 100%),
    radial-gradient(circle at 73% 18%, rgba(255, 255, 255, 0.16), transparent 11%),
    radial-gradient(circle at 80% 26%, rgba(25, 188, 130, 0.27), transparent 28%),
    #06110e;
  overflow: hidden;
}

.sky-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 45%, rgba(255, 255, 255, 0.06) 46%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 90px);
  opacity: 0.62;
  pointer-events: none;
}

.sky-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  height: 250px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64)),
    radial-gradient(ellipse at center, rgba(25, 188, 130, 0.28), transparent 64%);
  pointer-events: none;
}

.sky-hero-copy,
.sky-visual {
  position: relative;
  z-index: 1;
}

.sky-title {
  margin: 0;
  max-width: 650px;
  color: #fff;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 950;
}

.sky-title span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 50px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.32), 0 0 28px rgba(244, 196, 95, 0.18);
}

.sky-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #d6e5dc;
  font-size: 18px;
  line-height: 1.72;
}

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

.sky-hero-actions .sky-btn {
  min-height: 50px;
  padding: 14px 25px;
  font-size: 15px;
}

.sky-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.sky-meta div {
  min-height: 76px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.sky-meta strong {
  display: block;
  color: var(--gold-light);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
}

.sky-meta span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.sky-visual {
  min-height: 420px;
}

.sky-arena {
  position: absolute;
  inset: 6px 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: #07100d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow), 0 0 72px rgba(25, 188, 130, 0.18);
}

.sky-arena-photo,
.sky-feature-media img,
.sky-post-media img,
.sky-wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.76);
}

.sky-arena-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.88) contrast(1.05) brightness(0.66);
  transform: scale(1.02);
}

.sky-arena::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 7, 0.34), transparent 42%, rgba(2, 8, 7, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 58px);
  opacity: 0.88;
}

.sky-premium-panel {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 56px;
  z-index: 2;
  min-height: 190px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  border-radius: 14px;
  background: rgba(5, 13, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.sky-panel-title {
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.sky-panel-title span {
  color: var(--green);
}

.sky-panel-copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.sky-odds {
  display: grid;
  gap: 9px;
}

.sky-odds-row {
  min-height: 42px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #eafff1;
  font-size: 13px;
  font-weight: 800;
}

.sky-odds-row span:last-child {
  color: var(--gold-light);
}

.sky-section {
  padding: 56px;
}

.sky-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.28)),
    #2a302c;
}

.sky-section-title {
  margin: 0;
  color: var(--gold);
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 950;
}

.sky-summary-text,
.sky-news-intro {
  max-width: 1040px;
  margin: 18px auto 0;
  color: #eef8f2;
  text-align: center;
  font-size: 17px;
  line-height: 1.76;
}

.sky-feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sky-feature,
.sky-post {
  overflow: hidden;
  border-radius: 8px;
  background: #101713;
  border: 1px solid rgba(244, 196, 95, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.sky-feature-media {
  height: 126px;
  position: relative;
  background: #111;
}

.sky-feature-media::after,
.sky-post-media::after,
.sky-wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(25, 188, 130, 0.12), transparent 42%, rgba(244, 196, 95, 0.1));
  pointer-events: none;
}

.sky-feature-body {
  padding: 18px;
}

.sky-feature h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
}

.sky-feature p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.sky-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(180deg, #111a15, #07100d),
    #0b130f;
}

.sky-wide-copy h2 {
  margin: 0;
  color: var(--gold);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 950;
}

.sky-wide-copy p {
  margin: 18px 0 0;
  color: #d9e8df;
  font-size: 16px;
  line-height: 1.78;
}

.sky-wide-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sky-wide-list li {
  padding: 13px 15px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #eafff1;
  font-size: 14px;
  line-height: 1.48;
}

.sky-wide-photo {
  position: relative;
  height: 362px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.sky-news {
  background: linear-gradient(180deg, #18211c, #0b130f);
}

.sky-news-title {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.sky-news-title::before,
.sky-news-title::after {
  content: "";
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 196, 95, 0.8));
}

.sky-news-title::after {
  transform: rotate(180deg);
}

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

.sky-post {
  border-color: rgba(255, 255, 255, 0.1);
}

.sky-post-media {
  height: 158px;
  background: #111;
  position: relative;
}

.sky-post-body {
  padding: 20px 20px 22px;
}

.sky-post h3 {
  min-height: 74px;
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 900;
}

.sky-post p {
  min-height: 66px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.sky-readmore,
.sky-post a {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.sky-post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.4;
}

.sky-article-hero {
  min-height: 440px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.sky-breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.sky-breadcrumb a {
  color: var(--gold-light);
}

.sky-article-main {
  background: linear-gradient(180deg, #18211c, #0b130f);
}

.sky-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.sky-article-card,
.sky-sidebar {
  border-radius: 10px;
  background: rgba(8, 18, 14, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.sky-article-card {
  padding: 36px;
}

.sky-article-card h1 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 950;
}

.sky-article-info {
  margin: 14px 0 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 13px;
}

.sky-article-body {
  color: #e6f3eb;
  font-size: 16px;
  line-height: 1.86;
}

.sky-article-body h2,
.sky-article-body h3 {
  margin: 32px 0 12px;
  color: var(--gold);
  line-height: 1.25;
}

.sky-article-body h2 {
  font-size: 28px;
}

.sky-article-body h3 {
  font-size: 22px;
}

.sky-article-body p {
  margin: 0 0 16px;
}

.sky-article-body a {
  color: var(--gold-light);
  font-weight: 800;
}

.sky-article-body img {
  border-radius: 10px;
  margin: 24px 0;
}

.sky-article-actions {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sky-sidebar {
  padding: 22px;
  align-self: start;
}

.sky-sidebar h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.25;
}

.sky-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sky-side-list li {
  padding: 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: #eafff1;
  font-size: 14px;
  line-height: 1.5;
}

.sky-footer {
  padding: 46px 56px 22px;
  background:
    linear-gradient(180deg, rgba(25, 188, 130, 0.12), transparent),
    #03251f;
  border-top: 4px solid var(--green);
}

.sky-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.sky-footer .sky-brand {
  margin-bottom: 18px;
}

.sky-footer h3 {
  margin: 0 0 16px;
  color: #f4ff00;
  font-size: 18px;
  text-transform: uppercase;
}

.sky-footer p,
.sky-footer li {
  color: #d9ebe3;
  font-size: 14px;
  line-height: 1.76;
}

.sky-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sky-copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d9ebe3;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .sky-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .sky-topbar,
  .sky-nav,
  .sky-hero,
  .sky-section,
  .sky-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sky-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .sky-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .sky-nav {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sky-hero,
  .sky-wide,
  .sky-article-layout {
    grid-template-columns: 1fr;
  }

  .sky-hero {
    padding-top: 42px;
  }

  .sky-title {
    font-size: 42px;
  }

  .sky-title span {
    font-size: 34px;
  }

  .sky-meta,
  .sky-feature-grid,
  .sky-posts,
  .sky-footer-grid {
    grid-template-columns: 1fr;
  }

  .sky-visual {
    min-height: 430px;
  }

  .sky-premium-panel {
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
    bottom: 34px;
  }

  .sky-news-title::before,
  .sky-news-title::after {
    width: 42px;
  }

  .sky-wide-photo {
    height: 290px;
  }

  .sky-article-card {
    padding: 24px 20px;
  }

  .sky-article-card h1 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .sky-topbar,
  .sky-nav,
  .sky-hero,
  .sky-section,
  .sky-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sky-logo {
    font-size: 30px;
  }

  .sky-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sky-btn {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .sky-title {
    font-size: 36px;
  }

  .sky-title span {
    font-size: 30px;
  }

  .sky-lead {
    font-size: 16px;
  }

  .sky-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sky-premium-panel {
    padding: 20px;
  }

  .sky-panel-title {
    font-size: 32px;
  }

  .sky-section-title,
  .sky-wide-copy h2 {
    font-size: 28px;
  }

  .sky-wide-photo {
    height: 236px;
  }
}
