/* ===== Global Soccer Pathways — Fun, Energetic Design ===== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

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

:root {
    /* Dark Navy + Gold — matches landing page */
    --navy: #0a1628;
    --navy-light: #162848;
    --navy-mid: #0f2040;
    --navy-card: #111f38;
    --navy-card2: #0d1a30;
    --primary: #f9a825;
    --primary-hover: #e08a00;
    --primary-light: rgba(249,168,37,0.12);
    --accent: #ffd54f;
    --accent-dark: #f9a825;
    --green: #26d07c;
    --green-light: rgba(38,208,124,0.12);
    --orange: #f9a825;
    --orange-dark: #e08a00;
    --red: #ff6b6b;
    --pink: #f48fb1;
    --yellow: #ffd54f;
    --bg: #0a1628;
    --bg-card: #111f38;
    --bg-alt: #0f2040;
    --text: #ffffff;
    --text-secondary: #8fa8c8;
    --text-muted: #6a85a4;
    --border: rgba(249,168,37,0.18);
    --border-light: rgba(249,168,37,0.09);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 24px rgba(249,168,37,0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f9a825, #ffd54f);
    --gradient-accent: linear-gradient(135deg, #f9a825, #e08a00);
    --gradient-warm: linear-gradient(135deg, #f9a825, #e65100);
    --gradient-fun: linear-gradient(135deg, #ffd54f, #f9a825);
    --gradient-bg: linear-gradient(180deg, #0a1628 0%, #0d1e35 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0f2040 50%, #162848 100%);
    /* Typography scale */
    --text-xs: 0.7rem;
    --text-sm: 0.82rem;
    --text-base: 0.95rem;
    --text-md: 1.05rem;
    --text-lg: 1.2rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.9rem;
    --text-3xl: 2.5rem;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===== Fun Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes confettiBurst {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.5) rotate(15deg); }
}
.animate-in { animation: fadeInUp 0.5s var(--transition) both; }
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-bounce { animation: bounceIn 0.6s both; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* ===== Header — Gradient Nav Bar ===== */
.header {
    background: var(--gradient-hero);
    color: white;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(45,127,249,0.3);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.tagline {
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.header-stats {
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== Progress Bar ===== */
.progress-container {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 0 2rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    z-index: 2;
}

.step span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.step.active span, .step.completed span { color: var(--primary); }

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
}

.step.active .step-circle {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(0,115,230,0.15);
}

.step.completed .step-circle {
    background: var(--accent);
    color: white;
}

.progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    width: 20%;
    transition: width 0.5s ease;
}

/* ===== Main Layout ===== */
.main-content {
    max-width: 1280px;
    margin: 24px auto;
    padding: 0 2rem;
}

.form-section {
    display: none;
    animation: fadeSlide 0.35s ease;
}
.form-section.active { display: block; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.4px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== Form Elements ===== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text);
}

.required { color: var(--red); }

.help-text {
    font-size: 0.7rem;
    color: var(--text-muted);
}

input, select, textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-card);
    color: var(--text);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,115,230,0.1);
}

input::placeholder { color: #c0c7d0; }
textarea { resize: vertical; }

/* A11y pass 2026-04-18 — keyboard users need a visible focus ring on
   every interactive control. :focus-visible hides the ring for mouse
   clicks but shows it for Tab / shift-Tab / Enter-triggered focus. */
button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary, #f9a825);
    outline-offset: 2px;
    border-radius: 6px;
}
/* Skip-link shows only when focused (Tab from address bar). */
.gsp-skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 100001;
    background: var(--primary, #f9a825);
    color: #000;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}
.gsp-skip-link:focus { left: 8px; }

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.checkbox-label:hover { border-color: var(--primary); background: var(--primary-light); }
.checkbox-label input[type="checkbox"] { accent-color: var(--primary); }

/* ===== Buttons ===== */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(45,127,249,0.3);
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,127,249,0.4);
    filter: brightness(1.05);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}
.btn-outline:hover { background: var(--primary-light); }

.btn-find {
    font-size: 1.05rem;
    padding: 14px 36px;
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(0,200,83,0.3);
}
.btn-find:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,200,83,0.4);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.75rem;
    background: var(--navy-light);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition);
}
.btn-sm:hover { background: var(--navy); }

.btn-outreach {
    background: none;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.btn-outreach:hover { background: var(--primary); color: white; }

/* ===== Results Filters ===== */
.results-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.filter-group select {
    padding: 5px 8px;
    font-size: 0.8rem;
    border-width: 1px;
}

/* ===== Results Summary ===== */
.results-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.summary-card {
    background: var(--bg-card);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
}
.summary-card .number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.summary-card .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* ===== School Card ===== */
.school-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--bounce);
    border: 2px solid var(--border-light);
    cursor: pointer;
    animation: fadeInUp 0.4s ease both;
}
.school-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(45,127,249,0.15);
    border-color: var(--primary);
}

.card-header {
    padding: 16px 20px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.card-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.division-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.division-badge.D1 { background: #dbeafe; color: #1e40af; }
.division-badge.D2 { background: #d1fae5; color: #065f46; }
.division-badge.D3 { background: #ede9fe; color: #5b21b6; }
.division-badge.NAIA { background: #fef3c7; color: #92400e; }
.division-badge.NJCAA { background: #fce7f3; color: #9d174d; }

.card-location {
    padding: 0 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-details {
    padding: 12px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.detail-item { display: flex; flex-direction: column; }
.detail-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}
.detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.card-coach-row {
    padding: 6px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.card-coach-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
}
.card-coach-count.pending {
    color: #d97706;
}
.card-recruit-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #7c3aed;
    background: #f3e8ff;
    padding: 2px 8px;
    border-radius: 10px;
}
.card-view-details {
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    border-top: 1px dashed var(--border-light);
}
.school-card:hover .card-view-details {
    color: #fff;
    background: var(--primary);
}

.coach-email-pending {
    color: #d97706 !important;
    font-style: italic;
    font-size: 0.78rem;
}

.coach-program-section {
    margin-bottom: 16px;
}
.coach-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin: 12px 0 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--border-light);
}

.card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.match-bar {
    width: 70px;
    height: 6px;
    background: #eef2f6;
    border-radius: 3px;
    overflow: hidden;
}
.match-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.match-label {
    font-size: 0.7rem;
    font-weight: 700;
}
.match-label.excellent { color: var(--accent-dark); }
.match-label.good { color: var(--primary); }
.match-label.fair { color: var(--orange); }
.match-label.low { color: var(--text-muted); }

.card-tags {
    padding: 6px 20px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.tag {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    background: var(--bg);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tag.match { background: #d1fae5; color: #065f46; border-color: #a7f3d0; }
.tag.warning { background: #fef3c7; color: #92400e; border-color: #fde68a; }

/* ===== Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,27,45,0.6);
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: min(720px, calc(100vw - 40px));
    width: 100%;
    box-shadow: var(--shadow-xl);
    padding: 32px;
    position: relative;
    margin: auto 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.modal > *, .modal-content > * { max-width: 100%; }
.modal img, .modal video, .modal iframe { max-width: 100%; height: auto; }
.modal table { max-width: 100%; display: block; overflow-x: auto; }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
}
.modal-close:hover { background: var(--border); }

.modal h2 {
    font-size: 1.4rem;
    color: var(--text);
    padding-right: 40px;
}
.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.modal-section { margin-bottom: 24px; }
.modal-section h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--bg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.modal-stat { display: flex; flex-direction: column; }
.modal-stat .label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.modal-stat .value {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Scholarship cards in modal — dark-theme readable */
.modal-schol-badge {
    display: inline-block;
    background: rgba(249,168,37,0.18);
    color: #ffd54f;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 8px;
    border: 1px solid rgba(249,168,37,0.35);
}
.modal-schol-card {
    background: linear-gradient(135deg, #0a1628 0%, #111f38 100%);
    border: 1px solid rgba(249,168,37,0.22);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #ffffff;
}
.modal-schol-card:hover { border-color: rgba(249,168,37,0.55); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.modal-schol-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}
.modal-schol-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    flex: 1;
    line-height: 1.3;
}
.modal-schol-amount {
    font-size: 0.9rem;
    font-weight: 800;
    color: #f9a825;
    white-space: nowrap;
}
.modal-schol-criteria {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin-bottom: 12px;
}
.modal-schol-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.modal-schol-deadline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}
.modal-schol-apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f9a825, #e6951e);
    color: #0a1628;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249,168,37,0.28);
}
.modal-schol-apply-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.modal-schol-disclaimer {
    background: rgba(249,168,37,0.10);
    border: 1px solid rgba(249,168,37,0.35);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.82rem;
    color: #ffd54f;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.55;
}
.modal-schol-state-tag {
    display: inline-block;
    background: rgba(249,168,37,0.14);
    color: #ffd54f;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 6px;
}

.majors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.major-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}
.major-tag.available {
    background: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
    font-weight: 700;
}

.match-breakdown { display: flex; flex-direction: column; gap: 8px; }
.match-row { display: flex; align-items: center; gap: 10px; }
.match-row-label { font-size: 0.75rem; font-weight: 600; width: 110px; flex-shrink: 0; }
.match-row-bar { flex: 1; height: 8px; background: #eef2f6; border-radius: 4px; overflow: hidden; }
.match-row-fill { height: 100%; border-radius: 4px; }
.match-row-score { font-size: 0.75rem; font-weight: 700; width: 40px; text-align: right; color: var(--text-secondary); }

/* ===== Coach Cards ===== */
.coaches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.coach-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.coach-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.coach-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.coach-info strong { font-size: 0.9rem; color: var(--text); }
.coach-title { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }
.coach-contact {
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
}
.coach-contact:hover { text-decoration: underline; }

/* ===== Email Compose ===== */
.compose-form { margin-top: 20px; }
.compose-field { margin-bottom: 16px; }
.compose-field > label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.compose-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
}
.compose-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,115,230,0.1); }

.compose-textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: inherit;
    line-height: 1.6;
    resize: vertical;
}
.compose-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,115,230,0.1); }

.compose-recipients {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.recipient-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
}
.recipient-chip small { opacity: 0.7; margin: 0 4px; }

.compose-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.attachment-area { margin-top: 4px; }
.attach-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.attach-btn:hover { border-color: var(--primary); color: var(--primary); }

.attachment-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
    margin-right: 6px;
}

/* ===== Outreach Dashboard ===== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.dash-stat {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
}
.dash-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.dash-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 4px;
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.campaign-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}
.campaign-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}
.campaign-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.campaign-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.campaign-status {
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.campaign-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1px;
    background: var(--border-light);
}
.metric {
    background: var(--bg-card);
    padding: 14px 16px;
    text-align: center;
}
.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}
.metric-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.recipient-tracking {
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
}
.recipient-tracking h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 10px;
}

.tracking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}
.tracking-table th {
    text-align: left;
    padding: 8px 10px;
    background: var(--bg);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}
.tracking-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}
.tracking-table td small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}
.tracking-table tr:last-child td { border-bottom: none; }

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 24px 20px;
    color: var(--text-muted);
    font-size: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 32px;
}
.disclaimer {
    font-size: 0.65rem;
    margin-top: 4px;
    font-style: italic;
}

/* ===== Spinner ===== */
.spinner {
    width: 44px;
    height: 44px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.no-results {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}
.no-results h3 { margin-bottom: 8px; color: var(--text-secondary); font-size: 1.2rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .header { padding: 0 16px; }
    .header-content { flex-direction: row; }
    .form-grid { grid-template-columns: 1fr; padding: 20px; }
    .results-grid { grid-template-columns: 1fr; }
    .results-filters { flex-direction: column; align-items: stretch; }
    .progress-steps { gap: 0; }
    .step span { font-size: 0.55rem; }
    .modal { padding: 20px; }
    .modal-grid { grid-template-columns: 1fr; }
    .main-content { padding: 0 16px; }
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .campaign-metrics { grid-template-columns: repeat(2, 1fr); }
    .tracking-table { font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .logo h1 { font-size: 1rem; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; justify-content: center; }
    .card-details { grid-template-columns: 1fr; }
    .results-summary { grid-template-columns: 1fr 1fr; }
    .dashboard-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== Mode Selector ===== */
.mode-selector {
    max-width: 1280px;
    margin: 16px auto 0;
    padding: 0 2rem;
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mode-btn {
    padding: 10px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    background: transparent;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.mode-btn.active {
    background: var(--navy);
    color: white;
    box-shadow: 0 2px 8px rgba(15,27,45,0.3);
}

.mode-btn:hover:not(.active) {
    background: var(--bg);
    color: var(--text);
}

/* ===== International Eligibility ===== */
.intl-eligibility-section {
    grid-column: 1 / -1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 8px;
}

.intl-eligibility-section h4 {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 4px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 400 !important;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.checklist-item:hover {
    border-color: var(--primary);
}

.checklist-item input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.international-fields {
    grid-column: 1 / -1;
}

/* ===== NCAA Recruiting Calendar ===== */
.recruiting-calendar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-header:hover {
    background: var(--bg);
}

.calendar-header h3 {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

.calendar-toggle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-content {
    border-top: 1px solid var(--border);
}

.calendar-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0 8px;
}

.cal-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    font-family: inherit;
}

.cal-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.cal-tab:hover:not(.active) {
    color: var(--text);
}

.cal-division {
    padding: 20px;
}

.cal-division h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.cal-scholarships {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 14px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.cal-rules {
    margin-bottom: 16px;
}

.cal-rules h5, .cal-tips h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.cal-rule-row {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.cal-period {
    font-weight: 700;
    color: var(--text);
    min-width: 200px;
    flex-shrink: 0;
}

.cal-rule {
    color: var(--text-secondary);
}

.cal-tips ul {
    list-style: none;
    padding: 0;
}

.cal-tips li {
    padding: 6px 0 6px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
}

.cal-tips li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== Transfer Portal Styles ===== */
.transfer-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -28px -28px 20px -28px;
}

.transfer-header h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.transfer-header p {
    font-size: 0.8rem;
    opacity: 0.85;
}

.stats-input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.stat-input-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-input-group label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.stat-input-group input {
    padding: 8px 10px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

/* ===== Video Timestamps ===== */
.timestamp-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.timestamp-row input {
    font-size: 0.85rem !important;
}

/* ===== Player Profile Card ===== */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: white;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.3);
}

.profile-title h2 {
    font-size: 1.5rem;
    margin-bottom: 2px;
    color: white;
}

.profile-position {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-light, #86efac);
}

.profile-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 2px;
}

.profile-badge {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.5;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    border-bottom: 1px solid var(--border);
}

.profile-stat {
    padding: 16px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.profile-stat:last-child {
    border-right: none;
}

.profile-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.profile-stat-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-top: 2px;
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.profile-detail-section {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.profile-detail-section:nth-child(odd) {
    border-right: 1px solid var(--border-light);
}

.profile-detail-section h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-detail-section p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 4px 0;
}

.profile-detail-section p strong {
    color: var(--text);
}

.profile-video-section {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.profile-video-section h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-video-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.profile-video-link:hover {
    text-decoration: underline;
}

.profile-timestamps {
    margin-top: 12px;
    background: var(--bg);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.profile-timestamps h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.timestamp-entry {
    font-size: 0.8rem;
    padding: 3px 0;
    color: var(--text-secondary);
}

.ts-time {
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 6px;
}

.profile-contact {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.profile-contact h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.profile-contact p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 2px 0;
}

.profile-footer {
    padding: 16px 24px;
    text-align: center;
    background: var(--bg);
}

.profile-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 2px 0;
}

/* ===== Print ===== */
@media print {
    .header, .progress-container, .form-actions, .results-filters, .footer, .btn, .btn-outreach, .mode-selector, .recruiting-calendar { display: none !important; }
    .form-section { display: none !important; }
    #step5 { display: block !important; }
    #step7 { display: block !important; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .school-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
    body { background: var(--bg); }
    .profile-card { box-shadow: none; border: 1px solid #ccc; }
    .profile-header { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

@media (max-width: 768px) {
    .mode-selector { margin: 12px 16px 0; }
    .cal-rule-row { flex-direction: column; gap: 4px; }
    .cal-period { min-width: auto; }
    .profile-header { flex-direction: column; text-align: center; padding: 24px 16px; }
    .profile-details { grid-template-columns: 1fr; }
    .profile-detail-section:nth-child(odd) { border-right: none; }
    .profile-badge { position: static; margin-top: 8px; }
    .profile-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Player Comparison / Self-Assessment ===== */
.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.comparison-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.self-rating-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-item label {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    min-width: 200px;
}

.rating-item input[type="range"] {
    flex: 2;
    accent-color: var(--primary);
    height: 6px;
}

.rating-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-accent:hover {
    background: #00a844;
}

/* Comparison Report Output */
.comparison-report {
    margin-top: 2rem;
}

.comparison-report-header {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.comparison-report-header h3 {
    margin: 0 0 0.25rem;
    font-size: 1.3rem;
}

.comparison-report-header p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.comp-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    padding: 1.5rem;
}

.comp-section:last-child {
    border-radius: 0 0 12px 12px;
}

.comp-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.comp-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.comp-bar-label {
    flex: 0 0 180px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

.comp-bar-track {
    flex: 1;
    height: 28px;
    background: #edf2f7;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.comp-bar-fill {
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    transition: width 0.8s ease;
}

.comp-bar-fill.player {
    background: var(--primary);
}

.comp-bar-fill.benchmark {
    background: #94a3b8;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.comp-bar-marker {
    position: absolute;
    top: -2px;
    bottom: -2px;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    z-index: 2;
}

.comp-bar-marker::after {
    content: attr(data-label);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.comp-bar-values {
    flex: 0 0 120px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comp-overall-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 0.5rem;
}

.comp-overall-score {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.comp-overall-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.comp-overall-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 500px;
}

.comp-level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.comp-level-card {
    background: #f8fafc;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: border-color 0.2s;
}

.comp-level-card.recommended {
    border-color: var(--accent);
    background: #f0fff4;
}

.comp-level-card h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.comp-level-card .comp-fit-pct {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.comp-level-card .comp-fit-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-notes {
    background: rgba(249,168,37,0.10);
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.5;
}

.comp-notes strong {
    color: #78350f;
}

.comp-export-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .rating-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .rating-item label { min-width: auto; }
    .comp-bar-row { flex-direction: column; align-items: stretch; }
    .comp-bar-label { text-align: left; flex: none; }
    .comp-bar-values { flex: none; }
}

/* ===== Full Player Report ===== */
.report-container {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

.report-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.report-badge::before {
    content: '✦';
    font-size: 0.8rem;
}

.report-header-card {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.report-header-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.report-player-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.report-player-meta {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.report-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 1.5rem;
}

.report-quick-stat {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.report-quick-stat .stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
}

.report-quick-stat .stat-label {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-section {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
}

.report-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    padding: 1rem 1.5rem;
    margin: 0;
    border-bottom: 2px solid var(--primary);
    background: rgba(255,255,255,0.04);
}

.report-section-body {
    padding: 1.25rem 1.5rem;
}

.report-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-bullets li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    gap: 10px;
}

.report-bullets li:last-child {
    border-bottom: none;
}

.report-bullets li .bullet-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.report-verdict {
    background: linear-gradient(135deg, #f0fff4, #ecfdf5);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.report-verdict-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 0.5rem;
}

.report-verdict-text {
    font-size: 0.95rem;
    color: #047857;
    margin: 0;
    line-height: 1.6;
}

.report-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 1rem 0;
}

.report-tier {
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.report-tier.reach { background: #fef2f2; border: 1px solid #fca5a5; }
.report-tier.target { background: #f0fff4; border: 2px solid var(--accent); }
.report-tier.safety { background: #eff6ff; border: 1px solid #93c5fd; }

.report-tier h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem;
}

.report-tier.reach h5 { color: #dc2626; }
.report-tier.target h5 { color: #16a34a; }
.report-tier.safety h5 { color: #2563eb; }

.report-tier p {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

.report-radar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.report-skill-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-skill-label {
    flex: 0 0 140px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: right;
}

.report-skill-track {
    flex: 1;
    height: 20px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.report-skill-fill {
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.report-warning {
    background: rgba(249,168,37,0.10);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
}

.report-warning-title {
    font-weight: 700;
    color: #92400e;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
}

.report-internal-only {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.report-internal-only h4 {
    color: #dc2626;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-internal-only h4::before {
    content: '🔒';
}

.report-footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.report-footer strong {
    color: var(--text);
}

@media print {
    .report-container { max-width: 100%; }
    .report-section { break-inside: avoid; }
    .report-internal-only { display: none; }
    .btn, .mode-selector, .header { display: none !important; }
}

@media (max-width: 768px) {
    .report-tier-grid { grid-template-columns: 1fr; }
    .report-radar-grid { grid-template-columns: 1fr; }
    .report-quick-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Auth Screen — Split Layout ===== */
.auth-screen {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: stretch;
    overflow: auto;
}

/* LEFT HERO PANEL */
.auth-hero-panel {
    flex: 1 1 55%;
    background: linear-gradient(145deg, #0d1b3e 0%, #1a2f6e 35%, #1e5cb8 65%, #2d7ff9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 3rem 3rem 3.5rem;
    position: relative;
    overflow: hidden;
}
.auth-hero-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,210,211,0.18) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}
.auth-hero-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108,180,255,0.15) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite reverse;
}
.auth-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 500px;
    animation: fadeInUp 0.7s ease both;
}
.auth-hero-badge {
    display: inline-block;
    background: rgba(0,210,211,0.2);
    border: 1px solid rgba(0,210,211,0.4);
    color: #00d2d3;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}
.auth-hero-ball {
    display: block;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.auth-hero-logo-img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.auth-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.auth-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 600;
}
.auth-hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.auth-hero-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 14px;
    transition: background 0.2s;
}
.auth-hero-feat:hover { background: rgba(255,255,255,0.12); }
.auth-hero-feat-icon {
    font-size: 1.4rem;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}
.auth-hero-feat strong {
    display: block;
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
}
.auth-hero-feat span {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    margin-top: 1px;
}
.auth-hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.auth-hero-free-banner {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    line-height: 1.6;
}
.auth-hero-free-banner strong { color: #6cb4ff; }
.auth-hero-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.auth-hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    margin-top: 3px;
    display: block;
}

/* RIGHT FORM PANEL */
.auth-container {
    flex: 0 0 420px;
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease both;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d7ff9, #00d2d3, #6c5ce7);
    border-radius: 0;
}

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

.auth-logo-img {
    width: 110px;
    height: auto;
    margin-bottom: 0.25rem;
}

.auth-tagline {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.auth-features {
    display: none; /* Moved to hero panel */
}
.auth-mobile-features, .auth-mobile-stats, .auth-mobile-free { display: none; }

.auth-launch-badge {
    background: linear-gradient(135deg, #00b894, #00d2d3);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 0.75rem;
    display: block;
    width: fit-content;
    box-shadow: 0 3px 12px rgba(0,184,148,0.3);
}

.prog-free-label {
    color: var(--green);
    font-weight: 700;
}

.auth-form h2 {
    font-size: 1.85rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.auth-subtitle {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.auth-field {
    margin-bottom: 1rem;
}

.auth-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.auth-field input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    box-sizing: border-box;
}

.auth-field input::placeholder {
    color: rgba(255,255,255,0.35);
}

.auth-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249,168,37,0.15);
    background: rgba(255,255,255,0.11);
    color: #ffffff;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    border-radius: 12px;
}

.auth-btn.btn-primary {
    background: linear-gradient(135deg, #1a2f6e, #2d7ff9);
    box-shadow: 0 6px 20px rgba(45,127,249,0.35);
    border: none;
    transition: all 0.3s;
}

.auth-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(45,127,249,0.45);
}

.auth-divider {
    text-align: center;
    margin: 1.25rem 0 0.5rem;
    position: relative;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}
.auth-divider span {
    background: var(--bg-card);
    padding: 0 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.auth-error {
    color: var(--red);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.75rem;
    min-height: 1.2em;
}

.auth-switch {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-demo-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 4px;
}
.auth-demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 16px;
    min-height: 44px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    width: 100%;
    font-family: inherit;
}
.auth-demo-btn:hover,
.auth-demo-btn:active {
    background: rgba(249,168,37,0.1);
    border-color: rgba(249,168,37,0.35);
    color: #fff;
}
.auth-admin-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 12px 20px;
    min-height: 44px;
    min-width: 160px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(249,168,37,0.15);
    transition: background 0.15s;
}

.auth-admin-btn:hover,
.auth-admin-btn:active {
    background: rgba(249,168,37,0.1);
    text-decoration: underline;
}

.auth-tabs {
    display: flex;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: var(--bg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.auth-tab.active {
    background: var(--primary);
    color: var(--white);
}

.program-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.program-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border: 2px solid var(--border);
    border-radius: 20px;
    background: var(--bg);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.program-pill input[type="checkbox"] {
    display: none;
}

.program-pill:has(input:checked) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.program-pill:hover {
    border-color: var(--primary);
}

/* ===== Program Selection Cards (Registration Step 2) ===== */
.reg-step-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.reg-step-back:hover { opacity: 0.7; }

.prog-bundle {
    background: linear-gradient(135deg, #1a1f36, #2d3561);
    color: white;
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}
.prog-bundle:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,127,249,0.25); }
.prog-bundle.prog-bundle-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,210,211,0.25), 0 8px 24px rgba(45,127,249,0.25);
}
.prog-bundle-badge {
    display: inline-block;
    background: var(--gradient-warm);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}
.prog-bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.prog-bundle-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.prog-bundle-desc {
    font-size: 0.82rem;
    opacity: 0.8;
}
.prog-bundle-price {
    text-align: right;
    white-space: nowrap;
}
.prog-price-old {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.85rem;
    margin-right: 4px;
}
.prog-price-now {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
}
.prog-price-period {
    font-size: 0.75rem;
    opacity: 0.7;
}
.prog-bundle-includes {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    opacity: 0.65;
    line-height: 1.4;
}

.prog-divider {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}
.prog-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}
.prog-divider span {
    background: rgba(255,255,255,0.98);
    padding: 0 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.prog-cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 14px;
}

.prog-card {
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: all 0.25s;
    background: var(--bg-card);
    position: relative;
}
.prog-card:hover { border-color: var(--primary); }
.prog-card.prog-selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(45,127,249,0.12);
}
.prog-card.prog-card-free {
    border-color: var(--green);
    background: var(--green-light);
}
.prog-card.prog-selected.prog-card-free {
    box-shadow: 0 0 0 3px rgba(0,184,148,0.15);
}
.prog-card-popular {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--gradient-warm);
    color: white;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.prog-card-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.prog-card-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.prog-card-info {
    flex: 1;
    min-width: 0;
}
.prog-card-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}
.prog-card-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.prog-card-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
}
.prog-card-price .prog-price-period {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}
.prog-free-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 8px;
}
.prog-card-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 2.2rem;
    display: none;
}
.prog-selected .prog-card-features {
    display: block;
}
.prog-card-features li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 1px 0;
    position: relative;
    padding-left: 14px;
}
.prog-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.prog-card-includes {
    font-size: 0.72rem;
    color: #00b894;
    font-weight: 700;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,184,148,0.2);
}

.reg-step2-summary {
    background: rgba(249,168,37,0.08);
    border: 1px solid rgba(249,168,37,0.25);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.reg-step2-name {
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
}

.reg-step2-email {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.reg-create-btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.prog-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.prog-summary-left {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.prog-summary-count {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}
.prog-summary-btn {
    margin-top: 0 !important;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Bundle disabled state (individual cards selected) */
.prog-bundle.prog-bundle-disabled {
    opacity: 0.45;
    pointer-events: none;
}
.prog-cards.prog-cards-disabled .prog-card {
    opacity: 0.45;
    pointer-events: none;
}

.header-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* ===== User Menu ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 4px 14px 4px 4px;
    cursor: pointer;
    transition: background 0.2s;
    color: white;
}

.user-menu-btn:hover {
    background: rgba(255,255,255,0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-role-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--accent);
    color: white;
}

.user-role-badge.coach { background: var(--orange); }
.user-role-badge.admin { background: var(--red); }
.user-role-badge.mentee { background: #8b5cf6; }

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #0f2040;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(249,168,37,0.2);
    animation: dropdownFadeIn 0.15s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.user-dropdown-header {
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(249,168,37,0.15);
    background: #0a1e3a;
}

.user-dropdown-header strong {
    display: block;
    font-size: 0.9rem;
    color: #f9a825;
    margin-bottom: 3px;
    font-weight: 700;
}

.user-dropdown-header span {
    font-size: 0.75rem;
    color: #8fa8c8;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4B9CD3;
    text-decoration: none;
    transition: background 0.12s;
}

.user-dropdown a:hover {
    background: rgba(75,156,211,0.1);
    color: #ffffff;
}

.user-dropdown a .menu-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(75,156,211,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.user-dropdown a:hover .menu-icon {
    background: rgba(75,156,211,0.22);
}

.user-dropdown a.danger { color: #ff6b6b; }
.user-dropdown a.danger:hover { background: rgba(255,107,107,0.1); color: #ff8080; }
.user-dropdown a.danger .menu-icon { background: rgba(255,107,107,0.12); }

.user-dropdown hr {
    border: none;
    border-top: 1px solid rgba(249,168,37,0.12);
    margin: 4px 0;
}

/* Backdrop to close menu when clicking outside */
/* z-index must be BELOW header (100) so dropdown links are clickable */
.user-dropdown-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: transparent;
}

/* ===== Admin Panel ===== */
.admin-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.admin-stat-card .stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.admin-stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-filters input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
}

.admin-filters select {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    min-width: 140px;
}

.admin-player-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.2s;
    cursor: pointer;
}

.admin-player-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.admin-player-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.admin-player-info {
    flex: 1;
}

.admin-player-info h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.admin-player-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.admin-player-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-player-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-player-tag.div { background: var(--primary-light); color: var(--primary); }
.admin-player-tag.pos { background: #f0fff4; color: #16a34a; }
.admin-player-tag.complete { background: #f0fff4; color: #16a34a; }
.admin-player-tag.incomplete { background: rgba(249,168,37,0.10); color: #d97706; }
.admin-player-tag.program-men { background: #e0f2fe; color: #0369a1; }
.admin-player-tag.program-women { background: #fce7f3; color: #be185d; }

/* ===== Activity Log ===== */
.activity-date-header {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 1rem 0 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
}
.activity-entry {
    display: flex;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.activity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}
.activity-content { flex: 1; min-width: 0; }
.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.activity-time {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.activity-action {
    font-size: 0.88rem;
    margin-top: 2px;
}
.activity-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.activity-email {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.activity-role-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.activity-role-tag.player { background: var(--primary-light); color: var(--primary); }
.activity-role-tag.coach { background: #f0fff4; color: #16a34a; }

/* ===== Signups Table ===== */
.signups-table { width: 100%; }
.signups-header {
    display: grid;
    grid-template-columns: 1.5fr 2fr 0.7fr 1fr 0.8fr 1fr;
    gap: 8px;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0 0;
}
.signups-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 0.7fr 1fr 0.8fr 1fr;
    gap: 8px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 0.85rem;
}
.signups-row:hover { background: var(--primary-light); }
.signups-row a { color: var(--primary); text-decoration: none; }
.signups-row a:hover { text-decoration: underline; }
.welcome-status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}
.welcome-status.sent { background: #f0fdf4; color: #16a34a; }
.welcome-status.pending { background: rgba(249,168,37,0.10); color: #d97706; }

@media (max-width: 768px) {
    .signups-header { display: none; }
    .signups-row {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
}

/* ===== Player Profile Dashboard ===== */
.profile-dashboard {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-avatar-card {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.profile-avatar-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
}

.profile-avatar-card p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.85rem;
}

.profile-share-id {
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-family: monospace;
    word-break: break-all;
}

.profile-nav {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.profile-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.profile-nav a:last-child { border-bottom: none; }
.profile-nav a:hover, .profile-nav a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-section-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.profile-section-card h4 {
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.profile-section-card .profile-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
}

.profile-data-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-data-item .data-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.profile-data-item .data-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.profile-visibility-banner {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Admin Tabs ===== */
.admin-tabs {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
}

.admin-tab-group {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 0 8px 10px 6px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
}

.admin-tab-divider {
    display: block;
    width: 1px;
    min-width: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 4px 0 4px;
    align-self: stretch;
    flex-shrink: 0;
}

.admin-tab {
    padding: 8px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -2px;
}

.admin-tab:hover {
    color: var(--text);
}

.admin-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ===== Roster Data Display ===== */
.roster-overview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.roster-stat-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.roster-stat {
    flex: 1;
    min-width: 70px;
    background: var(--bg);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid var(--border);
}
.roster-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}
.roster-stat-lbl {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}
.roster-class-bar-wrap {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border);
}
.roster-class-label,
.roster-pos-label,
.roster-transfers-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}
.roster-class-bar {
    display: flex;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}
.roster-bar-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    transition: width 0.3s;
}
.roster-bar-seg.fr { background: #3b82f6; }
.roster-bar-seg.so { background: #22c55e; }
.roster-bar-seg.jr { background: #f59e0b; }
.roster-bar-seg.sr { background: #ef4444; }
.roster-class-legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    display: inline-block;
}
.legend-dot.fr { background: #3b82f6; }
.legend-dot.so { background: #22c55e; }
.legend-dot.jr { background: #f59e0b; }
.legend-dot.sr { background: #ef4444; }

.roster-positions {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border);
}
.roster-pos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.roster-pos-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.roster-pos-head {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 60px;
}
.roster-pos-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.roster-need-badge {
    font-size: 0.55rem;
    font-weight: 800;
    background: #fef3c7;
    color: #b45309;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    border: 1px solid #fcd34d;
}
.roster-pos-bar {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}
.roster-pos-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}
.roster-pos-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    min-width: 18px;
    text-align: right;
}

.roster-composition {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border);
}
.roster-comp-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}
.roster-comp-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.roster-comp-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 60px;
}
.roster-comp-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.roster-comp-fill {
    height: 100%;
    border-radius: 4px;
}
.roster-comp-fill.domestic { background: #3b82f6; }
.roster-comp-fill.intl { background: #8b5cf6; }
.roster-comp-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    min-width: 20px;
    text-align: right;
}
.roster-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.roster-country-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: #ede9fe;
    color: #6d28d9;
    font-weight: 600;
    border: 1px solid #ddd6fe;
}

.roster-states {
    background: var(--bg);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border);
}
.roster-states-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}
.roster-state-tag {
    display: inline-block;
    font-size: 0.68rem;
    padding: 1px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: var(--text-secondary);
    font-weight: 600;
    margin: 2px 2px;
    border: 1px solid #e2e8f0;
}
.roster-state-tag.home {
    background: #dbeafe;
    color: #1e40af;
    border-color: #93c5fd;
    font-weight: 700;
}

.roster-transfers {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border);
}
.roster-transfer-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.roster-transfer-year {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.transfer-year {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.transfer-in {
    display: block;
    font-size: 0.72rem;
    color: #16a34a;
    font-weight: 600;
}
.transfer-out {
    display: block;
    font-size: 0.72rem;
    color: #dc2626;
    font-weight: 600;
}

.roster-coaches {
    margin-top: 12px;
}
.roster-prev-schools {
    margin-top: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #0a1628 0%, #111f38 100%);
    border-radius: 8px;
    border: 1px solid rgba(249,168,37,0.2);
    color: #ffffff;
}
.roster-prev-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #f9a825;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 8px;
}
.roster-prev-tag {
    display: inline-block;
    font-size: 0.74rem;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(249,168,37,0.12);
    color: #ffd54f;
    font-weight: 600;
    margin: 2px 2px;
    border: 1px solid rgba(249,168,37,0.28);
}

/* Card roster summary */
.card-roster-summary {
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 6px 16px;
    border-top: 1px dashed var(--border);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Coach directory enhancements */
.coach-dir-prev {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 2px 0;
}
.coach-dir-roster {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    margin: 4px 0 0;
    padding: 3px 8px;
    background: #f0f9ff;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #e0f2fe;
}

/* ===== Coach Directory Cards ===== */
.coach-dir-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.2s;
}

.coach-dir-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.coach-dir-info {
    flex: 1;
}

.coach-dir-info h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0 0 0.15rem;
}

.coach-dir-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0 0 0.15rem;
}

.coach-dir-actions {
    flex-shrink: 0;
}

/* ===== Coach Directory Filters ===== */
.coach-dir-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.coach-dir-filters input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
}

.coach-dir-filters select {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    min-width: 140px;
}

/* ===== Player Select Modal ===== */
.player-select-modal {
    max-height: 350px;
    overflow-y: auto;
    margin-top: 1rem;
}

.player-select-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.player-select-option:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.player-select-option strong {
    font-size: 0.9rem;
    color: var(--text);
}

.player-select-option span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .profile-dashboard { grid-template-columns: 1fr; }
    .profile-section-card .profile-data-grid { grid-template-columns: 1fr; }
    .admin-player-card { flex-direction: column; text-align: center; }
    .coach-dir-card { flex-direction: column; text-align: center; }
    .coach-dir-actions { width: 100%; }
    .coach-dir-actions .btn { width: 100%; }
}

/* ===== Player CV / Resume ===== */
.player-cv {
    max-width: 8.5in;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cv-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
    color: #fff;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cv-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cv-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cv-header-info {
    flex: 1;
}

.cv-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
}

.cv-subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 2px 0;
}

.cv-contact {
    font-size: 0.82rem;
    opacity: 0.7;
    margin: 2px 0;
}

.cv-header-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-align: center;
    line-height: 1.4;
    flex-shrink: 0;
}

.cv-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.cv-col {
    padding: 1.25rem 1.75rem;
}

.cv-col:first-child {
    border-right: 1px solid var(--border);
}

.cv-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text);
    margin: 0 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary);
}

.cv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-list li {
    padding: 3px 0;
    font-size: 0.85rem;
    color: var(--text);
}

.cv-list li strong {
    color: var(--text);
    font-weight: 600;
}

.cv-section {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
}

.cv-stats-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cv-stat-item {
    text-align: center;
    min-width: 70px;
}

.cv-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.cv-stat-lbl {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.cv-video-link {
    font-size: 0.85rem;
    margin: 4px 0;
}

.cv-video-link a {
    color: var(--primary);
    word-break: break-all;
}

.cv-reference {
    background: #f8fafc;
}

.cv-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
    line-height: 1.6;
}

.cv-coach-attr {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.cv-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
}

.cv-footer strong {
    color: #fff;
}

@media print {
    #step10 .section-header { display: none !important; }
    #step10 { display: block !important; }
    .player-cv {
        box-shadow: none;
        border: none;
        max-width: 100%;
    }
    .cv-header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .cv-footer {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .cv-reference {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

@media (max-width: 768px) {
    .cv-header { flex-direction: column; text-align: center; }
    .cv-header-left { flex-direction: column; }
    .cv-two-col { grid-template-columns: 1fr; }
    .cv-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    .cv-stats-row { gap: 0.5rem; }
    .cv-stat-num { font-size: 1.2rem; }
}

/* ===== Program Badge (Men's/Women's) ===== */
.card-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.program-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.program-badge.mens {
    background: #dbeafe;
    color: #1d4ed8;
}
.program-badge.womens {
    background: #fce7f3;
    color: #be185d;
}

/* ===== Known Programs Tags ===== */
.card-known-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 16px 0;
}
.known-program-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.known-program-tag.highlight {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
    font-weight: 600;
}
.known-programs-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.known-program-tag-lg {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-weight: 500;
}
.known-program-tag-lg.highlight {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
    font-weight: 700;
}

/* ===== Financial Aid Estimate (Card) ===== */
.card-aid-estimate {
    padding: 4px 16px;
    font-size: 0.78rem;
    color: #166534;
    font-weight: 600;
    background: linear-gradient(90deg, #f0fdf4, transparent);
    border-left: 3px solid #22c55e;
    margin: 4px 12px;
    border-radius: 0 4px 4px 0;
}

/* ===== Recruiting Needs (Card) ===== */
.card-recruiting-needs {
    padding: 4px 16px;
    font-size: 0.78rem;
    color: #7c3aed;
    font-weight: 500;
    margin: 2px 12px;
}

/* ===== Financial Calculator (Modal) ===== */
.financial-calculator {
    background: linear-gradient(135deg, #fefce8, #fef9c3) !important;
    border: 1px solid #fde68a !important;
    border-radius: 12px;
    padding: 20px !important;
}
.fin-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 12px;
}
@media (max-width: 768px) {
    .fin-calc-grid { grid-template-columns: 1fr; }
}
.fin-calc-col h4 {
    font-size: 0.9rem;
    color: #92400e;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #fde68a;
}
.fin-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.85rem;
    color: #44403c;
}
.fin-line.fin-total {
    border-top: 2px solid #d97706;
    margin-top: 6px;
    padding-top: 8px;
    font-weight: 700;
    color: #92400e;
    font-size: 0.95rem;
}
.fin-line.fin-aid-total {
    border-top-color: #22c55e;
    color: #166534;
}
.fin-net-cost {
    margin-top: 16px;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 14px 18px;
    border: 2px solid #d97706;
}
.fin-net-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.fin-net-row.fin-four-year {
    border-top: 1px solid #fde68a;
    padding-top: 8px;
    margin-top: 4px;
}
.fin-net-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #92400e;
}
.fin-four-year .fin-net-amount {
    color: #dc2626;
    font-size: 1.3rem;
}
.fin-disclaimer {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #78716c;
    font-style: italic;
}

/* ===== Recruiting Detail (Modal) ===== */
.recruiting-detail {
    margin-top: 8px;
}
.recruit-stat-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.recruit-stat {
    text-align: center;
    flex: 1;
    background: #f5f3ff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e9d5ff;
}
.recruit-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #7c3aed;
}
.recruit-stat-lbl {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}
.recruit-positions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.recruit-pos-tag {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-weight: 500;
}
.recruit-pos-tag.your-pos {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
    font-weight: 700;
}
.recruit-note {
    font-size: 0.78rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 8px;
}

/* ===== Financial Calculator Button ===== */
.btn-financial-calc {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    border: none !important;
    font-weight: 600;
}
.btn-financial-calc:hover {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
}

/* ===== International Requirements ===== */
.intl-requirements {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff) !important;
    border: 1px solid #93c5fd !important;
}
.intl-req-section {
    margin-bottom: 20px;
}
.intl-req-section h4 {
    font-size: 0.95rem;
    color: #1e40af;
    margin: 0 0 10px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #bfdbfe;
}
.intl-req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.intl-req-item {
    padding: 12px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid #e5e7eb;
}
.intl-req-item.pass { border-color: #86efac; background: #f0fdf4; }
.intl-req-item.fail { border-color: #fca5a5; background: #fef2f2; }
.intl-req-item.none { border-color: #d1d5db; }
.intl-req-test {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.intl-req-range {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 6px;
}
.intl-req-your {
    font-size: 0.82rem;
    color: var(--text);
}
.intl-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.intl-badge.pass { background: #dcfce7; color: #166534; }
.intl-badge.fail { background: #fee2e2; color: #991b1b; }
.intl-badge.none { background: #f3f4f6; color: #6b7280; }
.intl-eligibility-box {
    padding: 14px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}
.intl-eligibility-box strong {
    color: #1e40af;
    font-size: 0.9rem;
}
.intl-eligibility-list {
    margin: 8px 0 0 20px;
    font-size: 0.85rem;
    color: var(--text);
}
.intl-eligibility-list li {
    margin-bottom: 4px;
    list-style: disc;
}
.intl-docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.intl-doc-item {
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 0.82rem;
    color: var(--text);
}
.intl-doc-item.done {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}
.intl-readiness {
    margin-top: 16px;
    padding: 14px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
.intl-readiness-bar {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}
.intl-readiness-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}
.intl-readiness-label {
    font-weight: 700;
    font-size: 0.9rem;
}
.intl-readiness-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 6px;
}
.card-intl-status {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 0;
}
@media (max-width: 600px) {
    .intl-req-grid { grid-template-columns: 1fr; }
    .intl-docs-grid { grid-template-columns: 1fr; }
}

/* ===== Club Directory Filter Bar ===== */
.club-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.club-filter-fields {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
}
.club-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.club-filter-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.club-filter-input {
    min-width: 220px;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.88rem;
    background: var(--bg);
    transition: border-color 0.2s;
}
.club-filter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,127,249,0.1);
}
.club-filter-select {
    padding: 8px 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s;
    min-width: 110px;
}
.club-filter-select:focus {
    outline: none;
    border-color: var(--primary);
}
.club-filter-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ===== Club Directory ===== */
.club-dir-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
}
.club-dir-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.club-dir-card .select-checkbox {
    flex-shrink: 0;
    margin-top: 4px;
}
.club-dir-info {
    flex: 1;
    min-width: 0;
}
.club-dir-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.club-dir-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}
.club-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 6px 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.club-stats span {
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 4px;
}
.club-level-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-right: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.club-level-badge.mls-next { background: #dbeafe; color: #1e40af; }
.club-level-badge.ecnl { background: #ede9fe; color: #6d28d9; }
.club-level-badge.ga { background: #fce7f3; color: #be185d; }
.club-level-badge.ea { background: #fef3c7; color: #92400e; }
.club-level-badge.npl { background: #d1fae5; color: #065f46; }
.club-level-badge.state-premier { background: #e0e7ff; color: #3730a3; }
.club-level-badge.usl-academy { background: #ffe4e6; color: #9f1239; }
.club-level-badge.default { background: #f3f4f6; color: #4b5563; }
.club-program-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-right: 4px;
}
.club-program-badge.boys { background: #e0f2fe; color: #0369a1; }
.club-program-badge.girls { background: #fce7f3; color: #be185d; }
.club-coaches-expand {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}
.club-coaches-expand summary {
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}
.club-coaches-expand summary:hover { text-decoration: underline; }
.club-roster-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.club-roster-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 100px;
}
.club-roster-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    min-width: 30px;
}
.club-coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.club-coach-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px;
    transition: box-shadow 0.2s;
}
.club-coach-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.club-coach-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 2px;
}
.club-coach-title {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}
.club-coach-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}
.club-coach-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.club-coach-detail a {
    color: var(--primary);
    text-decoration: none;
}
.club-coach-detail a:hover {
    text-decoration: underline;
}
.club-coach-icon {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.club-coach-actions {
    display: flex;
    gap: 6px;
}
.btn-xs {
    padding: 3px 10px;
    font-size: 0.72rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    border: 1px solid var(--border-light);
    background: var(--bg);
    color: var(--text);
    transition: background 0.2s;
}
.btn-xs:hover { background: var(--bg-alt); }
.btn-xs.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-xs.btn-primary:hover { opacity: 0.9; }
.club-dir-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

/* ===== Select All Bar ===== */
.select-all-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.select-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text);
}
.select-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ===== Batch Email Composer ===== */
.batch-email-composer {
    max-height: 90vh;
    overflow-y: auto;
}
.batch-email-composer h2 {
    margin-bottom: 4px;
}
.batch-count-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.batch-recipient-list {
    max-height: 160px;
    overflow-y: auto;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.batch-recipient-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    margin: 3px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 0.78rem;
    color: var(--text);
}
.batch-recipient-chip .remove-chip {
    cursor: pointer;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 2px;
}
.batch-recipient-chip .remove-chip:hover { opacity: 0.7; }
.batch-template-select {
    width: 100%;
    margin-bottom: 10px;
}
.batch-field {
    margin-bottom: 10px;
}
.batch-field label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: var(--text);
}
.batch-field input,
.batch-field textarea,
.batch-field select {
    width: 100%;
}
.batch-field textarea {
    min-height: 180px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.batch-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .club-dir-card { flex-direction: column; }
    .club-dir-actions { width: 100%; }
    .club-dir-actions .btn { width: 100%; }
    .select-all-bar { flex-direction: column; align-items: flex-start; }
}

/* Coach Verified Badge */
.coach-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #d1fae5;
    color: #065f46;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 4px;
}
.coach-unverified {
    opacity: 0.8;
    border: 1px dashed #f59e0b !important;
}
.btn-report-coach {
    background: none;
    border: 1px solid #d1d5db;
    color: #6b7280;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-report-coach:hover {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fca5a5;
}
/* Data Health Dashboard */
.data-health-dashboard .stat-card {
    background: var(--bg-card);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

/* ===== MOBILE RESPONSIVENESS — Comprehensive ===== */

@media (max-width: 768px) {
    /* Header */
    .header { padding: 0 12px; height: 56px; }
    .logo { gap: 8px; }
    .logo h1 { font-size: 1rem; }
    .logo-icon { width: 32px; height: 32px; }
    .header-logo-img { width: 32px; height: 32px; }
    .tagline { display: none; }
    .header-right { gap: 8px; }
    .user-badge { font-size: 0.75rem; padding: 4px 10px; gap: 6px; }
    .user-badge .user-avatar { width: 26px; height: 26px; font-size: 0.7rem; }

    /* User menu — avatar only on mobile */
    .user-menu-btn { padding: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
    .user-name { display: none; }
    .user-role-badge { display: none; }
    .user-avatar { width: 34px; height: 34px; font-size: 0.82rem; }
    .user-dropdown { right: -4px; min-width: 220px; }

    /* Main content */
    .main-content { padding: 0 12px; }
    .section-header h2 { font-size: 1.3rem; }

    /* Auth screen — simple, reliable mobile layout */
    .auth-screen { flex-direction: column; background: var(--bg-card); overflow-y: auto; overflow-x: hidden; }
    .auth-hero-panel { display: none; }
    .auth-container { flex: none; width: 100%; max-width: 100%; padding: 24px 20px 32px; box-shadow: none; border-radius: 0; overflow: visible; justify-content: flex-start; }
    .auth-mobile-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border-light); }
    .auth-mobile-feat { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 700; color: var(--text-secondary); background: var(--bg-alt); padding: 6px 10px; border-radius: 20px; }
    .auth-mobile-free { display: block; margin-top: 1rem; padding: 12px 16px; background: linear-gradient(135deg, #0d1b3e, #2d7ff9); border-radius: 14px; color: white; font-size: 0.88rem; text-align: center; line-height: 1.5; }
    .auth-mobile-free strong { color: #6cb4ff; }
    .auth-mobile-stats { display: none; }
    .auth-logo { margin-bottom: 0.5rem; }
    .auth-logo-img { width: 70px; height: 70px; }
    .auth-tagline { font-size: 0.82rem; margin-bottom: 0; }
    .auth-features { gap: 4px 8px; margin-bottom: 0.75rem; }
    .auth-feature { font-size: 0.72rem; padding: 4px 8px; }
    .auth-form h2 { font-size: 1.3rem; margin-bottom: 2px; }
    .auth-subtitle { font-size: 0.82rem !important; margin-bottom: 8px !important; }
    .auth-field { margin-bottom: 10px; }
    .auth-field label { font-size: 0.78rem; margin-bottom: 3px; }
    .auth-field input { padding: 10px 12px; font-size: 16px; }
    .auth-btn { padding: 12px; font-size: 0.92rem; }
    .auth-divider { margin: 10px 0; }
    .auth-tabs { flex-wrap: wrap; border-radius: 10px; margin-bottom: 0.75rem; }
    .auth-tab { flex: 0 0 auto; min-width: 0; padding: 8px 12px; font-size: 0.78rem; }
    .program-pills { gap: 6px; }
    .program-pill { padding: 6px 10px; font-size: 0.78rem; }

    /* Program selection cards — mobile */
    .prog-bundle-header { flex-direction: column; gap: 0.5rem; }
    .prog-bundle-price { text-align: left; }
    .prog-price-now { font-size: 1.5rem; }
    .prog-bundle { padding: 1rem; }
    .prog-bundle-title { font-size: 1rem; }
    .prog-card { padding: 0.7rem 0.85rem; }
    .prog-card-emoji { font-size: 1.3rem; }
    .prog-card-name { font-size: 0.85rem; }
    .prog-card-price { font-size: 1rem; }
    .prog-summary { flex-direction: column; text-align: center; gap: 0.5rem; }
    .prog-summary-btn { width: 100%; }

    /* School cards */
    .school-card { padding: 16px; }
    .card-details { grid-template-columns: 1fr; gap: 6px; }

    /* Modal */
    .modal-overlay { padding: 10px; }
    .modal { padding: 16px; max-height: 90vh; }
    .modal-grid { grid-template-columns: 1fr; }

    /* Forms */
    .form-grid { padding: 16px; gap: 12px; }
    .form-group label { font-size: 0.8rem; }
    .form-group input, .form-group select, .form-group textarea {
        font-size: 16px; /* prevents iOS zoom on focus */
        padding: 10px 12px;
    }

    /* Profile dashboard */
    .profile-dashboard { grid-template-columns: 1fr; }

    /* Buttons */
    .btn { padding: 10px 16px; font-size: 0.85rem; }

    /* Footer */
    .footer { padding: 16px 12px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
    /* Header — compact */
    .header { height: 50px; }
    .logo h1 { font-size: 0.9rem; }
    .user-badge .user-name { display: none; }
    .user-badge .user-role { display: none; }
    .user-name { max-width: 60px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    /* Auth — tighter */
    .auth-logo-img { width: 60px; height: 60px; }
    .auth-tabs { gap: 0; }
    .auth-tab { padding: 7px 8px; font-size: 0.72rem; }
    .auth-features { display: none; }

    /* Stats grid */
    .dashboard-stats { grid-template-columns: 1fr 1fr; gap: 8px; }

    /* Results */
    .results-summary { grid-template-columns: 1fr 1fr; gap: 8px; }
    .results-grid { gap: 12px; }

    /* Forms */
    .form-section { margin-bottom: 16px; }

    /* Comparison bars */
    .comp-bar-row { flex-direction: column; }
    .comp-bar-label { min-width: auto; }
}

/* ── School Logo / Badge in Modal ─────────────────────────────────────────── */
.modal-school-header { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; padding-bottom: 16px; border-bottom: 1px solid rgba(249,168,37,0.22); }
.modal-school-logo-wrap { flex-shrink: 0; }
.modal-school-logo { width: 64px; height: 64px; object-fit: contain; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-card); padding: 4px; }
.modal-school-badge { width: 64px; height: 64px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; letter-spacing: -1px; flex-shrink: 0; }
.modal-school-header-info { flex: 1; min-width: 0; }

/* ── Admissions & Test Scores Section ──────────────────────────────────────
   Dark-theme modal card — was light blue (#f0f7ff) with white text = invisible.
   Now uses dark navy gradient with gold accents to match the modal surround. */
.modal-athsch { background: linear-gradient(135deg, #0a1628 0%, #111f38 100%); border: 1px solid rgba(249,168,37,0.22); border-radius: 12px; padding: 16px 18px; margin-top: 12px; color: #ffffff; }
.modal-athsch-title { font-size: 0.92rem; font-weight: 800; color: #f9a825; margin-bottom: 12px; letter-spacing: 0.01em; }
.modal-athsch-grid { display: flex; gap: 20px; margin-bottom: 8px; }
.modal-athsch-item { text-align: center; }
.modal-athsch-num { display: block; font-size: 1.9rem; font-weight: 900; color: #f9a825; line-height: 1; }
.modal-athsch-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.78); font-weight: 600; margin-top: 4px; display: block; }
.modal-athsch-zero { font-size: 0.88rem; color: #ffffff; margin-bottom: 6px; }
.modal-athsch-note { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin: 8px 0 6px; line-height: 1.5; }
.modal-athsch-how { font-size: 0.82rem; color: #ffffff; background: rgba(10,22,40,0.7); border-radius: 8px; padding: 10px 12px; margin-top: 8px; border: 1px solid rgba(249,168,37,0.15); line-height: 1.55; }
.modal-athsch-how em { color: #ffd54f; font-style: italic; font-weight: 600; }

/* ── Travel Distance Section ─────────────────────────────────────────────── */
.modal-travel { }
.modal-travel-calc-btn { background: linear-gradient(135deg, #1a2f6e, #2d7ff9); color: #fff; font-size: 0.85rem; font-weight: 700; padding: 10px 20px; border-radius: 22px; border: none; cursor: pointer; display: inline-block; }
.modal-travel-calc-btn:hover { opacity: 0.9; }
.modal-travel-grid { display: flex; gap: 20px; margin-top: 4px; }
.modal-travel-stat { display: flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, #0a1628 0%, #111f38 100%); border: 1px solid rgba(249,168,37,0.22); border-radius: 12px; padding: 14px 20px; min-width: 120px; color: #ffffff; }
.modal-travel-icon { font-size: 1.4rem; margin-bottom: 4px; }
.modal-travel-val { font-size: 1.05rem; font-weight: 800; color: #ffffff; }
.modal-travel-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.78); margin-top: 3px; font-weight: 600; }
.modal-travel-directions-btn { display: inline-block; margin-top: 10px; font-size: 0.84rem; font-weight: 700; color: #f9a825; text-decoration: none; }
.modal-travel-directions-btn:hover { text-decoration: underline; color: #ffd54f; }

/* ── School Website Links — EVERY school gets these ──────────────────────── */
.modal-school-site-link { display: inline-block; margin-top: 6px; font-size: 0.82rem; font-weight: 700; color: #f9a825; text-decoration: none; }
.modal-school-site-link:hover { color: #ffd54f; text-decoration: underline; }
.modal-school-links { }
.school-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-top: 4px; }
.school-link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #0a1628 0%, #111f38 100%);
    border: 1px solid rgba(249,168,37,0.22);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.school-link-btn:hover { transform: translateY(-1px); border-color: rgba(249,168,37,0.55); box-shadow: 0 6px 20px rgba(0,0,0,0.3); color: #ffffff; text-decoration: none; }
.school-link-btn.primary { border-color: rgba(249,168,37,0.45); background: linear-gradient(135deg, #111f38 0%, #1a2a4a 100%); }
.school-link-icon { font-size: 1.3rem; flex-shrink: 0; }
.school-link-title { display: block; font-size: 0.88rem; font-weight: 800; color: #ffffff; line-height: 1.2; }
.school-link-sub { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── Send Outreach Email Card (dark-themed replacement for inline light-green) ── */
.modal-outreach-card {
    background: linear-gradient(135deg, #0a1628 0%, #111f38 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(249,168,37,0.3);
    margin-top: 18px;
}
.modal-outreach-desc { color: rgba(255,255,255,0.82); margin: 4px 0 14px; font-size: 0.92rem; line-height: 1.5; }
.modal-outreach-btn { background: linear-gradient(135deg, #f9a825, #e6951e); color: #0a1628; font-weight: 800; border: none; padding: 11px 22px; border-radius: 10px; cursor: pointer; font-size: 0.92rem; box-shadow: 0 6px 18px rgba(249,168,37,0.28); }
.modal-outreach-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ── Soccer Events Section ───────────────────────────────────────────────── */
.modal-events h3 { margin-top: 0; }
.modal-event-card { background: linear-gradient(135deg, #0a1628 0%, #111f38 100%); border: 1px solid rgba(249,168,37,0.22); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; display: flex; flex-direction: column; gap: 4px; color: #ffffff; }
.modal-event-type { font-size: 0.7rem; font-weight: 800; color: #f9a825; text-transform: uppercase; letter-spacing: 0.08em; }
.modal-event-name { font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.modal-event-date { font-size: 0.84rem; color: rgba(255,255,255,0.78); }
.modal-event-link { font-size: 0.82rem; font-weight: 700; color: #f9a825; text-decoration: none; margin-top: 2px; }
.modal-event-link:hover { text-decoration: underline; color: #ffd54f; }
.modal-events-program-link { display: inline-block; font-size: 0.85rem; font-weight: 700; color: #f9a825; text-decoration: none; margin-top: 4px; }
.modal-events-program-link:hover { text-decoration: underline; color: #ffd54f; }

/* ── Financial Aid Qualifier Card ──────────────────────────────────────────
   Dark-theme card — was styled for a light theme (near-white gradient + white
   text = unreadable). Now uses dark navy gradient that matches the rest of
   the site with high-contrast white text. */
.finaid-card { background: linear-gradient(135deg, #1a2a4a 0%, #1e3557 100%); border: 1.5px solid var(--border); border-radius: 20px; padding: 1.5rem; margin: 0 0 1.5rem; max-width: 860px; margin-left: auto; margin-right: auto; color: var(--text); }
.finaid-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1rem; }
.finaid-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.finaid-title { font-size: 1.1rem; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.finaid-sub { font-size: 0.85rem; color: rgba(255,255,255,0.82); line-height: 1.5; }
.finaid-body { }
.finaid-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.finaid-label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.finaid-select { padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.9rem; background: var(--bg-card); color: var(--text); font-weight: 600; max-width: 400px; }
.finaid-result { background: var(--bg-card); border-radius: 14px; padding: 14px 16px; margin-top: 4px; border: 1.5px solid var(--border); }
.finaid-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 10px; }
.finaid-result-item { }
.finaid-result-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; margin-bottom: 3px; }
.finaid-result-val { font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.finaid-result-val.positive { color: #4ade80; }
.finaid-result-val.zero { color: #fbbf24; }
.finaid-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 8px; }
.finaid-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.finaid-link-btn { display: inline-block; padding: 8px 18px; background: linear-gradient(135deg, #1a2f6e, #2d7ff9); color: #fff; font-size: 0.82rem; font-weight: 800; border-radius: 20px; text-decoration: none; }
.finaid-link-btn-secondary { background: var(--bg-card); color: var(--text-secondary); border: 1.5px solid var(--border); }
.finaid-link-btn:hover { opacity: 0.9; }
@media (max-width: 600px) {
    .finaid-result-grid { grid-template-columns: 1fr; }
    .modal-travel-grid { flex-direction: column; }
    .modal-school-badge { width: 48px; height: 48px; font-size: 1.1rem; }
    .modal-school-logo { width: 48px; height: 48px; }
    .modal-athsch-grid { flex-wrap: wrap; }
}

/* ===== Dark Theme Hub Overrides — ensure hub card text is always readable ===== */
.hub-card-header { color: #ffffff !important; }
.hub-card { background: var(--bg-card) !important; color: var(--text) !important; }
.hub-card strong { color: #ffffff !important; }
.hub-card .hub-card-header { color: #ffffff !important; }

/* ── Inline Light-Background Readability Guard ─────────────────────────────
   Several legacy JS modules inject inline `style="background:#f0f9ff"` (or
   similar pale hex values) cards that were designed for a light theme. On the
   current dark-theme site they inherit white text → unreadable. Force readable
   dark text on descendants of any such inline-styled element.
   Exception: inline elements that already set their OWN color via
   style="color:..." keep their explicit color. The descendant rules below
   only target labels/spans/p/div/etc. that have NO inline color, so any
   deliberately-styled children (e.g. `style="color:#92400e"` brown strong on
   yellow warning boxes) render unchanged. */
[style*="background:#f0f9ff"]:not([style*="color"]),
[style*="background: #f0f9ff"]:not([style*="color"]),
[style*="background:#e0f2fe"]:not([style*="color"]),
[style*="background: #e0f2fe"]:not([style*="color"]),
[style*="background:#f0fdf4"]:not([style*="color"]),
[style*="background: #f0fdf4"]:not([style*="color"]),
[style*="background:#f8fafc"]:not([style*="color"]),
[style*="background: #f8fafc"]:not([style*="color"]),
[style*="background:#f9fafb"]:not([style*="color"]),
[style*="background: #f9fafb"]:not([style*="color"]),
[style*="background:#fefce8"]:not([style*="color"]),
[style*="background: #fefce8"]:not([style*="color"]),
[style*="background:#fff"]:not([style*="color"]),
[style*="background: #fff"]:not([style*="color"]) {
  color: #1f2937;
}
/* Force descendants WITHOUT their own inline color to be dark on these cards.
   Inputs/selects keep their own dark-navy backgrounds so this doesn't flip them. */
[style*="background:#f0f9ff"] label:not([style*="color"]),
[style*="background: #f0f9ff"] label:not([style*="color"]),
[style*="background:#f0f9ff"] span:not([style*="color"]),
[style*="background: #f0f9ff"] span:not([style*="color"]),
[style*="background:#f0f9ff"] p:not([style*="color"]),
[style*="background: #f0f9ff"] p:not([style*="color"]),
[style*="background:#f0f9ff"] .form-group:not([style*="color"]),
[style*="background: #f0f9ff"] .form-group:not([style*="color"]),
[style*="background:#f0f9ff"] .help-text:not([style*="color"]),
[style*="background: #f0f9ff"] .help-text:not([style*="color"]),
[style*="background:#e0f2fe"] label:not([style*="color"]),
[style*="background:#e0f2fe"] span:not([style*="color"]),
[style*="background:#e0f2fe"] p:not([style*="color"]),
[style*="background:#f0fdf4"] label:not([style*="color"]),
[style*="background:#f0fdf4"] span:not([style*="color"]),
[style*="background:#f0fdf4"] p:not([style*="color"]),
[style*="background:#f8fafc"] label:not([style*="color"]),
[style*="background:#f8fafc"] span:not([style*="color"]),
[style*="background:#f8fafc"] p:not([style*="color"]),
[style*="background:#f9fafb"] label:not([style*="color"]),
[style*="background:#f9fafb"] span:not([style*="color"]),
[style*="background:#f9fafb"] p:not([style*="color"]) {
  color: #1f2937 !important;
}

/* Hub signup/recent items text */
.hub-admin-card, .hub-admin-card * { color: var(--text) !important; }
[class*="hub-card"] strong { color: #ffffff !important; }

/* Make sure all inline-rendered hub text reads on dark bg */
.hub-admin-section strong,
.hub-admin-section h3,
.hub-admin-section h4 { color: #ffffff !important; }

/* ==========================================
   CLICK FEEDBACK — ripple on buttons/links
   ========================================== */

/* Ripple host needs overflow:hidden */
/* IMPORTANT: exclude .modal-overlay — it uses position:fixed to cover the viewport
   and the blanket [onclick] rule was stomping on that, causing modals (like the
   school profile modal) to render deep in the document flow and fall off the page. */
.btn, button, .hub-nav-btn, .hub-program-card,
.hub-stat-card, .hub-arcade-card, .user-dropdown a,
[onclick]:not(.modal-overlay):not(.modal) { position: relative; overflow: hidden; }

@keyframes gsp-ripple {
    from { transform: scale(0); opacity: 0.55; }
    to   { transform: scale(4); opacity: 0; }
}
.gsp-ripple-circle {
    position: absolute;
    border-radius: 50%;
    width: 80px; height: 80px;
    margin-top: -40px; margin-left: -40px;
    background: rgba(249,168,37,0.45);
    pointer-events: none;
    animation: gsp-ripple 0.5s linear;
    z-index: 9999;
}

/* Click cursor dot — shows exactly where you clicked */
#gspClickDot {
    position: fixed;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(249,168,37,0.9);
    border: 2px solid #fff;
    pointer-events: none;
    transform: translate(-50%,-50%) scale(1);
    transition: transform 0.25s ease, opacity 0.3s ease;
    z-index: 99999;
    opacity: 0;
    box-shadow: 0 0 12px rgba(249,168,37,0.8);
}
#gspClickDot.visible {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    animation: gsp-dot-pulse 0.4s ease forwards;
}
@keyframes gsp-dot-pulse {
    0%  { transform: translate(-50%,-50%) scale(0.3); opacity: 1; }
    60% { transform: translate(-50%,-50%) scale(1.4); opacity: 0.9; }
    100%{ transform: translate(-50%,-50%) scale(0);   opacity: 0; }
}

/* ==========================================
   PRINT / PDF EXPORT
   ========================================== */
@media print {
  body { background: #fff !important; color: #000 !important; }
  .auth-screen, #authScreen, .hub-nav, #hubNavBar, .ve-tab-bar,
  .ve-back-link, .ve-share-card, .ve-btn, .ve-evaluator-info,
  .admin-panel, #adminPanel, .hub-sidebar { display: none !important; }
  .ve-container { max-width: 100% !important; padding: 0 !important; }
  .ve-card { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; }
  .ve-card-title { color: #0a1628 !important; }
  .gsp-skill-badge { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .ve-rating-bar-fill { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  #gspPrintHeader { display: block !important; }
  #gspPdfDownloadBtn { display: none !important; }
  .gsp-print-hide { display: none !important; }
}
