/* custom.css */


body, html {
  margin: 0;
  background: radial-gradient(circle at top, #1a1d2f 0%, #000 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
   font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

h1, h2, .cta-button, input, textarea, select, #bericht-editor {
    font-family: 'Orbitron', sans-serif;
  }

.hero-section {
  position: relative;
  height: 50vh; /* changed */
  padding: 2rem;
  overflow: hidden; /* prevents floating images from adding scroll space */
  min-height: 45vh;
  padding: 4vh 2rem 8vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* text higher */
  flex-direction: column;
  position: relative;
}

.tagline {
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 1.2s ease;
}

.cta-button {
  background-color: #00cfff;
  color: #000;
  border: none;
  padding: 12px 15px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #3be6ff;
  color:black;
  text-decoration: none;
}

/* Iris Floating Elements */
.iris-floating {
  position: absolute;
  border-radius: 10%;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0,255,255,0.4);
  animation: float 4s ease-in-out infinite alternate;
}

.iris1 {
  top: 5%;
  left: 8%;
  width: 190px;
  height: 190px;
  animation-delay: 0s;
 
}

.iris2 {
  top: 5%;
  right: 8%;
  width: 220px;
  height: 220px;
  animation-delay: 1s;
 
}

.iris3 {
  top: 65%;
  left: 5%;
  width: 120px;
  height: 120px;
  animation-delay: 1s;
  
}



/* On large screens, reposition to look more balanced */
@media (min-width: 1200px) 
{
  .iris1 { top: 10%; left: 18%; }
  .iris2 { top: 19%; right: 20%; }
  .iris3 { bottom: 28%; left: 31%; }
  
  .macrolens-comparision-div {
    padding-left: 90px;
  }
 
}





@keyframes float {
  0%   { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-15px) scale(1.05); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) 
{
 
  .tagline
  {
      margin-top:50px;
  }
    
  .iris-floating {
    width: 70px;
    height: 70px;
    opacity: 81%;
  }
  

  .iris1 { 
  top: 7%; left: 10%;
      
  width: 140px;
  height: 140px;
  
 

  }
  .iris2 { top: 20%; right: 10%; }
  .iris3 { bottom: 20%; left: 8%; }
  .iris4 { bottom: 12%; right: 12%; }

  /* Hide the extras if too cluttered on small viewports */
  .iris5, .iris6 {
    display: none;
  }

  .tagline h1 {
    font-size: 2.2rem;
  }

  .tagline p {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 4vh 1rem 6vh;
  }
  
   .modal-body {
    padding: 10px;
    overflow-y: auto;
    max-height: 90vh;
  }

  #cropImage {
    width: 100%;
    height: auto;
    max-height: 60vh;
  }

  /* Grotere knoppen op mobiel */
  #zoomIn, #zoomOut {
    font-size: 1rem;
    padding: 8px 16px;
  }



  
}

.navbar {
  background-color: rgba(10, 10, 20, 0.7) !important; /* translucent */
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 0 10px rgba(0,255,255,0.1) !important;
}



.tagline {
  z-index: 10;
  text-align: center;
 
}

@media (max-width: 991.98px) 
{
  .navbar-nav {
    align-items: flex-start !important;
  }
  
}

.brushstroke-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.stroke-line {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00ffff, #00bcd4);
  transition: all 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3); /* 💡 Always-on subtle glow */
}

/* Slightly varied lengths for an organic look */
.stroke-line:nth-child(1) {
  width: 26px;
}
.stroke-line:nth-child(2) {
  width: 20px;
}
.stroke-line:nth-child(3) {
  width: 24px;
}

/* Hover glow effect */
.brushstroke-toggler:hover .stroke-line,
.brushstroke-toggler:focus-visible .stroke-line {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

/* Open state (into an X) */
.brushstroke-toggler:not(.collapsed) .stroke-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 28px; /* match the cross */
}

.brushstroke-toggler:not(.collapsed) .stroke-line:nth-child(2) {
  opacity: 0;
}

