/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}

body.light {
  background: linear-gradient(to right, #f9f9f9, #dcdcdc);
  color: #111;
}

body.dark {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
}

.container {
  display: flex;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.container .logo {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
 
}
.container header {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.container p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
}
.container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.time .number,
.time .text {
  font-weight: 500;
  color: #fff;
}
.time .number {
  font-size: 40px;
}
.time .text {
  text-transform: capitalize;
  font-size: 12px;
}
#logo {
  width:20%;
  height: auto;
  margin-bottom: 20px;
  transition: filter 0.3s ease;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: inherit;
}

.countdown {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.theme-toggle button {
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background: #64748b;
  color: white;
}

body.light .theme-toggle button {
  background: #e2e8f0;
  color: #1e293b;
}
.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  column-gap: 20px;
}
.input-box input,
.input-box button {
  height: 100%;
  outline: none;
  border: none;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.input-box button:hover {
  background-color: #fff;
  color: #0d6a81;
}
@media screen and (max-width: 300px) {
  .container header {
    font-size: 50px;
  }
}
.flip-card {
  position: relative;
  width: 60px;
  height: 80px;
  perspective: 1000px;
  background: transparent;
  margin: 5px 0;
}

.flip-card .top,
.flip-card .bottom {
  font-size: 2.5rem;
  font-weight: bold;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #fff;
}

body.light .flip-card .top,
body.light .flip-card .bottom {
  background: rgba(0,0,0,0.1);
  color: #000;
}
.flip-card .top {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom;
  transition: transform 0.6s;
} */
 /* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}

body.light {
  background: linear-gradient(to right, #f9f9f9, #dcdcdc);
  color: #111;
}

body.dark {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
}

.container {
  display: flex;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.container .logo {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.container header {
  font-size: 60px;
  color: inherit;
  font-weight: 600;
  text-align: center;
}
.container p {
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  max-width: 550px;
  text-align: center;
}
.container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.time .number,
.time .text {
  font-weight: 500;
  color: inherit;
}
.time .text {
  text-transform: capitalize;
  font-size: 12px;
}

/* Flip Card Style 
.flip-card {
  position: relative;
  width: 60px;
  height: 80px;
  perspective: 1000px;
  background: transparent;
  margin: 5px 0;
}
.flip-card .top,
.flip-card .bottom {
  font-size: 2.5rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: inherit;
}
body.light .flip-card .top,
body.light .flip-card .bottom {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

#logo {
  width: 20%;
  height: auto;
  margin-bottom: 20px;
  transition: filter 0.3s ease;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.theme-toggle button {
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background: #64748b;
  color: white;
}
body.light .theme-toggle button {
  background: #e2e8f0;
  color: #1e293b;
}

.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  column-gap: 20px;
}
.input-box input,
.input-box button {
  height: 100%;
  outline: none;
  border: none;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.input-box button:hover {
  background-color: #fff;
  color: #0d6a81;
} */
 * {
  margin: 0;
  padding: 0;

}
body {
  font-family: "Segoe UI", sans-serif;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
}

body.light {
  background: linear-gradient(to right, #f9f9f9, #dcdcdc);
  color: #000;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}
#logo {
  width:20%;
  height: auto;
  margin-bottom: 20px;
  transition: filter 0.3s ease;
}
.theme-toggle button {
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background: #64748b;
  color: white;
}

.container {
  text-align: center;
  padding-top: 50px;
}

.logo {
  max-width: 240px;
  margin-bottom: 20px;
}

.flip-clock {
  text-align: center;
  perspective: 400px;
  margin: 20px auto;
}

.flip-clock *,
.flip-clock *::before,
.flip-clock *::after {
  box-sizing: border-box;
}

.flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}

.flip-clock__slot {
  font-size: 2vw;
}

.card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 9vw;
  line-height: 0.95;
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: linear-gradient(to right, #0f172a, #1e293b);
  padding: 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  width: 1.5em;
  transform: translateZ(0);
}

.card__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: linear-gradient(to right, #0f172a, #1e293b);
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}

.card__bottom::after {
  display: block;
  margin-top: -0.72em;
  content: attr(data-value);
}

.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
}

.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
  content: attr(data-value);
}

.flip .card__back::before {
  animation: flipTop 0.3s cubic-bezier(.37,.01,.94,.35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}

.flip .card__back .card__bottom {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom 0.6s cubic-bezier(.15,.45,.28,1);
}

@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%, 99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

@keyframes flipBottom {
  0%, 50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}

.email-content {
  margin-top: 30px;
}

.input-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.input-box input {
  padding: 10px;
  width: 250px;
  border-radius: 4px;
  border: none;
}

.input-box button {
  padding: 10px 20px;
  background: #00bcd4;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  margin-top: 40px;
  font-size: 14px;
}
