/* .container-timer {
  text-align: left;
  padding: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px; 
}

.venue-info {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.pin-icon {
  font-size: 16px;
}

.countdown {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.time-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.time-boxes {
  display: flex;
  gap: 4px;
}

.time-box {
  width: 40px;
  height: 50px;
  position: relative;
  perspective: 500px;
}

.flip {
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-top,
.flip-bottom {
  position: absolute;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3c72;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flip-top {
  top: 0;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(30, 60, 114, 0.2);
  transform-origin: bottom;
}

.flip-bottom {
  bottom: 0;
  border-radius: 0 0 6px 6px;
  line-height: 0;
}

.flip-top span {
  position: absolute;
  top: 0;
  line-height: 50px;
}

.flip-bottom span {
  position: absolute;
  bottom: 0;
  line-height: 50px;
}

.flip-top-next {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3c72;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(30, 60, 114, 0.2);
  transform-origin: bottom;
  z-index: 5;
  transform: rotateX(90deg);
}

.flip-top-next span {
  position: absolute;
  top: 0;
  line-height: 50px;
}

.flip-bottom-next {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3c72;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  line-height: 0;
  transform-origin: top;
  z-index: 5;
  transform: rotateX(-90deg);
}

.flip-bottom-next span {
  position: absolute;
  bottom: 0;
  line-height: 50px;
}

.flip.animate .flip-top {
  animation: flip-top 0.6s ease-in;
  animation-fill-mode: forwards;
}

.flip.animate .flip-bottom-next {
  animation: flip-bottom 0.6s ease-out 0.3s;
  animation-fill-mode: forwards;
}

@keyframes flip-top {
  0% {
    transform: rotateX(0deg);
    z-index: 10;
  }
  100% {
    transform: rotateX(-90deg);
    z-index: 10;
  }
}

@keyframes flip-bottom {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.separator {
  color: white;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0 2px;
}

.label {
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.register-btn {
  background: #5b21b6;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(91, 33, 182, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.register-btn:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 33, 182, 0.6);
}

.register-btn::after {
  content: "›";
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 15px 10px;
  }

  .venue-info {
    font-size: 11px;
    margin-bottom: 15px;
    gap: 4px;
  }

  .pin-icon {
    font-size: 13px;
  }

  .countdown {
    gap: 5px;
    margin-bottom: 15px;
  }

  .time-boxes {
    gap: 3px;
  }

  .time-box {
    width: 28px;
    height: 36px;
  }

  .flip-top,
  .flip-bottom,
  .flip-top-next,
  .flip-bottom-next {
    font-size: 18px;
  }

  .flip-top span,
  .flip-top-next span {
    line-height: 36px;
  }

  .flip-bottom span,
  .flip-bottom-next span {
    line-height: 36px;
  }

  .separator {
    font-size: 18px;
    padding: 0 1px;
  }

  .label {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .time-section {
    gap: 4px;
  }

  .register-btn {
    padding: 10px 24px;
    font-size: 12px;
  }

  .register-btn::after {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .venue-info {
    font-size: 10px;
  }

  .time-box {
    width: 24px;
    height: 32px;
  }

  .flip-top,
  .flip-bottom,
  .flip-top-next,
  .flip-bottom-next {
    font-size: 16px;
  }

  .flip-top span,
  .flip-top-next span,
  .flip-bottom span,
  .flip-bottom-next span {
    line-height: 32px;
  }

  .separator {
    font-size: 16px;
  }

  .countdown {
    gap: 4px;
  }

  .time-boxes {
    gap: 2px;
  }
} */

.container-timer {
  text-align: left !important;
  padding: 0px 0px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px; /* 50% of 1440px */
}

.venue-info {
  text-align: left;
  color: black;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 0px;
}

.pin-icon {
  font-size: 20px;
}

.countdown {
  display: flex;
  gap: 8px;
  /* justify-content: center;
  align-items: center; */
  margin-bottom: 10px;
  margin-top: 10px !important;
  flex-wrap: nowrap;
}

