:root {
  --bg: #0b0f14;
  --accent: #ff0077;
  --text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0b0f14, #1c1f26);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  animation: fadeIn 1.2s ease-out forwards;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 4px;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    background: #111;
}

/* обычное состояние */
.nav a {
    color: white;
    text-decoration: none;
    display: inline-block;   /* важно для scale */
    transition: transform 0.3s ease;
}

/* при наведении */
.nav a:hover {
    transform: scale(1.2);
    text-shadow: 0 0 8px #ff2e63;
}

.section {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: auto;
}

.section.dark {
  background: #111;
}

.release {
  margin-top: 2rem;
  padding: 1rem;
  background: #151a22;
  border-left: 4px solid var(--accent);
}

footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  font-size: 0.9rem;
}

.release-link {
    text-decoration: none;   /* убрать подчёркивание */
    color: inherit;          /* использовать цвет родителя */
    display: inline-block;
    transition: transform 0.2s ease;
}

.release-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 8px #ff2e63;
}

.pagination {
    margin-top: 40px;
    text-align: center;
}

.page-number {
    text-decoration: none;
    color: inherit;
    padding: 8px 14px;
    margin: 0 5px;
    border: 1px solid #555;
    transition: 0.3s ease;
}

.page-number:hover {
    background: #ff0077;
    border-color: #ff0077;
    color: white;
}

.page-number.active {
    background: #ff0077;
    color: white;
    border-color: #ff0077;
}