:root {
  --bg: #0d0d0d;
  --panel: #1e1e1e;
  --panel-soft: #272727;
  --line: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --accent: #ff3b44;
  --accent-red: #ff3b44;
  --accent-blue: #6d8bff;
  --ok: #7fe167;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 85% 14%, rgba(109, 139, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 10% 22%, rgba(255, 59, 68, 0.14) 0%, transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  scroll-behavior: smooth;
}

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

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

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand span {
  font-weight: 800;
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-size: 0.88rem;
  color: #e5e5e5;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-pill {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(127, 225, 103, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  75% {
    box-shadow: 0 0 0 10px rgba(127, 225, 103, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(127, 225, 103, 0);
  }
}

.online-pill strong {
  font-size: 0.92rem;
  color: #fff;
}

.btn{
  height:58px;
  padding:0 26px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:800;
  font-size:15px;
  transition:.25s;
}

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

.btn-dark{
  width: 325px;
  height: 60px;

  background: rgba(255,300,255,.03);
  border: 1px solid rgba(255,300,255,.12);
}


.btn-accent{
  width: 325px;
  height: 60px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);

  transition: .3s;
}

/* При наведении */
.btn-accent:hover{
  background: rd;
  border-color: ;
}

.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-btn i {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  background-image: url("assets/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.62) 52%, rgba(10, 10, 12, 0.87) 100%),
    linear-gradient(to bottom, rgba(9, 9, 9, 0.2) 60%, #0d0d0d 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 78px);
  padding-top: 136px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5.8vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

h1 span {
  color: var(--accent);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.metric {
  min-height: 88px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(41, 41, 41, 0.77);
  backdrop-filter: blur(10px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.metric strong {
  font-size: 1.35rem;
  font-weight: 800;
}

.metric span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
}

.launch-card {
  align-self: end;
  border-radius: 8px;
  border: 1px solid rgba(122, 215, 255, 0.38);
  background:
    radial-gradient(circle at 85% 15%, rgba(88, 217, 255, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 12% 78%, rgba(149, 115, 255, 0.2) 0%, transparent 45%),
    rgba(14, 18, 30, 0.86);
  backdrop-filter: blur(30px);
  padding: 18px;
}

.launch-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(172, 255, 194, 0.45);
  color: rgba(210, 255, 226, 0.94);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.launch-top {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.launch-top img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.launch-top h2 {
  margin: 0;
  font-size: 1.14rem;
  text-transform: uppercase;
}

.launch-top p {
  margin: 3px 0 0;
  color: rgba(222, 235, 255, 0.8);
  font-size: 0.82rem;
}

.launch-steps {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.launch-steps article {
  flex: 1 1 0;
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(138, 221, 255, 0.25);
  background: rgba(7, 12, 22, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.launch-steps i {
  width: 17px;
  height: 17px;
  color: #8be9ff;
}

.launch-steps span {
  display: block;
  font-size: 0.65rem;
  color: rgba(188, 210, 242, 0.75);
  text-transform: uppercase;
}

.launch-steps strong {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.server-chips {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.server-chip {
  min-height: 72px;
  border: 1px solid rgba(173, 225, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 12, 22, 0.55);
  text-align: left;
  padding: 9px;
  color: #ffff00;
  display: grid;
  align-content: center;
  gap: 4px;
  cursor: pointer;
}

.server-chip.active {
  border-color: rgba(126, 218, 255, 0.62);
  background: rgba(33, 74, 121, 0.43);
  box-shadow: inset 0 0 0 1px rgba(126, 218, 255, 0.3);
}

.chip-title {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.chip-meta {
  font-size: 0.68rem;
  color: rgba(205, 224, 255, 0.74);
  text-transform: uppercase;
}

.launch-btn {
  margin-top: 12px;
  width: 100%;
}

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.role-card {
  min-height: 194px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg, #1e1f29 0%, #15161d 100%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: 0.2s transform ease, 0.2s border-color ease, 0.2s box-shadow ease;
}

.role-card:hover {
  transform: translateY(-2px);
  border-color: rgba(151, 227, 255, 0.52);
  box-shadow: 0 12px 26px rgba(26, 110, 145, 0.24);
}

.role-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.role-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-info {
  display: grid;
  gap: 7px;
}

.role-info i {
  width: 16px;
  height: 16px;
  color: #8cd7ff;
}

.role-info h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.role-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.76rem;
  line-height: 1.46;
}

.role-police {
  background: linear-gradient(145deg, rgba(62, 133, 233, 0.24) 0%, #171a24 65%);
}

.role-army {
  background: linear-gradient(145deg, rgba(103, 171, 102, 0.24) 0%, #1a1d20 65%);
}

.role-medic {
  background: linear-gradient(145deg, rgba(128, 179, 255, 0.2) 0%, #1b1d24 65%);
}

.role-job {
  background: linear-gradient(145deg, rgba(255, 137, 86, 0.25) 0%, #221b19 65%);
}

.role-crime {
  background: linear-gradient(145deg, rgba(255, 78, 92, 0.24) 0%, #22191a 65%);
}

.path {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
    url("assets/path.png") center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.path-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.path-btn {
  min-height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(24, 24, 28, 0.58) 0%, rgba(16, 16, 20, 0.42) 100%);
  backdrop-filter: blur(7px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.path-btn i {
  width: 17px;
  height: 17px;
}

.path-btn.active {
  border-color: rgba(255, 59, 68, 0.7);
  background: linear-gradient(180deg, rgba(255, 59, 68, 0.26) 0%, rgba(32, 17, 20, 0.4) 100%);
  box-shadow: 0 0 16px rgba(255, 59, 68, 0.28);
}

.path-panel {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(12, 13, 16, 0.42);
  backdrop-filter: blur(6px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path-panel img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.path-content {
  padding: 24px;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.36) 0%, rgba(8, 9, 11, 0.62) 100%);
  display: grid;
  align-content: center;
}

.path-content h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.path-content p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.path-content ul {
  margin: 14px 0 0;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.video-preview {
  margin: 0;
  grid-row: 1 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 420px;
}

.video-preview img,
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.play-btn i {
  width: 24px;
  height: 24px;
}

.shot {
  margin: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 205px;
}

.servers {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.servers-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.servers-grid {
  grid-template-columns: minmax(0, 430px);
  justify-content: start;
}

.server-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(19, 19, 19, 0.85);
  backdrop-filter: blur(10px);
  padding: 16px;
}

.servers .server-card {
  border-color: rgba(255, 59, 68, 0.38);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 59, 68, 0.12) 0%, transparent 42%),
    rgba(18, 17, 18, 0.88);
}

.server-card h3,
.news-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.03rem;
}

.server-card p,
.news-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
  font-size: 0.9rem;
}

.server-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.server-card .btn {
  width: 100%;
  margin-top: 12px;
}

.guide {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.guide-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 19, 19, 0.82);
  backdrop-filter: blur(10px);
  padding: 16px;
  min-height: 196px;
}

.guide-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-card h3 i {
  width: 16px;
  height: 16px;
  color: #ff7a82;
}

.guide-card ul,
.guide-card ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 0.9rem;
}

.guide-card li + li {
  margin-top: 4px;
}

.news-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.news-card a {
  display: inline-block;
  margin-top: 12px;
  color: #ffc084;
  font-size: 0.85rem;
  font-weight: 700;
}

.news-card a:hover {
  color: #ffd8ad;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  padding-right: 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #121212;
}

.footer-inner {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.footer-brand strong {
  font-size: 0.95rem;
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #272727 0%, #1d1d1d 100%);
}

.footer-social a i {
  width: 16px;
  height: 16px;
}

.footer-copy {
  margin: 0;
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
}

@media (max-width: 1130px) {
  .hero-grid {
    min-height: auto;
    padding-top: 108px;
  }

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

  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .video-preview {
    grid-row: auto;
    min-height: 300px;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .servers-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 14px 16px;
    display: grid;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 13, 13, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .path-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 100px;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .role-card {
    min-height: 184px;
  }

  .role-avatar {
    width: 64px;
    height: 64px;
  }

  .path-controls {
    grid-template-columns: 1fr;
  }

  .media-grid,
  .guide-grid,
  .servers-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .shot {
    min-height: 230px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.roles {
  position: relative;
  min-height: calc(100vh - 78px);
  background-image: url("assets/roles.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
/* PLAY PAGE */

.play-page{
  background:#0d0d0d;
  color:#fff;
}

.play-section{
  width:100%;
  min-height:100vh;
  padding:60px 20px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.gallery{
  width:100%;
  max-width:1200px;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.play-card{
  position:relative;
  height:420px;

  border-radius:24px;
  overflow:hidden;

  cursor:pointer;
  transition:0.4s ease;
}

.play-card img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:0.5s ease;
}

.play-card::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.15)
  );
}

.play-content{
  position:absolute;
  left:25px;
  bottom:30px;
  z-index:2;
}

.play-content h2{
  font-size:32px;
  font-weight:800;
  margin-bottom:10px;
}

.play-content p{
  font-size:15px;
  line-height:1.5;
  opacity:0.9;
  max-width:260px;
}

.play-card:hover{
  transform:translateY(-10px);
}

.play-card:hover img{
  transform:scale(1.08);
}

@media(max-width:768px){

  .play-card{
    height:320px;
  }

  .play-content h2{
    font-size:24px;
  }

}
