@font-face {
    font-family: 'HvDTrial_Brevia-ExtraBlack-BF6493a4064f0ec';
    src: url('assets/font/HvDTrial_Brevia-ExtraBlack-BF6493a4064f0ec.otf') format('opentype'); 
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: 'HvDTrial_Brevia-ExtraBlack-BF6493a4064f0ec', Arial, Helvetica, sans-serif;
  }


  body {
    cursor: url('assets/dutch/Dutch Lady Logo 1.png') 16 16, auto !important;
  }


  p, h1, h2, h3, h4, h5, h6 ,button, input, textarea, div {
    font-family: 'HvDTrial_Brevia-ExtraBlack-BF6493a4064f0ec', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
  }

.start-button {
  background-color: #1DA58F;
  color: white;
  border: 10px solid white;
  font-size: 48px;
  cursor: pointer;
  width: 388px;
  height: 110px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  position: relative; /* Needed for progress bar positioning */
  overflow: hidden; /* Hide progress bar overflow */
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.start-button .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px; /* Make it a bit thicker */
    width: 0;
    background-color: rgba(255, 255, 255, 0.9); /* Lighter/more opaque white */
    transition: width 1s linear; /* 1s matches the dwell timeout */
}

.start-button.hand-hover .progress-bar {
    width: 100%;
}

.start-button:hover,
.start-button:focus,
.start-button.hand-hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px #1DA58F, 0 6px 18px rgba(0,0,0,0.18);
  background: #1DA58F; /* Darker blue on hover */
  color: #ffffff;
  border-color: #ffffff;
}

@keyframes dwell-loader-progress {
  from { width: 0; }
  to { width: 100%; }
}

button.hand-hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  animation: dwell-loader-progress 1s linear;
  z-index: 3; /* Ensure it's on top of other button content */
}

button .button-loader {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
button.loading .button-loader {
  opacity: 1;
}
.button-spinner {
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 1s linear infinite;
}
.loader {
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: spin 1s linear infinite;
  margin: auto;
  background: transparent;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.5), 0 0 0 2px #ffffff;
  position:absolute;
    right: 20px;
    top: 20px;
    z-index: 9999;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); } 
}

#text-loader {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10001;
  display: none; /* Hidden by default */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}



