﻿:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f7f7f2;
  --accent: #f6c25b;
  --accent-strong: #f9423a;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(249, 66, 58, 0.08), transparent 45%), var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 80% 0, rgba(246, 194, 91, 0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero {
  width: 100%;
  padding: 24px 18px 12px;
  display: flex;
  justify-content: center;
}

.hero__frame {
  width: 100%;
  max-width: 560px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.links {
  width: 100%;
  max-width: 560px;
  padding: 0 18px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.btn-img {
  width: 100%;
  height: auto;
  display: block;
}

.links a {
  display: block;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.links a:hover,
.links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.links a:active {
  transform: scale(0.99);
}

.links a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
