/* Video fon */
#bgVideo, #rainVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -3;
}

/* SVG bezak fon */


/* Shaffof qoraytirish */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

/* Asosiy kontent */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding-bottom: 50px;
}

/* Profil */
.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-top: 50px;
  border: 3px solid white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  object-fit: cover;
}

/* Ism animatsiyasi */
.fade-in {
  opacity: 0;
  animation: fadeIn 4s forwards;
}

.delay1 { animation-delay: 1s; }
.delay2 { animation-delay: 1.5s; }
.delay3 { animation-delay: 2s; }
.delay4 { animation-delay: 2.5s; }
.delay5 { animation-delay: 3s; }

/* Tugmalar joylashuvi */
.buttons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;       /* gorizontal markaz */
  justify-content: center;   /* vertikal markaz */
  gap: 15px;
  margin-top: 15px;
  min-height: 50vh;          /* sahifaning yarmida bo‘lishi uchun */
}

/* Tugma stili */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;      /* matnni markazda joylash uchun */
  width: 260px;
  height: 30px;
  background: rgba(128, 128, 128, 0.4);
  color: white;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  transition: 0.3s;
  font-size: 18px;
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateX(-80px);
  animation: slideIn 1s forwards;
}

/* Ikonka uchun alohida joylashuv */
.btn img {
  position: absolute;
  left: 18px;          /* chap tomondan masofa */
  width: 25px;
  height: 25px;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}



/* Animatsiyalar */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
footer {
  margin-top: 50px;
  font-size: 14px;
  opacity: 0.8;
}


/* Oynaning orqa qismi */
.permission-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Oq oynacha */
.modal-content {
  background: #fff;
  width: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
  padding: 25px 20px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

/* Belgisi va matn */
.modal-content h2 {
  font-size: 17px;
  color: #222;
  font-weight: 600;
  margin: 0 0 12px;
}

.modal-content span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

/* Tugmalar */
.buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

button {
  padding: 6px 22px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.deny {
  background: #ddd;
  color: #222;
}

.allow {
  background: #fff;
  color: #1562ff;
  margin-right: 20px;
}
.allow h2 {
    color: #1562ff
}

button:hover {
  transform: scale(1.05);
}

/* Animatsiya */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
