:root {
  /* SalahScreen light theme */
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f0f4fa;
  --text: #0f172a;
  --muted: #5b677a;
  --accent: #1f6bff; /* bright SalahScreen blue */
  --button: #1161ff;
  --ring: rgba(31, 107, 255, 0.22);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: radial-gradient(120vw 80vh at 50% -10%, #e7f0ff, var(--bg));
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  display: grid;
  place-items: center;
  padding: 72px 16px 16px;
}
.logo-circle {
  border-radius: 16px;
  background: linear-gradient(180deg, #dbe9ff, #c6dbff);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(28, 85, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.logo-image {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 16px rgba(31, 107, 255, 0.3))
    drop-shadow(0 2px 8px rgba(31, 107, 255, 0.4))
    drop-shadow(0 0 32px rgba(31, 107, 255, 0.2));
}

.hero {
  text-align: center;
  padding: 0px 16px 24px;
}
.hero-title {
  margin: 8px auto 20px;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(48px, 7vw, 56px);
  color: #0b1220;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8),
    0 4px 8px rgba(31, 107, 255, 0.15), 0 8px 24px rgba(31, 107, 255, 0.1),
    0 16px 48px rgba(31, 107, 255, 0.08);
}

.salah-highlight {
  background: linear-gradient(135deg, white, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(31, 107, 255, 0.5),
    0 0 40px rgba(31, 107, 255, 0.3);
  filter: drop-shadow(0 2px 8px rgba(31, 107, 255, 0.4));
}

.store-badges {
  display: inline-flex;
  gap: clamp(14px, 2.5vw, 24px);
  align-items: center;
  margin: 6px 0 16px;
}
.store-badges .badge {
  display: inline-block;
  width: 150px;
  height: 50px;
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.store-badges .badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(31, 107, 255, 0.35));
}
.store-badges img {
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(31, 107, 255, 0.25));
}

.phones {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1200px) {
  .hero-title {
    font-size: clamp(48px, 7vw, 56px);
  }

  .logo-image {
    width: 72px;
    height: 72px;
  }

  .store-badges {
    margin: 40px 0 60px;
  }

  .site-footer {
    font-size: 12px;
  }

  .site-header {
    padding: 40px 20px 20px;
  }

  .hero {
    padding: 0px 20px 32px;
  }
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
  .site-header {
    padding-top: 72px;
  }

  .hero-title {
    font-size: 36px;
  }

  /* Mobile badge sizing now handled by responsive clamp() function */

  .phones {
    margin-top: 80px;
  }
}

.cards-image {
  max-width: 100%;
  max-height: 50vh;
  height: auto;
  width: auto;
  filter: drop-shadow(0 30px 80px rgba(31, 107, 255, 0.25));
}

.site-footer {
  padding: 60px 20px 30px;
  color: #5b677a;
  font-size: clamp(10px, 1.5vw, 14px);
}
.site-footer .container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer a {
  color: #3b73ff;
  text-decoration: none;
  margin-left: 20px;
}
.site-footer a:hover {
  color: #1f6bff;
}