.brushstroke-toggler:not(.collapsed) .stroke-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 28px; /* match the cross */
}
.brushstroke-toggler {
  outline: none;
}

.brushstroke-toggler:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6); /* optional soft glow when focused */
}
.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
 
  
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
}

.nav-link {
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background: #00ffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(90deg, #00ffff, #00bcd4);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
  border: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(90deg, #00bcd4, #00ffff);
  box-shadow: 0 0 30px rgba(0,255,255,0.6);
  transform: scale(1.05);
}

.review-score {
  font-size: 0.95rem;
}

.review-score .ti-star-filled {
  font-size: 1.2rem;
  color: #ffc107; /* Bootstrap warning yellow */
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,255,255,0.15);
}

.step-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius:10px;
}

.inspiratie-section img {
  transition: transform 0.3s ease;
}

.inspiratie-section img:hover {
  transform: scale(1.02);
}

.achtergrond-kleur
{
    background: rgba(255, 255, 255, 0.05);
}

.achtergrond-kleur-zwart
{
    background: rgba(10, 10, 20, 0.7);
}

.achtergrond-kleur-blokken
{
    background: rgba(255, 255, 255, 0.05);
}

.eye-section {
  background: linear-gradient(145deg, #0a0a0f, #101018);
}

.eye-section img {
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.eye-section img:hover {
  transform: scale(1.02);
}

.scrollable-facts {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.fact-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,255,255,0.1);
}
.iris-hotspot-wrapper {
  position: relative;
}

.hotspot-group {
  position: absolute;
  transform: translate(-50%, -50%);
}

.hotspot {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
   animation: pulseDark 2s infinite ease-in-out;
}

.hotspot:hover {
  transform: scale(1.8);
  transition: transform 0.2s ease;
}

@keyframes pulseDark {
  0% {
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(0,0,0,0.5);
    transform: scale(1.15);
  }
  100% {
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    transform: scale(1);
  }
}


.hotspot-card {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1rem;
  width: 220px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
}


.hotspot-card.show {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(-10px) !important;
  pointer-events: auto;
}

.hotspot-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid rgba(255,255,255,0.05);
}

.border-end-md {
  border-right: 1px solid #ddd;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color:rgb(47, 54, 60) !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: white !important;
}

.card-style {
  background: #1c1c1e;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.card-style:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
.iris-btn.active {
  background-color: #198754;
  color: white;
  border-color: #198754;
  
  font-weight: 600;
}

.round-preview {
  border-radius: 50%;
  object-fit: cover;
  width: 150px;
  height: 150px;
}

.cropper-crop-box, .cropper-view-box {
  border-radius: 50% !important; /* Make the cropping area round */
}

.cropper-view-box {
  border: 2px solid #4CAF50; /* Optional: green nice border around */
  box-shadow: 0 0 0 9999em rgba(0, 0, 0, 0.7); /* Darken outside the circle */
}

.modal-lg {
  max-width: 900px; /* Make modal much bigger */
}


.crop-container {
  background: #111; /* Optional: dark background behind image */
  border: 2px dashed #666; /* Optional: show container border if you want */
}

.modal-body {
  max-height: 90vh;
  overflow-y: auto;
}

#cropImage {
  width: 100%;
  height: auto;
  max-height: 80vh; /* So the image scales nicely */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cropper-container .cropper-bg
{
    width:100%;
    height:100%;
}


.faq-button {
  transition: all 0.3s ease;
}

.faq-button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(0,255,100,0.2);
}

/* Draai de pijltjes als open */
.accordion-button:not(.collapsed) .arrow i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Pijltjes standaard smooth */
.arrow i {
  transition: transform 0.3s ease;
}

/* Actieve accordion-item highlight */
.accordion-button:not(.collapsed) {
  background-color: #121212;
  box-shadow: 0 0 20px rgba(0, 160, 255, 0.2);
}

