/* === Global Style === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2a2a72);
  color: #ffffff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* === Header kiri atas === */
.header {
  position: absolute;
  top: 20px;
  left: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header h {
  font-size: 22px;
  color: #ffcc70;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
}

/* Foto profil kecil */
.profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-top: 8px;
  border: 2px solid #ffd166;
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.1);
}

h1 {
  margin: 10px 0;
  font-size: 32px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

a {
  font-size: 18px;
  color: #ffd166;
  margin-bottom: 40px;
  display: block;
}

/* === Clock Container === */
#clock {
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  padding: 20px 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#clock:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* === Animasi Background === */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  background: linear-gradient(-45deg, #2b2b52, #24243e, #302b63, #0f0c29);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

/* === Responsif === */
/* Mobile */
@media (max-width: 600px) {
  #clock {
    font-size: 40px;
    padding: 15px 25px;
  }

  h1 {
    font-size: 24px;
  }

  a {
    font-size: 16px;
  }
  
  .header h {
    font-size: 18px;
  }
  
  .profile-pic {
    width: 50px;
    height: 50px;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  #clock {
    font-size: 80px;
    padding: 25px 50px;
  }

  h1 {
    font-size: 38px;
  }

  a {
    font-size: 20px;
  }
}

/* Desktop / Layar Besar */
@media (min-width: 1025px) {
  #clock {
    font-size: 100px;
    padding: 30px 60px;
  }

  h1 {
    font-size: 42px;
  }

  a {
    font-size: 22px;
  }
  
  .header h {
    font-size: 26px;
  }
  
  .profile-pic {
    width: 70px;
    height: 70px;
  }
}
/* === Copyright / Footer === */
footer {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  transition: color 0.3s ease;
}

footer:hover {
  color: #ffd166;
}
