body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #f6f8ff 0%, #e9f0ff 100%);
  color: #1a365d;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.1),
    0 1px 8px rgba(0,0,0,0.02);
  padding: 35px 25px 45px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.logo {
  width: 120px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.company-name {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0 5px;
  background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-name-en {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.description {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.6;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: block;
  background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 100%);
  color: #fff;
  text-decoration: none;
  padding: 16px;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #2a4a7f 0%, #3a5a9f 100%);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.social-icons img:hover {
  transform: scale(1.2) rotate(5deg);
  filter: grayscale(0%);
}

footer {
  margin-top: 35px;
  font-size: 13px;
  color: #718096;
  opacity: 0.9;
}

/* Add smooth animations for page load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  animation: fadeIn 0.6s ease-out;
}
