* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #18122b, #393053, #443c68);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 90%;
  max-width: 650px;
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(15px);
}

h1 {
  margin-bottom: 25px;
  font-size: 42px;
}

#time {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 10px;
}

#date {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 30px;
}

button {
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  background: #ff4fd8;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  transform: scale(1.05);
  background: #ff79e3;
}

.hidden {
  display: none;
}

#rick {
  margin-top: 30px;
}

#rick iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 18px;
}