.hero {
  position: relative;
  padding-top: var(--space-6);
  overflow: hidden;
}

.hero--cover {
  background: url('../../../cover.jpg') center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 12 24 / 0.92) 12%, rgb(7 12 24 / 0.7) 52%, rgb(7 12 24 / 0.88) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-4);
  align-items: start;
}

.hero__content {
  max-width: 720px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero-logo {
  width: 88px;
  height: 88px;
  margin-bottom: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  object-fit: cover;
}

.game-frame {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-3);
  background: #0b1020;
  box-shadow: var(--shadow-2);
  aspect-ratio: 16 / 9;
}

.game-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.content-grid-home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.article-block {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  background: rgb(17 24 39 / 0.72);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .content-grid-home {
    grid-template-columns: 1fr;
  }
}
