:root {
  --tricorn-black: #2f2f30;
  --netflix-red: #e50914;
  --face-bg: #111218;
  --text-light: #f5f5f5;
}

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

html, body {
  width: 100%;
  height: 100%;
  background: var(--tricorn-black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-light);
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-wrapper {
  position: relative;
  width: 1920px;
  height: 1080px;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-container {
  position: relative;
  width: 90vmin;
  height: 90vmin;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
}

.clock-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* LEFT-SIDE DATE */
.side-date {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.side-date .date-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid var(--netflix-red);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.35);
}

.side-date .month {
  color: var(--netflix-red);
  font-weight: 700;
}

/* RIGHT-SIDE WEATHER */
.side-weather {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.side-weather .weather-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid var(--netflix-red);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.35);
}

.weather-icon {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.4));
}

.side-weather .temp {
  color: var(--netflix-red);
  font-weight: 700;
}

/* FULLSCREEN BUTTON */
.fullscreen-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--netflix-red);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(4px);

  animation: breathe 3s ease-in-out infinite;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fullscreen-btn:hover {
  background: rgba(229, 9, 20, 0.25);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
}

.fullscreen-btn:active {
  transform: scale(0.96);
}

@keyframes breathe {
  0%   { box-shadow: 0 0 4px rgba(229, 9, 20, 0.4); }
  50%  { box-shadow: 0 0 14px rgba(229, 9, 20, 0.8); }
  100% { box-shadow: 0 0 4px rgba(229, 9, 20, 0.4); }
}

.hour-marker {
  stroke: var(--text-light);
  stroke-width: 3;
  stroke-linecap: round;
}

.minute-marker {
  stroke: rgba(245, 245, 245, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
}
