:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent-color: #00f2fe;
  --accent-secondary: #4facfe;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Background animated circles */
.bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
  animation: float 20s infinite alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.1); }
  100% { transform: translate(-50px, 100px) scale(1); }
}

.container {
  text-align: center;
  z-index: 1;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.clock-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

#time {
  font-size: 3.5rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

#date {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.footer {
  position: absolute;
  bottom: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}
