.sudoku-hero-image {
  width: min(360px, 86%);
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(0, 229, 255, 0.35),
    0 0 42px rgba(255, 59, 245, 0.25);
}

.sudoku-hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#sudoku-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#sudoku-hero .header-text {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 40px;
}

#sudoku-hero .left-text {
  margin-top: 0;
  transform: none !important;
}

.sudoku-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sudoku-screenshot {
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 16px rgba(0, 229, 255, 0.18),
    0 0 24px rgba(255, 59, 245, 0.12);
  background: #0b0b16;
}

@media (max-width: 991px) {
  #sudoku-hero {
    min-height: auto;
    display: block;
  }

  #sudoku-hero .header-text {
    padding-top: 120px;
  }

  .sudoku-hero-media {
    justify-content: center;
    margin-top: 28px;
  }

  .sudoku-hero-image {
    width: min(320px, 84%);
  }
}

@media (max-width: 420px) {
  .sudoku-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
