@font-face {
    font-family: 'OmnosBlade';
    src: url('../fonts/Bladerounded-Regular.woff2') format('woff2'),
         url('../fonts/Bladerounded-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General Styling */
body {
    font-family: 'OmnosBlade', sans-serif;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Centered Image */
.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

/* Countdown Timer */
.countdown {
    font-size: 3rem;
    background: linear-gradient(90deg, #ffcc00, #ff3300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-top: 20px;
}

/* Wishlist text styling */
.wishlist-text {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

/* Wishlist link styling */
.wishlist-link {
    display: block;
    font-size: 32px;
    color: #00ccff;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.wishlist-link:hover {
    color: #ffcc00;
    text-shadow: 0px 0px 15px #ffcc00;
}

.glow-button {
  display: inline-block;
  margin: 20px;
  padding: 20px 48px;
  font-size: 1.8em;
  font-weight: bold;
  color: #ffffff;
  border: 2px solid #ffcc00;
  background: transparent;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 6px #ffcc00 inset;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
  animation: fadeInScale 0.6s ease 0.5s forwards;
}

.glow-button:hover {
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
  background: rgba(255, 204, 0, 0.1);
  box-shadow: 0 0 12px #ffcc00;
}

.fade-out {
  animation: fadeOut 0.5s forwards ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
