body {
  margin: 0;
  background: radial-gradient(#2c0038, #120015);
  color: #eee;
  text-align: center;
  overflow-x: hidden;
  font-family: 'Amiri', serif;
}

/* شاشة الباسورد */
#login {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login-box {
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, button {
  padding: 12px;
  border-radius: 12px;
  border: none;
  width: 220px;
}

button {
  background: #7a2a91;
  color: white;
}

/* القلوب */
.hearts span {
  position: fixed;
  bottom: -20px;
  animation: float 8s linear infinite;
}

@keyframes float {
  to {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

/* المحتوى */
.hidden { display: none; }

#content {
  animation: contentSlide 2s ease forwards;
}

@keyframes contentSlide {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* صورة العيون */
.eyes {
  width: 70%;
  max-width: 300px;
  margin-top: 30px;
  animation: showEyes 2s forwards;
}

@keyframes showEyes {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* العداد */
#timer {
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

#days {
  font-size: 36px;
  font-weight: 600;
}

#time {
  font-size: 18px;
  color: #cfa9ff;
}

/* النص */
#text {
  font-size: 21px;
  line-height: 2;
  margin-top: 25px;
  white-space: pre-line;
}

/* التوقيع */
.signature {
  margin-top: 30px;
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: #e6c8ff;
}

.emoji {
  width: 28px;
  vertical-align: middle;
}

/* زر الوردة */
.rose-box {
  margin-top: 25px;
}

.rose-btn {
  font-size: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  animation: pulse 1.8s infinite;
}

.rose-text {
  margin-top: 6px;
  font-size: 14px;
  color: #e6c8ff;
}

/* نبض الوردة */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* لمعة الوردة */
.sparkle::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 40%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* البلاير */
.player {
  margin-top: 20px;
}

.player iframe {
  width: 90%;
  max-width: 320px;
  height: 180px;
  border-radius: 12px;
  border: none;
}