/* ============================================================
   PlayOn — Shared CSS (FC Hanley branded)
   Lives at: vacancies/playon/playon.css
   Works alongside: ../../css/styles.css
   ============================================================ */

/* ── Page body for PlayOn pages ─────────────────────────── */
body {
  padding-top: 68px; /* offset for fixed FC Hanley header */
}

/* ── PlayOn page hero ────────────────────────────────────── */
.playon-hero {
  background: var(--navy);
  padding: 4rem 2.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.playon-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,87,184,0.3) 0%, transparent 65%);
}

.playon-hero-content { position: relative; z-index: 1; }

.playon-hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 0.75rem;
}

.playon-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900; color: white; text-transform: uppercase;
  line-height: 0.95; margin-bottom: 0.75rem;
}

.playon-hero h1 span { color: var(--accent); display: block; }

.playon-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

.playon-logo-credit {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 6px 16px 6px 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
}

.playon-logo-credit img {
  height: 22px; width: auto;
  background: white; border-radius: 4px; padding: 2px 4px;
}

/* ── PlayOn section wrapper ──────────────────────────────── */
.playon-section {
  background: var(--off-white);
  padding: 3rem 2.5rem;
}

.playon-section-white {
  background: white;
  padding: 3rem 2.5rem;
}

.playon-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Feature cards (index page) ─────────────────────────── */
.playon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.playon-feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.playon-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: rgba(0,168,255,0.25);
}

.playon-feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.playon-feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; margin-bottom: 0.6rem;
}

