/* ========================================
   GIVEAWAY PAGE STYLES
   ========================================
   Extracted from inline styles in livetjm-3k-fireline-giveaway.html
   for maintainability and consistency.
*/

/* Grid layout for giveaway sections */
.giveaway-grid {
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

/* Button row styling */
.giveaway-btn-row {
  margin-top: 1.5rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Caption styling */
.giveaway-caption {
  margin-top: 1.5rem;
}

.giveaway-caption-sm {
  margin-top: 0.75rem;
}

/* Date highlight text */
.giveaway-date-text {
  margin-top: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffb347;
}

.giveaway-date-highlight {
  border-bottom: 2px solid #ffb347;
}

/* Media card placeholder */
.giveaway-media-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.giveaway-video-wrapper {
  width: 100%;
  max-width: 480px;
}

.giveaway-video-container {
  position: relative;
  padding-top: 125%; /* 4:5 Instagram portrait aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.giveaway-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show full video without cropping in embedded view */
  background: #000;
}

/* Fullscreen: let video fill naturally */
.giveaway-video:fullscreen {
  object-fit: contain;
  width: 100vw;
  height: 100vh;
}

.giveaway-video-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.85;
  text-align: center;
}

/* Prize card figure */
.giveaway-prize-figure {
  margin: 0 0 0.75rem 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.giveaway-prize-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Prize photo caption */
.giveaway-photo-caption {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.75rem;
}

/* Included in every kit header */
.giveaway-included-header {
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.98;
}

/* Smoke plume positioning classes */
.plume-1 {
  left: -10%;
  top: -5%;
  width: 60vw;
  height: 40vh;
  animation-delay: 0s;
}

.plume-2 {
  right: -15%;
  top: 10%;
  width: 55vw;
  height: 35vh;
  animation-delay: 3.5s;
}

.plume-3 {
  left: 5%;
  bottom: -10%;
  width: 70vw;
  height: 45vh;
  animation-delay: 1.7s;
}

/* Included items header and images */
.giveaway-included-header {
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.98;
}

.giveaway-included-img {
  height: 150px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/* Disclaimer text */
.giveaway-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