.accordion-item:not(:first-of-type) 
{
  border-top: 1 !important;
}

  .card {
    position: relative;
  }

  /* Subtiele aanbevolen badge bovenaan */
  .recommended-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745; /* Groene achtergrond voor "Aanbevolen" */
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px; /* Ronde hoeken voor subtiel effect */
    opacity: 0.9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Lichte schaduw voor subtiele diepte */
    z-index: 10;
  }

  .recommended-badge span {
    display: block;
    text-transform: uppercase;
  }

  .btn-info {
    position: relative;
    border: none;
    background-color: transparent;
    font-size: 18px;
    cursor: pointer;
  }

  .btn-info:hover {
    color: #ffcc00;
  }
  
  .accordion-item:not(:first-of-type)
  {
     border-top: 1px solid white !important;  
  }
  


.card.gift-option.active-card {
  border-color: #198754 !important;
  background-color: rgba(25, 135, 84, 0.05);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.blurred-macrolens {
  filter: blur(0.8px) brightness(0.90) contrast(0.85);
}

.price-badge {
  background: #28a745;
  color: white;
  font-weight: 700;
  font-size: 3.5rem;
  border-radius: 50%;
  width:  150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transform: rotate(-10deg);
  z-index: 2;
  
}

.price-badge small {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .price-badge {
    width: 100px;
    height: 100px;
    font-size: 1.9rem;
  }
}

.price-badge:hover {
  transform: rotate(0deg) scale(1.05);
  transition: all 0.3s ease;
}

.group:hover .absolute {
  bottom: 0 !important;
  opacity: 1 !important;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.picture-item {
  width: calc(33.333% - 10.66px); /* 3 per row with gap */
}

.picture-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .picture-item {
    width: calc(50% - 8px);
  }
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.picture-item.small {
  height: 250px;
}
.picture-item.tall {
  height: 500px;
}
.picture-item.wide {
  height: 350px;
}

.color-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.effect-thumbnail {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.2s ease;
}

.effect-thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0,255,255,0.15);
}

.product-thumbnail {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.2s ease;
}

.product-thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0,255,255,0.15);
}

.effect-card:hover
{
  box-shadow: 0 12px 24px rgba(0,255,255,0.15);
  transform: scale(1.02);
   
}

.product-card:hover
{
  box-shadow: 0 12px 24px rgba(0,255,255,0.15);
  transform: scale(1.02);

   
}
 
.border-radius-5
{
    border-radius:5px;
}

.btn-primary:hover
{
    text-decoration: none !important;
}


.selectable-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .selectable-card.selected {
    border: 2px solid #0d6efd; /* Bootstrap primary */
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
  }

  .selectable-card::after {
    content: '✔';
    color: #0d6efd;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    display: none;
  }

  .selectable-card.selected::after {
    display: block;
  }
  
.upload-preview {
    max-width: 100%;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    display: none;
  }
  
 .bestellen-iris-icon
 {
     font-size:24px;
     color:white;
 } 
 
.nav-link:hover {
  text-decoration: none;
}
 
.nav-link.no-hover-effect:hover,
.nav-link.no-hover-effect:focus {
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
  background: none !important;
  color: #195f9c !important;
}

.nav-link.text-success {
  background-color: rgba(20, 110, 70, 0.1); /* soft green background on active page */
  border-radius: 6px;
  padding-left:5px;
  padding-right:5px;
  
}

a {
  color: #4dabf7; /* Aqua-mint / soft neon */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #1e90ff; /* Slightly darker shade on hover */
  text-decoration: underline;
}

label.gift-option {
  cursor: pointer;
  transition: all 0.2s ease;
}

label.gift-option:hover {
  transform: scale(1.02);
  border-color: #198754;
}

.hotspot-group-1
{
    top: 28%; 
    left: 72%;
}

.hotspot-group-2
{
    top: 62%; 
    left: 30%;
}

.hotspot-group-3
{
    top: 50%; 
    left: 58%;
}

.img-width-100px
{
    width:100px;
}

.tap-link {
  display: inline-block;
  padding: 8px 0; /* vertical space */
  line-height: 1.5;
}

.option-card {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
  background-color: #f8f9fa;
  color:black;
}

