/* Brand palette */
:root {
  --gsp-red: #E50914;    /* primary red */
  --gsp-black: #111111;  /* body and header base */
  --gsp-white: #FFFFFF;  /* surfaces and text on dark */
  --gsp-gray-100: #F5F6F7;
  --gsp-gray-300: #DADDE1;
  --gsp-gray-600: #737373;
  --gsp-focus: #FF3B3B;  /* focus ring derived from red */
}

/* Typography */
body {
  color: var(--gsp-black);
  background: var(--gsp-white);
  font-family: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gsp-black);
}

/* Links & accents */
a { color: var(--gsp-red); }
a:hover, a:focus { color: #B00710; text-decoration: none; }

/* Buttons */
.button, .btn-primary {
  background: var(--gsp-red);
  color: var(--gsp-white);
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
}
.button:hover, .btn-primary:hover { background: #C40812; }
.button:focus, .btn-primary:focus { outline: 2px solid var(--gsp-focus); outline-offset: 2px; }

/* Secondary button */
.btn-secondary {
  background: var(--gsp-white);
  color: var(--gsp-black);
  border: 1px solid var(--gsp-gray-300);
  border-radius: 6px;
}
.btn-secondary:hover { border-color: var(--gsp-black); }

/* Form fields */
input[type="text"], input[type="search"], input[type="email"], select {
  border: 1px solid var(--gsp-gray-300);
  border-radius: 8px;
  padding: 10px 12px;
}
input:focus, select:focus {
  border-color: var(--gsp-red);
  outline: 2px solid rgba(229, 9, 20, 0.15);
  outline-offset: 2px;
}

/* Badges & counts */
.badge {
  background: var(--gsp-red);
  color: var(--gsp-white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 6px;
}

/* Cards */
.gsp-card {
  background: var(--gsp-white);
  border: 1px solid var(--gsp-gray-300);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Utility */
.gsp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }