body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#souriana-app-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #f0f4f8 0%, #e1e8ed 100%);
  z-index: 2147483647;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  box-sizing: border-box;
}

.souriana-pro-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 420px;
  width: 90%;
  transform: translateY(20px);
  opacity: 0;
  animation: floatUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.app-logo {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
  object-fit: cover;
}

.brand-title {
  color: #1e293b;
  margin: 0 0 8px 0;
  font-size: 26px;
  font-weight: 800;
}

.desc {
  color: #475569;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.desktop-badge {
  background: #fef3c7;
  color: #d97706;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

.action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: white !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.android-btn {
  background: #10b981;
  margin-bottom: 12px;
}

.ios-btn {
  background: #0f172a;
}

.store-icon {
  width: 22px;
  height: 22px;
}

.store-buttons-container {
  padding: 0 10px;
}

.noscript-warning {
  color: #ef4444;
  font-size: 14px;
  margin-top: 15px;
  font-weight: bold;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94a3b8;
  margin: 20px 0;
  font-size: 13px;
  font-weight: 500;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.separator:not(:empty)::before {
  margin-left: 0.75em;
}

.separator:not(:empty)::after {
  margin-right: 0.75em;
}

.direct-btn {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  margin-top: 12px;
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  margin-top: 12px;
}
