body, html {

  margin: 0;

  padding: 0;

  height: 100%;

  width: 100%;

  background-color: #000;

  overflow: hidden;

  font-family: 'Courier New', Courier, monospace;

  color: white;

}



.page {

  width: 100%;

  height: 100vh;

  display: none;

  justify-content: center;

  align-items: center;

  flex-direction: column;

}

.active { display: flex; }



/* المطر */

.raindrop {

  position: fixed;

  top: -10px;

  width: 3px;

  height: 15px;

  background: rgba(173, 216, 230, 0.7);

  animation: fall linear;

}

@keyframes fall {

  to { transform: translateY(100vh); opacity: 0; }

}



/* القطرة الحمراء */

.blooddrop {

  position: fixed;

  top: -10px;

  width: 12px;

  height: 25px;

  background: red;

  border-radius: 50%;

  animation: fall linear;

  cursor: pointer;

  box-shadow: 0 0 8px #ff0000;

}



/* القلب النازف */

.heart {

  width: 100px;

  height: 100px;

  position: relative;

  cursor: pointer;

}

.heart svg {

  width: 100%;

  height: 100%;

  fill: red;

  filter: drop-shadow(0 0 5px #660000);

}

.heart::after {

  content: '';

  position: absolute;

  top: 50%;

  left: 50%;

  width: 6px;

  height: 40px;

  background: red;

  animation: drip 1.5s infinite;

}

@keyframes drip {

  0% { transform: translate(-50%,0); opacity:1; }

  100% { transform: translate(-50%,60px); opacity:0; }

}



/* كلمة Oh متكسرة */

.broken-oh {

  font-size: 120px;

  color: white;

  text-shadow: 2px 2px 5px #444, -2px -2px 5px #222;

  transform: rotate(-5deg);

  position: relative;

}

.broken-oh::before {

  content: 'Oh';

  position: absolute;

  left: 2px;

  top: 2px;

  color: #ff0000;

  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);

}

.broken-oh::after {

  content: 'Oh';

  position: absolute;

  left: -2px;

  top: -2px;

  color: #666;

  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);

}

#heartGif {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}