@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: radial-gradient(circle at center, #1a1a1a 0%, #080808 100%);
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 650px;
  width: 100%;
  padding: 40px 20px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(10px);
}

.logo-box {
  margin-bottom: 25px;
}

.logo-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 5px 15px rgba(0,0,0,0.9));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(45deg, #d4af37, #f3e5ab);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #b3b3b3;
  margin-bottom: 30px;
}

.subtitle strong {
  background: linear-gradient(to right, #d4af37, #ffffff, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 1.1rem;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #d4af37;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.4rem;
  }
  .logo-img {
    max-width: 220px;
  }
}