* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  text-align: center;
  background: #f4f4f4;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid #ed1c24;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  background: #ed1c24;
  border-radius: 4px;
}

.logo span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
}

.live-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  color: #ed1c24;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #ed1c24;
  border-radius: 4px;
}

.live-btn::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ed1c24;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.site-nav {
  padding: 8px 20px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  background: #000;
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}

.site-nav a {
  padding: 0 5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.site-nav a:hover,
.live-btn:hover,
.footer a:hover {
  opacity: 1;
}

.main-container {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.headline {
  margin: 0 0 25px;
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.headline-highlight {
  color: #ed1c24;
  text-decoration: underline;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.vsl-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.unmute-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px;
  color: #fff;
  cursor: pointer;
  background: #32cd32;
  border: 2px solid #fff;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.unmute-overlay svg {
  width: 60px;
  height: 60px;
}

.unmute-text {
  margin-top: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-section {
  margin-top: 20px;
  padding: 30px;
  background: #fdfdfd;
  border: 3px solid #ed1c24;
  border-radius: 15px;
  animation: fadeIn 0.8s ease;
}

.order-section h2 {
  margin: 0 0 12px;
  color: #000;
  font-size: 24px;
}

.timer-box {
  margin-bottom: 15px;
  color: #d91b1b;
  font-size: 18px;
  font-weight: 700;
}

.order-form {
  margin: 0;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 18px;
}

.price-box__item {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}

.price-box__label {
  display: block;
  margin-bottom: 5px;
  color: #666;
  font-size: 13px;
}

.price-box__value {
  display: block;
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.price-box__item_old .price-box__value {
  color: #777;
  font-size: 20px;
  text-decoration: line-through;
}

.price-box__item_new {
  border-color: #28a745;
  background: #f1fff5;
}

.price-box__item_new .price-box__label {
  color: #1f7f3a;
}

.price-box__item_new .price-box__value {
  color: #28a745;
}

.input-group {
  width: 100%;
}

input {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  background: #28a745;
  border: none;
  border-radius: 8px;
}

.comments-section {
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  text-align: left;
  border-top: 1px solid #eee;
}

.comments-header {
  margin: 0 0 18px;
  color: #000;
  font-size: 20px;
}

.comment {
  margin-bottom: 12px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #ed1c24;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.5s ease-out;
}

.comment.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
  text-align: center;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .header-top {
    gap: 12px;
    padding: 8px 12px;
  }

  .logo {
    padding: 8px 10px;
    font-size: 15px;
  }

  .live-btn {
    flex-shrink: 0;
    padding: 7px 10px;
    font-size: 11px;
  }

  .site-nav {
    padding: 8px 10px;
  }

  .nav-container {
    justify-content: flex-start;
  }

  .main-container {
    margin: 12px auto;
    padding: 14px;
  }

  .headline {
    font-size: 21px;
  }

  .unmute-overlay {
    width: min(82%, 280px);
    padding: 16px 18px;
  }

  .order-section {
    padding: 20px 14px;
  }

  .price-box {
    grid-template-columns: 1fr;
  }
}
