* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Reem Kufi', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, #0e1a2b 0%, #050914 100%);
}

.container {
  text-align: center;
  z-index: 3;
}

/* Title Flicker */
.title-flicker {
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
  animation: neonFlicker 3s infinite;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 15px rgba(0, 200, 255, 0.5); }
  50% { opacity: 0.85; text-shadow: 0 0 5px rgba(0, 200, 255, 0.2); }
}

/* Tagline */
.tagline {
  margin-bottom: 35px;
  font-size: 1.1rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* Login Button with Ripple */
.login-btn {
  padding: 12px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #00b4ff;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 180, 255, 0.4);
  transition: transform 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
}

.login-btn:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(1);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.login-btn:hover:after {
  transform: scale(20);
  opacity: 0;
}

/* Footer */
.footer-text {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Floating Arabic Words */
.floating-word {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.12;
  user-select: none;
  z-index: 1;
  animation-duration: 14s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.floating-word:nth-of-type(4n + 1) { animation-name: drift1; }
.floating-word:nth-of-type(4n + 2) { animation-name: drift2; }
.floating-word:nth-of-type(4n + 3) { animation-name: drift3; }
.floating-word:nth-of-type(4n + 4) { animation-name: drift4; }


@keyframes drift1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -25px) rotate(6deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, 30px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, 20px) rotate(4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -15px) rotate(-6deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Glow Orbs */
.glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
}


.glow.one {
  background: #1e90ff;
  top: 10%;
  left: 20%;
}

.glow.two {
  background: #11ffee;
  bottom: 15%;
  right: 20%;
}


