/* Сброс */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-footer {
  text-align: center;
  margin-bottom: 40px;
}

/* Button */
.button {
  display: inline-block;
  padding: 16px 50px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(180deg, #F5C542, #B97A10);
  border: none;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.button:hover {
  background: linear-gradient(180deg, #B97A10, #F5C542);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Мобайл */
@media (max-width: 768px) {
  .hero { padding: 20px 15px; }
  .button { width: 90%; font-size: 16px; padding: 14px 20px; }
}

/* ======================
   ВАУЧЕР — FULLSCREEN
====================== */
.voucher-body {
  margin: 0;
  padding: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.voucher-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.voucher-fullscreen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Номер ваучера */
.voucher-number {
  position: absolute;
  bottom: 40px;
  right: 180px;
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  font-family: "Arial Black", sans-serif;
}

/* Мобайл для номера */
@media (max-width: 768px) {
  .voucher-number {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    text-align: center;
  }
}
