/* ── Page layout ── */
        main {
            padding-top: 72px;
        }

        @media(min-width:992px) {
            main {
                padding-top: 80px;
            }
        }

        /* ── Breadcrumb ── */
        .ar-breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .8125rem;
            color: #6b7280;
            padding: 1rem 0;
        }

        .ar-breadcrumb a {
            color: #6b7280;
            text-decoration: none;
            transition: color .2s;
        }

        .ar-breadcrumb a:hover {
            color: #f54342;
        }

        .ar-breadcrumb .sep {
            color: #d1d5db;
            font-size: .75rem;
        }

        .ar-breadcrumb .current {
            color: #111827;
            font-weight: 500;
        }

        /* ── Hero band ── */
        .athlete-hero {
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 2.5rem;
        }

        /* ── Profile photo ── */
        .profile-photo {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: #f3f4f6;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
        }

        .profile-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .profile-photo:hover img {
            transform: scale(1.03);
        }

        .profile-photo .photo-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .4) 0%, transparent 55%);
        }

        .profile-score-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f54342;
            color: #fff;
            font-size: 1.125rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(245, 67, 66, .45);
        }

        /* ── Athlete badges (reuse index style) ── */
        .badge-top {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 9999px;
            background: rgba(245, 67, 66, .1);
            color: #f54342;
            font-size: .75rem;
            font-weight: 700;
        }

        .badge-rising {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 9999px;
            background: rgba(34, 197, 94, .1);
            color: #16a34a;
            font-size: .75rem;
            font-weight: 700;
        }

        /* ── Name & meta ── */
        .athlete-name {
            font-size: clamp(1.875rem, 4vw, 3rem);
            font-weight: 900;
            color: #111827;
            letter-spacing: -.03em;
            line-height: 1.1;
            margin: .5rem 0 .75rem;
        }

        .athlete-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: .25rem .625rem;
            color: #6b7280;
            font-size: .9375rem;
            margin-bottom: 1.5rem;
        }

        .athlete-meta strong {
            color: #111827;
            font-weight: 600;
        }

        .meta-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #d1d5db;
            flex-shrink: 0;
        }

        /* ── Stat pills ── */
        .stat-pills {
            display: flex;
            flex-wrap: wrap;
            gap: .625rem;
            margin-bottom: 1.75rem;
        }

        .stat-pill {
            padding: .5rem 1rem;
            border-radius: .75rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            min-width: 72px;
            text-align: center;
        }

        .sp-label {
            font-size: .625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #9ca3af;
        }

        .sp-value {
            font-size: 1.0625rem;
            font-weight: 800;
            color: #111827;
            margin-top: 2px;
        }

        .sp-value.red {
            color: #f54342;
        }

        /* ── Action buttons ── */
        .btn-action {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: .625rem 1.25rem;
            border-radius: .625rem;
            font-size: .875rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all .15s;
        }

        .btn-action-dark {
            background: #111827;
            color: #fff;
        }

        .btn-action-dark:hover {
            background: #1f2937;
            color: #fff;
        }

        .btn-action-outline {
            background: #fff;
            color: #374151;
            border: 1px solid #e5e7eb !important;
        }

        .btn-action-outline:hover {
            background: #f9fafb;
            color: #111827;
        }

        /* ── Content area ── */
        .athlete-content {
            padding: 2.5rem 0 3.5rem;
            background: #fff;
        }

        /* ── Info cards ── */
        .info-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .info-card-title {
            font-size: 1.125rem;
            font-weight: 800;
            color: #111827;
            margin: 0 0 1rem;
        }

        /* ── Season stats ── */
        .season-stat {
            text-align: center;
            padding: 1rem .75rem;
            border-radius: .75rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
        }

        .ss-val {
            font-size: 2rem;
            font-weight: 900;
            color: #f54342;
            line-height: 1;
        }

        .ss-label {
            font-size: .625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #9ca3af;
            margin-top: 4px;
        }

        /* ── Video thumb ── */
        .video-thumb {
            position: relative;
            border-radius: .75rem;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #111827;
            cursor: pointer;
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }

        .video-thumb:hover img {
            transform: scale(1.05);
        }

        .v-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, .3);
            transition: background .2s;
        }

        .video-thumb:hover .v-overlay {
            background: rgba(0, 0, 0, .45);
        }

        .v-play-btn {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .v-play-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .92);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .2s, background .2s;
        }

        .video-thumb:hover .v-play-circle {
            transform: scale(1.1);
            background: #fff;
        }

        .v-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            padding: 2px 8px;
            border-radius: 6px;
            background: rgba(0, 0, 0, .75);
            color: #fff;
            font-size: .6875rem;
            font-weight: 600;
        }

        .v-title-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: .625rem .75rem 1.75rem;
            background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
        }

        .v-title-bar h4 {
            font-size: .8125rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .v-title-bar p {
            font-size: .6875rem;
            color: #d1d5db;
            margin: 2px 0 0;
        }

        /* ── College tags ── */
        .college-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 12px;
            border-radius: 9999px;
            background: #f3f4f6;
            color: #374151;
            font-size: .8125rem;
            font-weight: 600;
            margin: 3px;
            text-decoration: none;
            transition: background .15s, color .15s;
        }

        .college-tag:hover {
            background: #fff0f0;
            color: #f54342;
        }

        /* ── Sidebar detail card ── */
        .detail-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            padding: 1.5rem;
            position: sticky;
            top: 88px;
        }

        .detail-card-title {
            font-size: .6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: #9ca3af;
            margin: 0 0 1.25rem;
        }

        .detail-row {
            padding: .75rem 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .detail-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .dr-label {
            font-size: .625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #9ca3af;
            margin-bottom: 2px;
        }

        .dr-value {
            font-size: .9375rem;
            font-weight: 600;
            color: #111827;
        }
