/* =========================================================
   Play Picks — Bold Sport Modern
   Action / shooter / sniper focused
   ========================================================= */

:root {
  --bg: #0c0d10;
  --surface: #15171b;
  --surface-hover: #1c1f24;
  --border: #2b2f37;
  --border-hover: #3a3d44;
  --text: #f1f3f5;
  --muted: #9aa0a8;
  --accent: #ff6a1a;
  --accent-dark: #0c0d10;

  --radius-card: 12px;
  --radius-input: 8px;
  --radius-sharp: 4px;

  --display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: min(1240px, 92%);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--accent); }

p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--text);
  margin: 0 0 .4em;
  line-height: 1.05;
  font-weight: 800;
}

button { font-family: inherit; }

::selection { background: var(--accent); color: var(--accent-dark); }

.container { width: var(--container); margin-inline: auto; }

/* Hidden utility for cookie banner */
.hidden { display: none !important; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  flex: 1 1 320px;
}
.cookie-banner a { color: var(--accent); }
.cookie-banner a:hover { text-decoration: underline; }
#cookieAccept {
  appearance: none;
  border: 0;
  background: var(--accent);
  color: var(--accent-dark);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: transform .2s var(--ease), filter .2s var(--ease);
}
#cookieAccept:hover { transform: scale(1.02); filter: brightness(1.08); }

/* ---------- Header ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(12, 13, 16, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.site-logo a {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.site-logo a:hover { color: var(--accent); }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 120px);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1040px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(54px, 9vw, 110px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  animation: rise .8s var(--ease) both;
}
.hero p {
  font-family: var(--body);
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  animation: rise .8s var(--ease) .12s both;
}

/* ---------- Section base ---------- */
section { padding: clamp(70px, 10vw, 120px) 0; }
section + section { border-top: 1px solid var(--border); }

section > .container > h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
section > .container > h2 + p {
  font-family: var(--body);
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 0 48px;
}

/* ---------- Cards (shared) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* ---------- Games catalog ---------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.game-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.game-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.game-title-block { min-width: 0; }
.card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 4px;
  text-transform: none;
  letter-spacing: 0;
}
.developer {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-dark);
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--radius-sharp);
  margin-bottom: 14px;
}

.game-desc {
  font-family: var(--body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.shots img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-dark);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  border-radius: var(--radius-input);
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), filter .2s var(--ease);
}
.btn:hover {
  transform: scale(1.01);
  filter: brightness(1.08);
  color: var(--accent-dark);
}
.btn-block { display: block; width: 100%; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.review-card p {
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 18px;
}
.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.review-meta {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color .2s var(--ease);
}
.faq-item > summary:hover { color: var(--accent); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  font-family: var(--body);
  font-weight: 400;
  font-size: 24px;
  color: var(--muted);
  transition: transform .25s var(--ease), color .2s var(--ease);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] > summary::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-item p {
  font-family: var(--body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 4px;
  max-width: 760px;
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 60px;
  align-items: start;
}
.about-inner h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  position: sticky;
  top: 100px;
}
.about-inner p {
  font-family: var(--body);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}
.about-inner p:last-child { margin-bottom: 0; }

/* ---------- Subscribe ---------- */
.subscribe-inner {
  max-width: 720px;
}
.subscribe-inner .card { padding: 36px; }
.form-head { margin-bottom: 26px; }
.form-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.form-head p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field input::placeholder { color: #555a64; }
.field input:focus { border-color: var(--accent); }

.form-agree label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  flex-direction: row;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  margin: 0;
}
.form-agree input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-agree input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-agree input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--accent-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-agree a { color: var(--accent); }
.form-agree a:hover { text-decoration: underline; }

#subscribeForm .btn { margin-top: 8px; }

.success-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 106, 26, 0.08);
  border: 1px solid var(--accent);
  border-radius: var(--radius-input);
  color: var(--text);
  font-size: 14px;
}
.success-msg.show { display: block; }

/* ---------- Footer ---------- */
footer {
  background: #08090b;
  position: relative;
  padding: 50px 0 40px;
  border-top: 3px solid var(--accent);
  margin-top: 0;
}
footer .container { text-align: left; }
footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
footer a:hover { color: var(--accent); }
footer p {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
}
footer p:last-child { margin-bottom: 0; }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card { animation: rise .6s var(--ease) both; }
.catalog-grid .card:nth-child(2) { animation-delay: .06s; }
.catalog-grid .card:nth-child(3) { animation-delay: .12s; }
.catalog-grid .card:nth-child(4) { animation-delay: .18s; }
.reviews-grid .card:nth-child(2) { animation-delay: .06s; }
.reviews-grid .card:nth-child(3) { animation-delay: .12s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-inner h2 { position: static; }

  .nav-links { gap: 18px; }
  .nav-inner { padding: 16px 0; }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-links a { font-size: 13px; }

  .catalog-grid,
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  :root { --container: 92%; }

  body { font-size: 15px; }

  .hero { padding: 70px 0 50px; }
  .hero p { font-size: 16px; }

  section { padding: 60px 0; }

  .card { padding: 20px; }
  .subscribe-inner .card { padding: 22px; }

  .game-icon { width: 48px; height: 48px; }
  .card h3 { font-size: 18px; }

  .faq-item > summary { font-size: 18px; }
  .faq-item > summary::after { font-size: 22px; }

  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .cookie-inner { gap: 12px; }
  #cookieAccept { padding: 10px 18px; }

  footer ul { gap: 14px; }
}

/* ----- legal pages ----- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 40px;
}
.legal-content h1 {
  font-family: var(--font-display, "Archivo", sans-serif);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--text, #f1f3f5);
}
.legal-content h2 {
  font-family: var(--font-display, "Archivo", sans-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  margin: 40px 0 14px;
  color: var(--text, #f1f3f5);
}
.legal-content h3 {
  font-family: var(--font-display, "Archivo", sans-serif);
  font-weight: 700;
  font-size: 20px;
  margin: 28px 0 10px;
}
.legal-content p,
.legal-content li {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted, #9aa0a8);
}
.legal-content p { margin: 0 0 16px; }
.legal-content ul,
.legal-content ol { padding-left: 22px; margin: 0 0 18px; }
.legal-content li { margin: 0 0 8px; list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--accent, #ff6a1a); text-decoration: underline; }
.legal-content a:hover { filter: brightness(1.1); }
