/* Custom CSS */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #231f20;
}

button {
  transition: all 0.3s ease;
}

button:active {
  transform: scale(0.98);
}

.color-link {
  color: #007AFF;
}

/* Language pill switcher */
.lang-pill {
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  border: 1.5px solid #007AFF;
  color: #007AFF;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-pill:hover {
  background: #e8f1ff;
}

.lang-pill.active {
  background: #007AFF;
  color: #ffffff;
}

/* RTL support for Arabic */
#lang-content[dir="rtl"] {
  text-align: right;
}

/* Feature screenshot placeholder */
.feature-placeholder {
  height: 16rem;
  background: #f3f4f6;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

/* Secondary feature cards (Tier 2 grid) */
.feature-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.feature-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: #e8f1ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007AFF;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}