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

:root {
  --bg: #030a10;
  --bg-2: #07131d;
  --panel: rgba(5, 17, 27, .92);
  --line: rgba(53, 164, 224, .28);
  --blue: #249bd8;
  --blue-light: #66c9f5;
  --text: #e4edf3;
  --muted: #8193a0;
  --green: #79b95a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 87, 122, .14), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
}
a { color: inherit; text-decoration: none; }
.section-shell {
  width: calc(100% - 48px);
  margin-inline: 24px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 28px;
  background: rgba(2, 9, 14, .93);
  border-bottom: 1px solid rgba(77, 157, 202, .15);
  backdrop-filter: blur(12px);
}
.brand { display: flex; flex-direction: column; line-height: .9; min-width: 215px; }
.brand-main, .footer-brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand-sub, .footer-brand span {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 4px;
  margin-top: 6px;
}
.main-nav { display: flex; justify-content: center; gap: 25px; flex: 1; }
.main-nav a {
  position: relative;
  font: 500 15px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #b7c3ca;
  padding: 22px 0;
}
.main-nav a:hover, .main-nav a.active { color: white; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0; right: 0; bottom: 13px;
  background: var(--blue);
}
.discord-button {
  border: 1px solid var(--blue);
  color: var(--blue-light);
  padding: 11px 18px;
  font: 600 14px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 10, 16, .95) 0%,
      rgba(2, 10, 16, .72) 28%,
      rgba(2, 10, 16, .20) 65%,
      rgba(2, 10, 16, .45) 100%
    ),
    url("images/hero-siberia.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-image::after {
  content: "SIBERIA";
  position: absolute;
  right: 9%;
  bottom: -15px;
  font: 700 220px "Barlow Condensed", sans-serif;
  color: rgba(118, 180, 215, .055);
  letter-spacing: 10px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, var(--bg) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 80px 48px 95px;
}
.eyebrow { color: var(--blue); font: 500 15px "Barlow Condensed", sans-serif; letter-spacing: 2px; }
.eyebrow i { display: inline-block; width: 8px; height: 8px; background: var(--green); border-radius: 50%; margin-left: 5px; }
h1, h2, h3, h4 {
  font-family: "Oswald", sans-serif;
}
.hero h1 {
  margin: 12px 0 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(78px, 10vw, 132px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: 2px;
  text-transform: uppercase;
}.hero h2 { margin: 18px 0; font-size: 32px; line-height: .95; letter-spacing: 1px; }
.hero h2 span { color: var(--blue); }
.hero p { color: #c1cdd4; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-top: 25px; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  font: 600 15px "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.button.primary { background: var(--blue); border-color: var(--blue); color: #00111c; }
.button.secondary { background: rgba(0, 0, 0, .2); }

.server-status {
  position: relative;
  margin-top: -42px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(4, 15, 24, .96);
  border: 1px solid var(--line);
}
.stat {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  border-right: 1px solid rgba(93, 160, 195, .16);
}
.stat:last-child { border-right: 0; }
.stat-icon { color: var(--blue); font-size: 28px; }
.stat small { display: block; color: var(--blue); font: 500 12px "Barlow Condensed", sans-serif; letter-spacing: 1px; }
.stat strong { display: block; margin-top: 3px; font: 500 18px "Barlow Condensed", sans-serif; }
.stat em { display: block; color: var(--green); font-size: 10px; font-style: normal; margin-top: 2px; }

.features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  padding-block: 20px;
}
.feature-card, .panel {
  background: linear-gradient(180deg, rgba(8, 24, 36, .96), rgba(3, 13, 21, .98));
  border: 1px solid var(--line);
}
.feature-card { min-height: 250px; padding: 18px 15px; }
.feature-icon { color: var(--blue); font-size: 34px; height: 50px; }
.feature-card h3 { font-size: 18px; margin: 0 0 15px; }
.feature-card ul { padding-left: 17px; color: #b4c0c7; font-size: 12px; line-height: 1.8; }
.feature-card li::marker { color: var(--blue); }
.feature-card p { margin-top: 18px; color: var(--muted); font-size: 11px; }

.content-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.panel { padding: 18px; }
.panel-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.panel-heading h2 { margin: 0; font-size: 23px; }
.panel-heading a { color: var(--blue); font: 500 12px "Barlow Condensed", sans-serif; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-placeholder {
  min-height: 110px;
  display: grid;
  place-items: end start;
  padding: 10px;
  color: #8fa3af;
  font: 500 12px "Barlow Condensed", sans-serif;
  background:
    linear-gradient(135deg, #182e3c, #07131c);
  border: 1px solid rgba(90, 153, 187, .18);
}
.news-item { display: grid; grid-template-columns: 92px 1fr; gap: 13px; padding: 10px 0; border-bottom: 1px solid rgba(90, 153, 187, .14); }
.news-item:last-child { border-bottom: 0; }
.news-thumb { min-height: 70px; background: linear-gradient(135deg, #1b3444, #09141c); }
.news-item time { color: var(--blue); font-size: 10px; }
.news-item h3 { margin: 4px 0; font-size: 16px; }
.news-item p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }

.community {
  min-height: 145px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  padding: 25px;
  background:
    linear-gradient(90deg, rgba(4, 13, 20, .97), rgba(4, 13, 20, .58)),
    linear-gradient(135deg, #152d3c, #07131c);
  border: 1px solid var(--line);
}
.community h2 { margin: 0 0 5px; font-size: 27px; }
.community p { color: #aebbc3; margin: 0 0 15px; font-size: 13px; }

.projects { padding-block: 18px; }
.project-strip { display: flex; justify-content: space-between; align-items: center; }
.project-strip small { color: var(--blue); font: 500 12px "Barlow Condensed", sans-serif; }
.project-strip h2 { margin: 4px 0; }
.project-strip p { margin: 0; color: var(--muted); font-size: 12px; }

footer {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 30px;
  padding: 45px max(24px, calc((100% - 1180px) / 2)) 28px;
  margin-top: 10px;
  border-top: 1px solid rgba(70, 145, 184, .15);
  background: #02090e;
}
footer > div { display: flex; flex-direction: column; gap: 7px; }
footer h4 { margin: 0 0 8px; color: var(--blue); font-size: 13px; }
footer a, footer p { color: var(--muted); font-size: 11px; }
.footer-brand strong { font-size: 28px; }
.footer-brand p { line-height: 1.6; }
.socials { flex-direction: row; flex-wrap: wrap; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(70, 145, 184, .12); padding-top: 20px; text-align: right; color: #50616c; font-size: 10px; }

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .site-header { justify-content: space-between; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .server-status { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .section-shell, .hero-content { width: min(100% - 28px, 1180px); }
  .site-header { padding: 12px 14px; }
  .brand { min-width: 0; }
  .brand-main { font-size: 27px; }
  .brand-sub { font-size: 8px; letter-spacing: 2px; }
  .discord-button { padding: 9px 11px; }
  .hero { min-height: 550px; }
  .hero-content { padding-top: 65px; }
  .hero h1 { font-size: 78px; }
  .hero h2 { font-size: 26px; }
  .server-status { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .project-strip { flex-direction: column; align-items: flex-start; gap: 15px; }
  footer { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .footer-brand { grid-column: 1 / -1; }
}
