*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  border: transparent;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.app {
  font-family: "Poppins", Arial, sans-serif;
  background: #0a0f1e;
  color: #fff;
  line-height: 1.6;
}

.box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  background: linear-gradient(90deg, #1c2526 0%, #2e3b4e 100%);
  padding: 1.2rem 0;
  width: 100%;
  box-shadow: 0 3px 12px rgba(255, 106, 112, 0.3);
}

.navbar__box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff6a70;
  text-decoration: none;
}

.navbar__logo img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px #ff6a7066);
}

.pulse {
  padding: 4rem 0 4rem;
  background: url("img/bg.webp") no-repeat center center/cover;
  color: #fff;
  text-align: center;
}

.pulse__core {
  background: rgba(10, 15, 30, 0.85);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 106, 112, 0.4);
}

.pulse__headline {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff6a70 0%, #00e1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pulse__intro {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn--neon {
  background: linear-gradient(90deg, #ff6a70 0%, #00e1ff 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 106, 112, 0.5);
  position: relative;
  overflow: hidden;
  animation: neon-pulse 2s infinite;
}

@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 106, 112, 0.5),
      0 0 20px rgba(0, 225, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 106, 112, 0.8),
      0 0 30px rgba(0, 225, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 106, 112, 0.5),
      0 0 20px rgba(0, 225, 255, 0.5);
  }
}

.btn--neon:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 106, 112, 0.7);
}

.arenas {
  padding: 0 0 4rem 0;
}

.arenas__headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff6a70;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(255, 106, 112, 0.4);
}

.arenas__stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.arena {
  background: linear-gradient(135deg, #1c2526 0%, #2e3b4e 100%);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 5px 20px rgba(255, 106, 112, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.arena:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 106, 112, 0.5),
    0 4px 15px rgba(0, 225, 255, 0.5);
}

.arena--neon {
  border: 3px solid #ff6a70;
}

.arena--blaze {
  border: 3px solid #ff9f43;
}

.arena--volt {
  border: 3px solid #00e1ff;
}

.arena--spark {
  border: 3px solid #ffd700;
}

.arena__banner {
  flex: 0 0 150px;
}

.arena__banner img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 3px 10px rgba(255, 106, 112, 0.4));
}

.arena__details {
  flex: 1 1 auto;
}

.arena__name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.arena__promo {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.arena__rating {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.arena__rating span {
  color: #fff;
  font-weight: 600;
}

.arena__payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.arena__payments img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  background: #1c2526;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(255, 106, 112, 0.3);
}

.voices {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1c2526 0%, #2e3b4e 100%);
}

.voices__headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff6a70;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(255, 106, 112, 0.4);
}

.voices__stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.voice {
  background: #2e3b4e;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 106, 112, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.voice:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 106, 112, 0.5);
}

.voice__quote {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.voice__author {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6a70;
}

.mission {
  padding: 6rem 0;
  text-align: center;
}

.mission__headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff6a70;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(255, 106, 112, 0.4);
}

.mission__intro {
  font-size: 1.4rem;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.mission__values {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mission__values li {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}

.mission__alert {
  background: linear-gradient(90deg, #ff6a70 0%, #00e1ff 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 106, 112, 0.5);
}

.mission__alert a {
  color: #ffd700;
  text-decoration: underline;
}

.base {
  background: linear-gradient(135deg, #1c2526 0%, #2e3b4e 100%);
  color: #fff;
  padding: 3rem 0;
  box-shadow: 0 -4px 15px rgba(255, 106, 112, 0.3);
}

.base__core {
  text-align: center;
}

.base__headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff6a70;
  margin-bottom: 1.5rem;
}

.base__intro {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.base__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.base__nav a {
  color: #00e1ff;
  text-decoration: none;
  font-weight: 600;
}

.base__nav a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.base__seals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.base__seals img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 106, 112, 0.4));
  transition: transform 0.3s;
  object-fit: contain;
}

.base__seals img:hover {
  transform: scale(1.1);
}

.base__legal {
  font-size: 1rem;
  opacity: 0.9;
}
.arena__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}

