body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}

/* HEADLINE */
.main_header {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .main_header {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .main_header {
    font-size: 26px;
  }
}

.green {
  background: #2ecc71;
  color: white;
  padding: 4px 8px;
}

/* VIDEO (INLINE, NOT FULLSCREEN) */
.video_container,
.full_video {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

#video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  background: black;
  border-radius: 10px;
}

/* PLAY OVERLAY */
#play {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 5;
  border-radius: 6px;
}

/* SCARCITY */
.scarcity {
  color: red;
  font-weight: bold;
  margin-top: 20px;
}

/* COMMENTS */
#comments {
  margin-top: 40px;
  text-align: left;
}

/* ORDER PAGE */
.order-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 15px;
  box-sizing: border-box;
}

.order-box {
  width: 100%;
  max-width: 420px;
  border: 2px dashed #4da3ff;
  padding: 25px 20px;
  text-align: center;
  background: #fff;
}

.order-box p {
  margin: 8px 0;
}

.order-box img {
  max-width: 170px;
  margin: 18px auto;
  display: block;
}

.discount {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.price {
  margin-top: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #666;
  margin-right: 8px;
}

.new-price {
  font-size: 30px;
  font-weight: bold;
  color: #e60000;
}

.timer {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 20px;
}

/* FORM */
#orderForm {
  display: block;
  margin-top: 20px;
  text-align: left;
}

#orderForm label {
  display: block;
  margin: 12px 0 5px;
  font-size: 14px;
}

#orderForm input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd9ff;
  font-size: 14px;
  box-sizing: border-box;
}

#orderForm button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: #2e7df6;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.order-note {
  font-size: 12px;
  margin-top: 15px;
}

/* HIDE INLINE CONTROLS */
video::-webkit-media-controls {
  display: none !important;
}