.option-card:hover {
  background-color: #e0f0ff;
  transform: scale(1.02);
  box-shadow: 0 0 0 2px #0d6efd;
}

.option-radio:checked + .option-card {
  border-color: #0d6efd;
  background-color: #e0f0ff;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0d6efd;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.upload-btn:hover {
  background-color: #0b5ed7;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.afrekenform
{
    background-color: rgba(255, 255, 255, 0.03);
border-radius: 1.25rem;
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.05);
}

#bericht-editor {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.03);
 
  color: #ffffff;
  min-height: 250px;
}

#bericht-editor .ql-editor {
  color: #ffffff;
  font-family: 'Orbitron', sans-serif; /* of jouw font */
  font-size: 1rem;
  line-height: 1.6;
}

#preview {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  color: #ccc;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.upload-btn {
  background: linear-gradient(to right, #0d6efd, #4b9aff);
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  color: #fff;
  padding: 0.75rem 1.25rem;
}

.btn-primary {
  background: linear-gradient(to right, #006eff, #4a94ff);
  border: none;
  box-shadow: 0 0 12px rgba(0, 110, 255, 0.4);
  font-weight: 600;
  border-radius: 0.75rem;
}

.btn-primary:hover {
  background: linear-gradient(to right, #1a80ff, #68aaff);
  box-shadow: 0 0 16px rgba(0, 110, 255, 0.6);
}

input[type="date"] {
  background-color: rgba(255,255,255,0.03);
  color: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.6rem;
}




.form-switch .form-check-input {
  background-color: #333;
  border-color: #555;
  width: 3rem;
  height: 1.5rem;
}

.right-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  margin-left:0px !important;
  margin-right:0px !important;
}

.ql-editor.ql-blank::before {
    
    color:white !important;
}

.ql-toolbar.ql-snow
{
 border: 1px solid black !important;   
}


.countdown-timer {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  
.capsule-wait-section {
  position: relative;
  min-height: 100vh;
  background: url('https://www.opslaan.nl/assets/animations/bg-reveal.png') center center / cover no-repeat;
  overflow: hidden;
}

.capsule-wait-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/bg/stars.gif'); /* bijv. animated stars */
  background-size: cover;
  opacity: 0.2;
  animation: slowScroll 60s linear infinite;
  z-index: 0;
}

@keyframes slowScroll {
  from { background-position: 0 0; }
  to { background-position: 0 -1000px; }
}

.time-block {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  min-width: 70px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 255, 255, 0.1); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.35); }
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.z-1 {
  position: relative;
  z-index: 1;
}

/* Countdown blokken */


.time-block .time {
  font-size: 2rem;
  font-weight: bold;
  color: #00f7ff;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
}

.time-block .label {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#revealBtn {
  background: linear-gradient(135deg, #00f7ff, #008cff);
  color: white;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.4);
}

#revealBtn:hover:not(.disabled) {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.8), 0 0 40px rgba(0, 247, 255, 0.5);
}

/* Raket animatie */
#waitingImage {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Reveal-knop met extra glans */
#revealBtn {
  background: linear-gradient(145deg, #0dcaf0, #007bff);
  border: none;
  color: #fff;
  text-shadow: 0 0 5px #000;
  transition: all 0.3s ease;
}

#revealBtn:hover:not(.disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0dcaf0;
}

.time-block:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 247, 255, 0.4);
  transition: all 0.3s ease;
}

#revealBtn.btn-success {
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0px rgba(13, 202, 240, 0.5); }
  70% { box-shadow: 0 0 20px rgba(13, 202, 240, 0.9); }
  100% { box-shadow: 0 0 0px rgba(13, 202, 240, 0.5); }
}

@media (max-width: 576px) {
  .time-block {
    min-width: 50px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .time-block .time {
    font-size: 1.5rem;
  }

  .time-block .label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  .countdown-timer {
    gap: 0.5rem !important;
  }

  #revealBtn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  h1.display-5 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 0.95rem;
  }
}