/* ===== Reset ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }

/* ===== Background & base ===== */
body{
  margin: 0;
  background-color: #000;                              /* fallback */
  background-image: url('/image/fons/game_zone_fon.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Playfair Display', serif;
  color: #fff;
  min-height: 100vh;
  filter: none !important;                              /* НЕ осветляем фон */
}
/* на всякий случай убираем любые псевдомаски */
body::before,
body::after { content: none !important; }

/* ===== Sections ===== */
.zone-section{
  position: relative;
  z-index: 1;                                           /* контент всегда над фоном */
  padding: 120px 20px 80px;
  margin: 0 auto;
  text-align: center;
}
.zone-section + .zone-section { padding-top: 80px; }

.zone-title{
  margin: 0 0 20px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);              /* читаемость на светлом фоне */
}

.zone-text{
  max-width: 1300px;
  margin: 0 auto 40px;
  font-family: K2D, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

/* ===== CTA Button ===== */
.price-button{
  display: inline-block;
  padding: 20px 90px;
  border: 2px solid #ff0000;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-family: K2D, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  transition: transform .15s ease, background-color .25s ease,
              color .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 0 rgba(255,0,0,0);
}
.price-button:hover{
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 22px rgba(255,0,0,.45);
}
.price-button:active{ transform: translateY(1px); }

/* ===== Responsive ===== */
@media (max-width:1280px){
  .zone-title{ font-size: 56px; }
  .zone-text{ font-size: 28px; }
}
@media (max-width:1024px){
  .zone-title{ font-size: 48px; }
  .zone-text{ font-size: 26px; }
  .price-button{ padding: 16px 70px; font-size: 26px; }
}
@media (max-width:768px){
  .zone-title{ font-size: 36px; }
  .zone-text{ font-size: 20px; line-height: 1.6; }
  .price-button{ padding: 14px 50px; font-size: 22px; }
}
@media (max-width:480px){
  .zone-title{ font-size: 28px; }
  .zone-text{ font-size: 18px; line-height: 1.4; }
  .price-button{ padding: 12px 36px; font-size: 18px; }
}