.playon-feature-card p { color: #5C6E84; font-size: 0.9rem; line-height: 1.7; }

/* ── Vacancy tabs ────────────────────────────────────────── */
.vacancy-tabs {
  display: flex; gap: 10px;
  max-width: 1100px; margin: 2rem auto 0;
  padding: 0 2.5rem;
}

.tab-button {
  flex: 1; padding: 14px 24px;
  background: white; border: 2px solid rgba(0,0,0,0.1);
  border-radius: 10px; font-size: 1rem; font-weight: 600;
  color: #666; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'DM Sans', sans-serif;
}

.tab-button:hover { border-color: var(--accent); color: var(--accent); }

.tab-button.active {
  background: var(--blue-light); border-color: var(--blue-light); color: white;
}

.tab-button .count {
  background: rgba(0,0,0,0.1); padding: 2px 10px; border-radius: 12px; font-size: 0.85rem;
}

.tab-button.active .count { background: rgba(255,255,255,0.2); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Filters ─────────────────────────────────────────────── */
.filters {
  max-width: 1100px; margin: 1.5rem auto;
  padding: 1.5rem 2.5rem;
  background: white; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.filter-item { display: flex; flex-direction: column; gap: 5px; }

.filter-item label {
  font-weight: 600; color: var(--navy);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px;
}

.filter-item select {
  padding: 10px 14px; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif; background: white;
  color: var(--text); cursor: pointer; transition: border-color 0.2s;
}

.filter-item select:focus { outline: none; border-color: var(--accent); }

.clear-filters {
  margin-top: 1rem; padding: 10px 20px;
  background: var(--off-white); border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; color: #666; cursor: pointer;
  font-weight: 600; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  transition: all 0.2s;
}

.clear-filters:hover { background: white; border-color: var(--accent); color: var(--accent); }

/* ── Vacancy cards grid ──────────────────────────────────── */
.vacancies-grid {
  max-width: 1100px; margin: 1.5rem auto 3rem;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.vacancy-card {
  background: white; border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: rgba(0,168,255,0.2);
}

.club-logo-container {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 1rem; height: 70px;
  background: var(--off-white); border-radius: 8px; padding: 8px;
}

.club-logo { max-width: 100%; max-height: 70px; object-fit: contain; }

.vacancy-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; margin-bottom: 4px;
}

.vacancy-card .team-name { color: var(--blue-light); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }

.vacancy-details { margin: 0.75rem 0; color: #5C6E84; line-height: 1.7; font-size: 0.88rem; }
.vacancy-details p { margin: 6px 0; display: flex; align-items: center; gap: 8px; }
.vacancy-details .icon { min-width: 20px; font-size: 0.95rem; }

.contact-button {
  width: 100%; padding: 12px;
  background: var(--blue-light); color: white;
  border: none; border-radius: 8px;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  margin-top: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}

.contact-button:hover { background: var(--accent); }

.empty-state { text-align: center; padding: 3rem 1rem; color: #7A8EA8; grid-column: 1/-1; }
.empty-state h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; text-transform: uppercase; }

/* ── Contact manager overlay ─────────────────────────────── */
.contact-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 10000;
  justify-content: center; align-items: center;
  animation: fadeIn 0.3s;
}

.contact-overlay.active { display: flex; }

@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{transform:translateY(50px);opacity:0} to{transform:translateY(0);opacity:1} }

.contact-modal {
  background: white; border-radius: 16px; padding: 2rem;
  max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideUp 0.3s;
}

.contact-close {
  position: absolute; top: 15px; right: 15px;
  background: none; border: none; font-size: 1.75rem;
  color: #666; cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.2s;
}

.contact-close:hover { background: var(--off-white); color: var(--navy); }

.contact-modal h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; text-align: center; margin-bottom: 1.5rem;
}

.contact-info {
  background: var(--off-white); border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail strong { color: var(--navy); }
.contact-detail span { color: #5C6E84; }

.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-option-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem; border: 2px solid #ddd; border-radius: 12px;
  background: white; cursor: pointer; transition: all 0.3s;
  gap: 8px; min-height: 90px; font-family: 'DM Sans', sans-serif;
}

.contact-option-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.contact-option-btn.email { border-color: #3498db; color: #3498db; }
.contact-option-btn.email:hover { background: #3498db; color: white; }
.contact-option-btn.phone { border-color: var(--blue-light); color: var(--blue-light); }
.contact-option-btn.phone:hover { background: var(--blue-light); color: white; }
.contact-option-btn.sms { border-color: #9b59b6; color: #9b59b6; }
.contact-option-btn.sms:hover { background: #9b59b6; color: white; }
.contact-option-btn.whatsapp { border-color: #25D366; color: #25D366; }
.contact-option-btn.whatsapp:hover { background: #25D366; color: white; }
.contact-icon { font-size: 1.75rem; }
.contact-label { font-weight: 600; font-size: 0.88rem; text-align: center; }

/* ── Login popup ─────────────────────────────────────────── */
.login-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
  transition: opacity 0.3s; z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}

.login-overlay.active { opacity: 1; visibility: visible; }

.login-form-container {
  background: white; border-radius: 16px; padding: 2rem;
  max-width: 400px; width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  position: relative;
  transform: scale(0.95); transition: transform 0.3s;
}

.login-overlay.active .login-form-container { transform: scale(1); }

.login-logo { text-align: center; margin-bottom: 1.5rem; }

.login-logo-wrapper {
  display: inline-block; background: var(--off-white);
  border-radius: 12px; padding: 12px;
}

.login-logo-wrapper img { max-width: 80px; height: auto; display: block; }

.login-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 1.5rem;
  color: #7A8EA8; cursor: pointer; transition: color 0.2s;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
}

.login-close:hover { color: var(--navy); }

.login-form h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; text-align: center; margin-bottom: 1.5rem;
}

.login-form label {
  display: block; margin-top: 1rem; font-weight: 600;
  font-size: 0.85rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px;
}

.login-form input {
  width: 100%; padding: 10px 14px; margin-top: 6px;
  border-radius: 8px; border: 1px solid rgba(0,0,0,0.15);
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}

.login-form input:focus { outline: none; border-color: var(--accent); }

.login-form button[type="submit"] {
  margin-top: 1.5rem; width: 100%; padding: 12px;
  font-size: 0.95rem; background: var(--blue-light);
  color: white; border: none; border-radius: 8px;
  cursor: pointer; font-weight: 600; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.login-form button[type="submit"]:hover { background: var(--accent); }
.login-form button[type="submit"]:disabled { background: #ccc; cursor: not-allowed; }

.forgot-password { text-align: center; margin-top: 0.75rem; }
.forgot-password a { color: var(--blue-light); text-decoration: none; font-size: 0.85rem; }
.forgot-password a:hover { color: var(--accent); }

.login-message { margin-top: 0.75rem; text-align: center; font-size: 0.88rem; }
.login-message.success { color: #27ae60; }
.login-message.error { color: #e74c3c; }

.register-link {
  text-align: center; margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08); font-size: 0.88rem; color: #7A8EA8;
}

.register-link a { color: var(--navy); font-weight: 600; }
.register-link a:hover { color: var(--accent); }

/* ── Register form ───────────────────────────────────────── */
.playon-form-wrap {
  max-width: 600px; margin: 0 auto;
  background: white; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.playon-form-wrap label {
  display: block; margin-top: 1.25rem; font-weight: 600;
  font-size: 0.8rem; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px;
}

.playon-form-wrap input,
.playon-form-wrap select,
.playon-form-wrap textarea {
  width: 100%; padding: 10px 14px;
  border-radius: 8px; border: 1px solid rgba(0,0,0,0.15);
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif; color: var(--text);
  transition: border-color 0.2s; background: white;
}

.playon-form-wrap input:focus,
.playon-form-wrap select:focus,
.playon-form-wrap textarea:focus { outline: none; border-color: var(--accent); }

.playon-form-wrap button[type="submit"] {
  margin-top: 1.75rem; width: 100%; padding: 14px;
  font-size: 1rem; background: var(--blue-light);
  color: white; border: none; border-radius: 8px;
  cursor: pointer; font-weight: 600; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s; letter-spacing: 0.3px;
}

.playon-form-wrap button[type="submit"]:hover { background: var(--accent); }
.playon-form-wrap button[type="submit"]:disabled { background: #ccc; cursor: not-allowed; }

/* Role selection */
.role-selection {
  margin-top: 1.25rem; padding: 1.25rem;
  background: var(--off-white); border-radius: 10px;
}

.role-selection h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; margin-bottom: 1rem;
}

.role-options { display: flex; flex-direction: column; gap: 10px; }

.role-option {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px;
  background: white; border: 2px solid rgba(0,0,0,0.1); border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
}

.role-option:hover { border-color: var(--accent); }
.role-option.selected { border-color: var(--blue-light); background: rgba(0,120,215,0.04); }
.role-option input[type="radio"] { margin-top: 3px; cursor: pointer; }
.role-label { flex: 1; }
.role-label strong { display: block; color: var(--navy); margin-bottom: 2px; font-size: 0.92rem; }
.role-label span { font-size: 0.82rem; color: #7A8EA8; }

.conditional-fields {
  display: none; margin-top: 1.25rem; padding: 1.25rem;
  background: var(--off-white); border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.conditional-fields.active { display: block; }

.conditional-fields h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; margin-bottom: 1rem;
}

.form-section { margin-bottom: 1rem; }

.privacy-note {
  margin-top: 1.25rem; padding: 1rem; border-radius: 8px;
  background: var(--off-white); font-size: 0.82rem; color: #7A8EA8; text-align: center;
}

.privacy-note a { color: var(--blue-light); }

/* Register/form messages */
#registerMessage, #playerMessage, #coachMessage {
  margin-top: 0.75rem; text-align: center; font-size: 0.88rem; font-weight: 600;
}

/* ── About page cards ────────────────────────────────────── */
.about-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}

.about-card {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.about-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }

.about-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; margin-bottom: 0.75rem;
}

.about-card p { color: #5C6E84; font-size: 0.9rem; line-height: 1.72; margin-bottom: 1.25rem; }

/* ── Manager dashboard ───────────────────────────────────── */
.manager-hero {
  background: var(--navy); padding: 3rem 2.5rem 2rem; text-align: center;
}

.manager-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 900; color: white; text-transform: uppercase; margin-bottom: 0.5rem;
}

.manager-hero p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

.auth-warning {
  background: #fff9e6; border: 1px solid var(--gold);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  margin: 1.5rem auto; max-width: 1100px;
  text-align: center; color: #856404; font-size: 0.92rem;
}

.auth-warning a { color: var(--navy); font-weight: bold; text-decoration: underline; }

.current-vacancies { max-width: 1100px; margin: 1.5rem auto 3rem; padding: 0 2.5rem; }

.current-vacancies h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; text-align: center; margin-bottom: 1.25rem;
}

#playerVacanciesList, #coachVacanciesList {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem; padding: 1rem 0;
}

.delete-btn {
  width: 100%; padding: 11px; background: #dc3545;
  color: white; border: none; border-radius: 8px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; margin-top: 0.75rem; font-family: 'DM Sans', sans-serif;
}

.delete-btn:hover { background: #c82333; }

.no-vacancies {
  text-align: center;
  padding: 40px;
  color: #7A8EA8;
  font-style: italic;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #7A8EA8;
}

/* ── Contact page ────────────────────────────────────────── */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}

.contact-page-card {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}

.contact-page-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.contact-page-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: var(--off-white); border-radius: 8px;
  margin-bottom: 1rem; transition: transform 0.2s; text-decoration: none;
}

.contact-page-item:hover { transform: translateX(4px); }
.contact-page-item .cp-icon { font-size: 1.5rem; min-width: 40px; text-align: center; }
.contact-page-item h3 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.contact-page-item p { font-size: 0.85rem; color: #5C6E84; }
.contact-page-item a { color: var(--blue-light); font-size: 0.85rem; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form > div { display: flex; flex-direction: column; gap: 5px; }
.contact-form label { color: var(--navy); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form input, .contact-form textarea {
  padding: 10px 14px; border: 1px solid rgba(0,0,0,0.15); border-radius: 8px;
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif; transition: border-color 0.2s; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  padding: 12px; background: var(--blue-light); color: white;
  border: none; border-radius: 8px; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.contact-form button:hover { background: var(--accent); }

.faq-section { max-width: 1000px; margin: 2rem auto 0; }
.faq-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid rgba(0,0,0,0.06); }
.faq-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 1.5rem; }
.faq-item { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.faq-item p { color: #5C6E84; font-size: 0.88rem; line-height: 1.7; }

/* ── Privacy page ────────────────────────────────────────── */
.privacy-container {
  max-width: 900px; margin: 2rem auto;
  padding: 0 2.5rem 4rem;
}

.privacy-card {
  background: white; border-radius: 16px; padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}

.privacy-card h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--navy);
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.privacy-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; margin-top: 2rem; margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent);
}

.privacy-card p { color: #5C6E84; line-height: 1.75; margin-bottom: 1rem; font-size: 0.9rem; }
.privacy-card ul { margin-left: 1.5rem; margin-bottom: 1rem; color: #5C6E84; line-height: 1.75; font-size: 0.9rem; }
.privacy-card li { margin-bottom: 0.4rem; }

.last-updated {
  background: var(--off-white); padding: 0.75rem 1rem; border-radius: 8px;
  font-size: 0.82rem; color: #7A8EA8; margin-bottom: 1.5rem;
}

.privacy-contact-box {
  background: rgba(0,87,184,0.06); border: 1px solid rgba(0,120,215,0.15);
  border-radius: 12px; padding: 1.5rem; margin-top: 2rem;
}

.privacy-contact-box h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.privacy-contact-box p { font-size: 0.88rem; color: #5C6E84; margin: 3px 0; }

/* ── PlayOn footer credit ────────────────────────────────── */
.playon-footer-credit {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.07); margin-top: 1.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

.playon-footer-credit img {
  height: 20px; width: auto;
  background: white; border-radius: 4px; padding: 2px 6px; opacity: 0.6;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .vacancy-tabs { padding: 0 1.5rem; }
  .filters { padding: 1.25rem 1.5rem; }
  .vacancies-grid { padding: 0 1.5rem; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .vacancy-tabs { flex-direction: column; }
  .filter-grid { grid-template-columns: 1fr; }
  .vacancies-grid { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  #playerVacanciesList, #coachVacanciesList { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .playon-features { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .playon-form-wrap { padding: 1.5rem; }
  .vacancy-tabs { padding: 0 1rem; }
  .filters { padding: 1rem; }
  .vacancies-grid { padding: 0 1rem; }
  .current-vacancies { padding: 0 1rem; }
}

/* ── Feature card CTA link ───────────────────────────────── */
.playon-card-cta {
  margin-top: 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: color 0.2s;
}

.playon-feature-card:hover .playon-card-cta {
  color: var(--accent);
}