:root { 
  --neon-pink: #FFD700;
  --neon-purple: #4682B4;
  --light-text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top, #1b2a4e, #000014 80%);
  color: white;
  overflow-x: hidden;
}

[dir="rtl"] * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
}

.crescent {
  position: absolute;
  top: -200px;            
  right: 12%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: -30px 0 0 0 var(--neon-pink);
  opacity: 0.65;
  filter: blur(1px);
  animation: crescentLoop 18s linear infinite;
}

.star {
  position: absolute;
  background: var(--neon-purple);
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%,
    79% 91%, 50% 70%, 21% 91%, 32% 57%,
    2% 35%, 39% 35%
  );
  box-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-purple);
  animation: twinkle 4s infinite ease-in-out;
}

.star-1 { width: 40px; height: 40px; top: 15%; left: 20%; }
.star-2 { width: 30px; height: 30px; top: 35%; right: 25%; animation-delay: 1s; }
.star-3 { width: 25px; height: 25px; bottom: 20%; left: 30%; animation-delay: 2s; }
.star-4 { width: 20px; height: 20px; top: 60%; right: 15%; animation-delay: 3s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 2s ease forwards;
}

h2 {
  font-size: 1.6em;
  margin-bottom: 0.4em;
  color: #fce4ff;
}

h1 {
  font-size: 3em;
  background: linear-gradient(to right, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location {
  margin-top: 0.3em;
  color: #ccc;
}

.logo-top-center {
  max-width: 400px;
  margin-bottom: 20px;
}

.logo-center {
  width: 80px;
  margin: 2rem auto 1rem;
}

.cta-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.logo-center {
  width: 80px;
  margin: 0;
}


.button {
  margin-top: 1rem;
  padding: 12px 30px;
  background: var(--neon-pink);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 10px var(--neon-pink);
  transition: transform 0.3s;
}

.button:hover {
  transform: translateY(-5px);
}

.footer {
  text-align: center;
  padding: 3rem 10%;
  background: rgba(0,0,0,0.3);
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.tuniar-logo {
  height: 20px;
}

.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.lang-btn {
  padding: 8px 15px;
  border-radius: 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--neon-pink);
  color: white;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--neon-pink);
}

@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes crescentLoop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(140vh); 
    opacity: 0;
  }
}
