/* One stylesheet for the three pages. The palette is the game's: navy ground,
   gold accent, white text, and the same hard diagonal the menus use. */

:root {
  --ink: #060a14;
  --panel: #101731;
  --gold: #ffd45a;
  --blue: #4a7cf0;
  --red: #f0484f;
  --text: #f4f6fb;
  --dim: rgba(244, 246, 251, 0.62);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Rubik, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

/* The diagonal band behind the header, the same shape as the menus. */
.hero {
  position: relative;
  padding: 72px 24px 56px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, #26325e 0%, var(--ink) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% 18%;
  height: 160px;
  background: linear-gradient(90deg, rgba(255, 201, 60, 0.55), rgba(255, 201, 60, 0));
  transform: rotate(-9deg);
  filter: blur(26px);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.icon {
  width: 132px;
  height: 132px;
  border-radius: 29%;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
  display: block;
  margin: 0 auto 18px;
}

h1 {
  font-size: clamp(34px, 7vw, 56px);
  margin: 0 0 6px;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, var(--gold), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline { color: var(--dim); margin: 0 0 8px; font-size: clamp(15px, 2.6vw, 19px); }

.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0b0f1d;
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 700;
}

main { max-width: 860px; margin: 0 auto; padding: 44px 22px 90px; }

section { margin-bottom: 46px; }

h2 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--gold);
  border-bottom: 2px solid rgba(255, 212, 90, 0.25);
  padding-bottom: 8px;
}

h3 { font-size: 17px; margin: 22px 0 6px; }

p, li { color: rgba(244, 246, 251, 0.88); }

a { color: var(--gold); }

ul { padding-inline-start: 22px; }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.shots img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 18px 20px;
}

.rtl { direction: rtl; text-align: right; }
.ltr { direction: ltr; text-align: left; }

.meta { color: var(--dim); font-size: 14px; }

nav.links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
nav.links a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}
nav.links a:hover { border-color: var(--gold); color: var(--gold); }

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 22px 48px;
  text-align: center;
  color: var(--dim);
  font-size: 13px;
}
footer a { color: var(--dim); }