.time-section {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  gap: 6px;
}

.time-boxes {
  display: flex;
  gap: 4px;
}

.time-box {
  width: 55px;
  height: 70px;
  position: relative;
  perspective: 500px;
}

.flip {
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-top,
.flip-bottom {
  position: absolute;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3c72;
  font-size: 40px;
  font-weight: 700;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flip-top {
  top: 0;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(30, 60, 114, 0.2);
  transform-origin: bottom;
}

.flip-bottom {
  bottom: 0;
  border-radius: 0 0 6px 6px;
  line-height: 0;
}

.flip-top span {
  position: absolute;
  top: 0;
  line-height: 70px;
}

.flip-bottom span {
  position: absolute;
  bottom: 0;
  line-height: 70px;
}

.flip-top-next {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3c72;
  font-size: 40px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(30, 60, 114, 0.2);
  transform-origin: bottom;
  z-index: 5;
  transform: rotateX(90deg);
}

.flip-top-next span {
  position: absolute;
  top: 0;
  line-height: 70px;
}

.flip-bottom-next {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3c72;
  font-size: 40px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  line-height: 0;
  transform-origin: top;
  z-index: 5;
  transform: rotateX(-90deg);
}

.flip-bottom-next span {
  position: absolute;
  bottom: 0;
  line-height: 70px;
}

.flip.animate .flip-top {
  animation: flip-top 0.6s ease-in;
  animation-fill-mode: forwards;
}

.flip.animate .flip-bottom-next {
  animation: flip-bottom 0.6s ease-out 0.3s;
  animation-fill-mode: forwards;
}

@keyframes flip-top {
  0% {
    transform: rotateX(0deg);
    z-index: 10;
  }
  100% {
    transform: rotateX(-90deg);
    z-index: 10;
  }
}

@keyframes flip-bottom {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.separator {
  color: #1e3c72;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  padding: 11px 2px;
}

.label {
  color: #1e3c72;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.register-btn {
  background: #1e3c72;
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px #1e3c72; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: normal;
}

.register-btn:hover {
  /* background: #6d28d9; */
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px #1e3c72; */
}

.register-btn::after {
  content: "›";
  font-size: 20px;
  font-weight: 700;
}

/* Mobile styles - full width in single line */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 15px 10px;
  }

  .venue-info {
    font-size: 11px;
    margin-bottom: 15px;
    gap: 4px;
    text-align: center;
  }
  .container-timer {
    text-align: center !important;
  }
  .countdown {
    display: flex;
    justify-content: center !important;
  }

  .pin-icon {
    font-size: 13px;
  }

  .countdown {
    gap: 5px;
    margin-bottom: 15px;
  }

  .time-boxes {
    gap: 3px;
  }

  .time-box {
    width: 28px;
    height: 36px;
  }

  .flip-top,
  .flip-bottom,
  .flip-top-next,
  .flip-bottom-next {
    font-size: 18px;
  }

  .flip-top span,
  .flip-top-next span {
    line-height: 36px;
  }

  .flip-bottom span,
  .flip-bottom-next span {
    line-height: 36px;
  }

  .separator {
    font-size: 18px;
    padding: 0 1px;
  }

  .label {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .time-section {
    gap: 4px;
  }

  .register-btn {
    padding: 10px 24px;
    font-size: 12px;
  }

  .register-btn::after {
    font-size: 16px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .venue-info {
    font-size: 10px;
  }

  .time-box {
    width: 24px;
    height: 32px;
  }

  .flip-top,
  .flip-bottom,
  .flip-top-next,
  .flip-bottom-next {
    font-size: 16px;
  }

  .flip-top span,
  .flip-top-next span,
  .flip-bottom span,
  .flip-bottom-next span {
    line-height: 32px;
  }

  .separator {
    font-size: 16px;
  }

  .countdown {
    gap: 4px;
  }

  .time-boxes {
    gap: 2px;
  }
}
