@import url('https://fonts.googleapis.com/css?family=Heebo:300&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --primary-color: #000;
  --secondary-color: #fff;
}

html {
  transition: all 0.5s ease-in;
}

html.dark {
  --primary-color: #fff;
  --secondary-color: #333;
}

html.dark {
  background-color: #111;
  color: var(--primary-color);
}

body {
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    overflow: hidden; /* Prevent scrolling */
}

.toggle {
    position: absolute;
    top: 10%;
    left: 20px;
    z-index: 10;
    display: none;
}

.toggle:focus {
  outline: none;
      display: none;
}

.clock-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
      display: none;
}

.clock {
  position: relative;
  width: 200px;
  height: 200px;
    display: none;
}

.needle {
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 3px;
  transform-origin: bottom center;
  transition: all 0.5s ease-in linear;
}

.needle.hour {
  transform: translate(-50%, -100%) rotate(0deg);
}

.needle.minute {
  transform: translate(-50%, -100%) rotate(0deg);
  height: 100px;
}

.needle.second {
  transform: translate(-50%, -100%) rotate(0deg);
  height: 100px;
  background-color: #e74c3c;
}

.center-point {
  background-color: #e74c3c;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.center-point::after {
  content: '';
  background-color: var(--primary-color);
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.time {
  font-size: 60px;
  display: none;
}

.date {
  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.date .circle {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  height: 18px;
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  transition: all 0.5s ease-in;
  font-size: 12px;
}

#svg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.1);
}

#svg-container object {
    width: 100%;
    height: 100%;
    opacity: 1; /* Make it subtle like a background */
}

.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Mobile styles */
@media (max-width: 768px) {


body {
            /*background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('photo_2025-08-13_08-56-30.jpg') no-repeat center center fixed;*/
            background-size: cover;
                background: #f9f0df;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;

        }
  
    .container {
        max-width: 100%;
        padding: 0px;
        margin: 0px auto; /* Reduced margin */
        border-radius: 12px;
    }
    
    .header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px; /* Add if there's too much space below title */
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* If you have other elements creating top space, add: */
    body {
        padding-top: 10px;
    }
    
    /* If using flex/grid layout */
    .main-content {
        gap: 15px;
    }
}


.date-text {
  font-family: 'Share Tech Mono', monospace;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  fill: #aaa; /* For SVG text */
}

.date-number {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 2px; /* Small radius for subtle square corners */
  height: 18px;
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  transition: all 0.5s ease-in;
  font-size: 12px;
  font-family: 'Share Tech Mono', monospace;
}


