body {
    background-color: #202123;
    color: #e5e5e5;
    padding-top: 3.5em;
}

.notification-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ffb6c1, #c86dd7, #41b2b0, #3b7b80);
  text-align: center;
  color: #fff;
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.announcement-text {
  font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 3.5em;
    padding: 0.8em 2em;
    background: transparent;
    font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
    z-index: 999;
}

.navbar-left, .navbar-right {
    display: flex;
    align-items: center;
}

.navbar-icon img {
    width: 32px;
    height: 32px;
    margin-right: 1em;
}

.navbar-item {
    margin-right: 1em;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.navbar-item:hover {
    opacity: 0.8;
}

.premium-button {
    padding: 0.5em 1em;
    font-weight: bold;
    background: transparent;
    border: 2px solid;
    border-radius: 4px;
    background-image: linear-gradient(90deg, #ffb6c1, #c86dd7) 1;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.premium-button span {
    background: linear-gradient(90deg, #ffb6c1, #c86dd7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-button:hover {
    opacity: 0.8;
}

.login-button {
    padding: 0.5em 1em;
    background-color: #89CFF0;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}

.login-button:hover {
    opacity: 0.8;
}

.navbar-toggle {
    display: none;
    font-size: 1.5em;
    background: transparent;
    border: none;
    color: #fff
}

.navbar-dropdown {
    display: none;
    flex-direction: column;
    background-color: rgba(30, 30, 30, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1em 0;
}

.navbar-dropdown a {
    color: #fff;
    padding: 0.5em 2em;
    text-decoration: none;
    font-weight: bold;
}

@media ( max-width: 768px ){
    .navbar-left, .navbar-right {
        display: none;
    }
    .navbar-toggle {
        display: block;
    }
}

.countdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffb6c1, #c86dd7, #41b2b0, #3b7b80);
  color: white;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  overflow: hidden;
}

.countdown-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

#timer {
  display: flex;
  gap: 30px;
  font-size: 2.5rem;
  font-weight: bold;
}

#timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#timer p {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 400;
}

