@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a url('./background.jpg') center/cover no-repeat;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.message {
  font-size: 1.25rem;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6b7280, transparent);
  margin: 2rem auto;
}

.footer-text {
  font-size: 0.875rem;
  color: #6b7280;
}