@media (max-width: 768px) {
  .pulse__headline {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .pulse__intro {
    font-size: 1.2rem;
  }
  .arenas__headline,
  .voices__headline,
  .mission__headline {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .box {
    padding: 0 1rem;
  }
  .arena__rating,
  .arena__name,
  .arena__promo {
    margin-bottom: 0;
  }
  .arena {
    padding-top: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .arena__banner {
    flex: auto;
  }
  .arenas__stack {
    gap: 1rem;
  }

  .arena__payments {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .arena__payments img {
    width: 50px;
    height: 30px;
  }
  .btn {
    text-align: center;
  }
  .arena {
    padding: 0.8rem;
  }
  .arena__inner {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  .arena__details {
    flex: auto;
  }
  .arena__banner img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .navbar__logo img {
    width: 36px;
    height: 36px;
  }
  .navbar__logo span {
    font-size: 1.4rem;
  }
  .pulse {
    padding: 1rem 0;
  }
  .pulse a {
    display: none;
  }
  .pulse__core {
    padding: 1rem;
  }
  .pulse__intro {
    display: none;
  }
  .arena__name {
    font-size: 1.5rem;
  }
  .arena__promo {
    font-size: 1.1rem;
  }
  .base__headline {
    font-size: 1.8rem;
  }
}
.legal {
  margin: 0 auto 3.5rem auto;
  padding: 3rem 0 2.5rem 0;
  background: linear-gradient(110deg, #1c2526 60%, #2e3b4e 100%);
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(255, 106, 112, 0.3),
    0 2px 15px rgba(0, 225, 255, 0.2);
  transition: box-shadow 0.3s;
}

.legal:hover {
  box-shadow: 0 8px 40px rgba(255, 106, 112, 0.5),
    0 3px 20px rgba(0, 225, 255, 0.3);
}

.legal .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.6px;
  text-shadow: 0 3px 15px rgba(255, 215, 0, 0.4),
    0 1px 5px rgba(255, 106, 112, 0.3);
  background: linear-gradient(90deg, #ff6a70 0%, #00e1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal__content {
  color: #e0e0e0;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  background: rgba(30, 35, 46, 0.9);
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 4px 18px rgba(255, 106, 112, 0.2),
    inset 0 1px 5px rgba(0, 225, 255, 0.1);
  transition: box-shadow 0.3s;
}

.legal__content:hover {
  box-shadow: 0 6px 25px rgba(255, 106, 112, 0.3),
    inset 0 2px 8px rgba(0, 225, 255, 0.2);
}

.legal__content h2 {
  color: #ff6a70;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 2.5rem 0 1.2rem 0;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 10px rgba(255, 106, 112, 0.3);
}

.legal__content ul {
  margin: 1.2rem 0 1.2rem 1.5rem;
  padding-left: 0.6rem;
  color: #00e1ff;
  font-size: 1.1rem;
  line-height: 1.7;
  list-style: disc;
}

.legal__content li {
  margin-bottom: 0.6rem;
  padding-left: 0.2rem;
}

.legal__content a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s, text-shadow 0.2s;
}

.legal__content a:hover {
  color: #ff6a70;
  text-shadow: 0 1px 5px rgba(255, 106, 112, 0.4);
}

.legal__alert {
  background: linear-gradient(45deg, #ff6a70 30%, #00e1ff 100%);
  color: #fff;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 2.5rem 0 0 0;
  box-shadow: 0 4px 20px rgba(255, 106, 112, 0.4),
    0 2px 10px rgba(0, 225, 255, 0.3);
  animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 106, 112, 0.4),
      0 0 15px rgba(0, 106, 112, 255);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 106, 112, 0.6),
      0 0 25px rgba(0, 225, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 106, 112, 0.4),
      0 0 15px rgba(0, 225, 255, 0.4);
  }
}

.legal__content b {
  color: #00e1ff;
  font-weight: 900;
}

/* Адаптивність */
@media (max-width: 900px) {
  .legal .container {
    max-width: 95vw;
    padding: 0 1rem;
  }
  .legal__content {
    font-size: 1.1rem;
    padding: 1.8rem 1rem;
  }
  .legal__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .legal {
    padding: 1.8rem 0 1.5rem 0;
    border-radius: 14px;
  }
  .legal__content {
    font-size: 1rem;
    padding: 1rem 0.8rem;
  }
  .legal__content h2 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  .legal__alert {
    font-size: 1rem;
    padding: 1rem 0.8rem;
  }
}
