body {
  margin: 0;
  padding: 0;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  width: 100vw;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  cursor: none;
}

.container {
  width: 90vw;
  max-width: 80vw;
  margin-top: 16vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5vh;
}

.top {
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}

.clock {
  font-size: 7vh;
  font-weight: bold;
}

.date {
  font-size: 2vh;
}

.divider {
  margin:0.25vh auto;
  width: 70%;
  height: 0.3vh;
  background-color: white;
}

.prayers {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.prayer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 1vw;
  font-weight: bold;
}

.prayer-name {
  flex: 1.2;
  text-align: left;
  color: #d4af37;
  font-size: 3.3vh;
}

.prayer-time {
  flex: 1;
  text-align: center;
  font-size: 3.5vh;
}

.jamat-time {
  flex: 1;
  text-align: center;
  font-size: 5vh;
}

.prayer-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d4af37;
  font-weight: bold;
}

.prayer-header-row .prayer-name {
  flex: 1.2;
  text-align: left;
}

.prayer-header-row .prayer-time {
  flex: 1;
  text-align: center;
}

#poster-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  transition: opacity 1.5s ease;
  pointer-events: none;
  display: none;
  overflow: hidden;
}

#poster-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--poster-url);
  background-size: cover;
  background-position: center;
  filter: blur(35px);
  transform: scale(1.1);
  z-index: 0;
}

#poster-overlay .poster-img {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}

#kalimat-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  transition: opacity 0.25s ease;
  pointer-events: none;
  display: none;
  overflow: hidden;
}

#kalimat-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--kalimat-url);
  background-size: cover;
  background-position: center;
  filter: blur(35px);
  transform: scale(1.1);
  z-index: 0;
}

#kalimat-overlay .kalimat-img {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}

#dim-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  transition: opacity 1.5s ease;
  pointer-events: none;
  display: none;
}