/* PR Play — الأساس المشترك: ألوان الهوية وإعادة الضبط (الخطوط بـ fonts.css) */

:root {
  /* هوية PR Per Hour */
  --navy: #1E3A8A;
  --navy-deep: #0F1F4D;
  --navy-ink: #0B1638;
  --gold: #D4900A;
  --gold-light: #FDF3E1;
  --gold-bright: #F2B233;
  --ink: #222222;
  --paper: #FFFFFF;

  --font: "IBM Plex Sans Arabic", system-ui, "Segoe UI", Tahoma, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 10px 30px rgb(11 22 56 / 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-block-size: 100dvh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, p, ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img, svg {
  display: block;
  max-inline-size: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-block-size: 3.25rem;
  padding-inline: var(--space-6);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.button:active {
  transform: scale(0.97);
}

.button--gold {
  color: var(--navy-ink);
  background: var(--gold);
  box-shadow: 0 6px 18px rgb(212 144 10 / 0.35);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
