@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:wght@400;700;900&display=swap');
html {
  scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #d1e9ff;
}
 

nav li a.nav-link {
    font-size: 18px;
}

.hero-wrap {
    font-family: Roboto;
    padding: 72px 0;     
    background: rgba(64,12,107,1) url("../img/bg-pattern.png") repeat;
    background: linear-gradient(61deg, rgb(26, 26, 26) 26%, rgb(21, 13, 28) 69%, rgb(17, 11, 22) 100%);
    /* color: #45a9ff; */
    color: #eff4f8;
    width: 100%;
    height: auto;
    margin: 0 0 -80px 0;
}
.hero-wrap-2 {
    font-family: Roboto;
    padding: 72px 0;
    background: rgb(11, 5, 17) url("../img/bg-pattern.png") repeat;
    color: #eff4f8;
    width: 100%;
    margin: 0;
    height: auto;
}

.hero-wrap h1 {
    font-size: 2.9em;
    font-weight: 700;
}

h1 i.colored {
    color: #fdbf00;
    display: inline;
    font-weight: inherit;
}

.hero-wrap h1.colored, .colored { 
    color: #fdbf00;
    font-weight:900;
}
.hero-wrap span {
    display: block;
    font-size: 18px;
}

.hero-wrap p {
    font-size: 15px;
}

.hero-wrap .hero, .hero-wrap-2  {
    text-align: center;
}

.video-wrapper {
  max-width: 900px;
  margin: 40px auto;
  position: relative;
}

video {
  width: 100%;
  background: #000;
}

/* Hide native controls */
video::-webkit-media-controls {
  display: none !important;
}

.tap-to-unmute {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(245, 31, 3, 0.7);;
  padding: 15px 25px;
  border-radius: 26px;
  cursor: pointer;
  z-index: 10;
  animation: glow 1.5s infinite alternate;
}

/* PROGRESS BAR WRAPPER */
.progress-wrapper {
  margin-top: 12px;
  padding: 0 10px;
}

/* TRACK */
.progress-track {
  width: 100%;
  height: 6px;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

/* FILL */
.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  border-radius: 10px;
  transition: width 0.2s linear;
  box-shadow: 0 0 8px rgba(255, 122, 0, 0.8);
}


.custom-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.custom-controls button {
  background: #1d3557;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.custom-controls button:hover {
  background: #457b9d;
}


/* LIVE BUTTON */
.live-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #ff2d2d;
  font-size: 16px;
  cursor: default;
  animation: glow 1.5s infinite alternate;
}

/* RED BLINKING DOT */
.dot {
  width: 10px;
  height: 10px;
  background: #ff2d2d;
  border-radius: 50%;
  animation: blink 1s infinite;
  box-shadow: 0 0 10px #ff2d2d;
}

/* GLOW EFFECT */
@keyframes glow {
  from {
    box-shadow: 0 0 5px #ff2d2d;
  }
  to {
    box-shadow: 0 0 18px #ff2d2d;
  }
}

/* BLINK EFFECT */
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.3;
  }
}

.product {
  padding: 65px 0;
  width: 100%; 
  background: #111;
  border-radius: 8px;
}

.hidden { 
  display: none !important;
}
.required {
  color: #ff3535;
}

.cta-btn {  
display: block;
margin: 0 auto;
text-align: center;
  padding: 15px 30px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  border: none;
}

.footer-wrap { 
    padding: 15px 0;
    width: 100%;
    font-family: Roboto;
}
 
.footer-wrap {
    text-align: center;
    background: rgb(15, 9, 19) url("../img/bg-pattern.png") repeat;
    color: #d1e9ff;
    display: block; 
    height: 100px;
    margin-bottom: -80px;
}

header .regform {
    width: 85%;
    margin: 10px auto;
    padding: 30px 30px;
    background-color: rgba(1, 24, 74, .3);
    border-radius: 10px;
    text-align: left;
}

label {
    float: left;
    font-size: 16px; 
    padding-bottom: 10px; 
}


@media (max-width: 600px) {
    .hero-wrap h1 {
        font-size: 3em; 
    }

    header .regform {
        width: 320px;
        margin: 10px auto;
        padding: 0;
    }

    .pricing-header .btnOutline{
        width: 200px;
    }

}
@media (max-width: 300px) {
    .hero-wrap h1 {
        font-size: 2.2em; 
    }
    .btnOutline { width: 210px;}

    header .regform {
        width: 250px;
        margin: 10px auto;
    }
    .pricing-header .btnOutline{
        width: 250px;
    }

}

@media (max-width: 280px) {
    .hero-wrap h1 {
        font-size: 4em; 
    }
    .btnOutline { width: 200px;}

    header .regform {
        width: 200px;
        margin: 10px auto;
        padding: 10px auto;
        background-color: rgba(1, 24, 74, .3);
        border-radius: 10px;
        text-align: left;
    }
    .pricing-header .btnOutline{
        width: 200px;
    }
}


/* AGE OVERLAY */
#ageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5999;
}

.age-box {
  background: #111;
  color: #fff;
  padding: 35px 30px;
  max-width: 420px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.4);
}

.age-box h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.age-box p {
  font-size: 16px;
  opacity: 0.9;
}

.age-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-actions button {
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* YES BUTTON */
#ageYes {
  background: #ff7a00;
  color: #000;
  font-weight: bold;
}

/* NO BUTTON */
#ageNo {
  background: #333;
  color: #fff;
}

#ageYes:hover {
  background: #ff9b33;
}

#ageNo:hover {
  background: #555;
}


.bottles-section {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 40px 20px;
    margin-top: 30px;
    /* display: none; */
}

.bottles-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff6b35;
}

.bottles-subtitle {
    text-align: center;
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}

.discount-badge {
    background-color: #ff6b35;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bottles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.bottle-card {
    background-color: #252525;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.bottle-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.bottle-card.recommended {
    border-color: #4ade80;
    background-color: #1a2e1a;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
}

.bottle-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.bottle-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.bottle-description {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.bottle-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
}

.savings {
    font-size: 12px;
    color: #4ade80;
    font-weight: bold;
    margin-bottom: 15px;
}

.bonus-box {
    background-color: #1e3a5f;
    border: 1px solid #2563eb;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.bonus-text {
    flex: 1;
    text-align: left;
}

.bonus-title {
    font-size: 11px;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 2px;
}

.bonus-value {
    font-size: 10px;
    color: #999;
}

.bonus-free {
    color: #4ade80;
    font-weight: bold;
}

.supply-note {
    font-size: 12px;
    color: #dc3545;
    margin-bottom: 15px;
    line-height: 1.4;
}

.select-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.select-btn:hover {
    background-color: #ff8555;
}

/* RETURN OVERLAY */
.return-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 99999;
  pointer-events: auto;
}

.return-box {
  background: #111;
  padding: 30px;
  max-width: 420px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,122,0,0.4);
}

.return-box h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.return-box p {
  opacity: 0.85;
}

.return-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.return-actions button {
  padding: 14px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* CONTINUE */
#continueBtn {
  background: #ff7a00;
  color: #000;
  font-weight: bold;
}

/* RESTART */
#restartBtn {
  background: #333;
  color: #fff;
}

#continueBtn:hover {
  background: #ff9b33;
}

#restartBtn:hover {
  background: #555;
}
