:root {
            --bg: #050505;
            --surface: #0a0a0a;
            --surface-hover: #111;
            --nav-h: 72px;
            --mobile-nav-h: 108px;
            --mobile-cta-h: 58px;
            
            --gold: #D4AF37;
            --gold-dim: #8a702a;
            --gold-glow: rgba(212, 175, 55, 0.25);
            
            --silver: #E0E0E0;
            --silver-dim: #888;
            --silver-glow: rgba(224, 224, 224, 0.15);
            
            --bronze: #cd7f32;
            --bronze-dim: #8b5a2b;
            --bronze-glow: rgba(205, 127, 50, 0.25);

            --accent-red: #cc0000;
            --accent-red-glow: rgba(204, 0, 0, 0.4);
            
            --text: #ffffff;
            --text-dim: #d0d0d0;
            --ui-label: #e0e0e0;
            --ui-caption: #d8d8d8;
            --border: #222;
        }

        /* SVG Icon System */
        .svg-icon {
            width: 1em;
            height: 1em;
            vertical-align: middle;
            display: inline-block;
            flex-shrink: 0;
        }
        .svg-icon.gold { color: var(--gold); }
        .svg-icon.silver { color: var(--silver); }
        .svg-icon.brand { color: var(--gold); }
        .svg-icon-sm { width: 0.8em; height: 0.8em; }
        .svg-icon-lg { width: 1.3em; height: 1.3em; }
        .svg-icon-xl { width: 2rem; height: 2rem; }

        /* Marquee item styling */
        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .marquee-item svg {
            flex-shrink: 0;
        }

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

        body {
            background-color: var(--bg);
            background-image: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
            color: var(--text);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }

        /* Moving Banner · base chrome in wdhc-secondary.css; first-paint fallback below */
        .marquee-container {
            position: relative;
            padding: 13px 0;
            overflow: hidden;
            margin: 0;
            border: none;
            background: linear-gradient(180deg, #060606 0%, #101010 50%, #060606 100%);
            contain: layout style;
            isolation: isolate;
        }
        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            pointer-events: none;
            z-index: 2;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85) 50%, transparent);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        }
        .marquee-container::before { top: 0; }
        .marquee-container::after { bottom: 0; }

        .marquee-content {
            display: flex;
            width: max-content;
            flex-wrap: nowrap;
            animation: marquee-scroll var(--marquee-duration, 22s) linear infinite;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .marquee-track {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            flex-wrap: nowrap;
        }

        .marquee-track > span {
            flex-shrink: 0;
            margin: 0 44px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            color: #e2e2e2;
            white-space: nowrap;
        }

        .marquee-item svg {
            transform: translateZ(0);
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.45));
        }

        @keyframes marquee-scroll {
            from { transform: translate3d(0, 0, 0); }
            to { transform: translate3d(var(--marquee-shift, -50%), 0, 0); }
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee-content {
                --marquee-duration: 360s;
            }
        }

        /* Navigation */
        
        
        
        
        
        
        .nav-links a:hover { color: var(--gold); }

        /* Hero Section */
        .marquee-container + header {
            margin-top: 16px;
            padding-top: 12px;
        }

        header {
            padding: 32px 20px 28px;
            position: relative;
            text-align: center;
            overflow: visible;
            box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.03), inset 0 0 48px rgba(205, 127, 50, 0.02);
        }

        header::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 0;
            opacity: 0.05;
            background-image: 
                radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        header::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 0;
            background: radial-gradient(ellipse 85% 70% at 50% 35%, rgba(212, 175, 55, 0.07) 0%, rgba(205, 127, 50, 0.035) 40%, transparent 72%);
            pointer-events: none;
        }

        .hero-title {
            text-shadow: none;
            filter:
                drop-shadow(0 0 6px rgba(255, 255, 255, 0.1))
                drop-shadow(0 0 14px rgba(212, 175, 55, 0.22))
                drop-shadow(0 0 28px rgba(212, 175, 55, 0.09));
        }

        .hero-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 82%, #c9a848 96%, var(--bronze) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .hero-title .dead-hang-text {
            color: var(--text);
            text-shadow: none;
        }
        header > * {
            position: relative;
            z-index: 1;
        }

        .status-pill {
            display: inline-block;
            background: transparent;
            border: 1px solid var(--accent-red);
            color: var(--accent-red);
            padding: 5px 20px;
            border-radius: 20px;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            box-shadow: 0 0 15px var(--accent-red-glow);
        }

        .partner-gym-badge {
            display: inline-block;
            margin-left: 4px;
            padding: 1px 6px;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: #cd7f32;
            border: 1px solid rgba(205, 127, 50, 0.45);
            border-radius: 3px;
            vertical-align: middle;
            white-space: nowrap;
        }

        .founding-badge {
            display: inline-block;
            margin-left: 4px;
            padding: 1px 6px;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: #D4AF37;
            border: 1px solid rgba(212, 175, 55, 0.45);
            border-radius: 3px;
            vertical-align: middle;
            white-space: nowrap;
            background: rgba(212, 175, 55, 0.08);
        }

        .pro-badge {
            display: inline-block;
            margin-left: 4px;
            padding: 1px 6px;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: #000;
            background: linear-gradient(135deg, #D4AF37, #b8962e);
            border: 1px solid rgba(212, 175, 55, 0.65);
            border-radius: 3px;
            vertical-align: middle;
            white-space: nowrap;
        }

        h1 {
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-size: 7rem;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.95;
            margin: 0 auto 20px;
            color: #fff;
            letter-spacing: 3px;
        }

        h1.hero-title {
            text-shadow: none;
        }

        .subtitle {
            font-family: 'Roboto Mono', monospace;
            font-size: 1rem;
            color: #b0b0b0;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-top: 15px;
            font-weight: 600;
        }

        .container {
            max-width: 1480px;
            margin: 0 auto;
            padding: 28px 24px 80px;
            flex-grow: 1;
        }
        
        header + .container {
            margin-top: 0;
            padding-top: 36px;
        }

        /* Layout Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 20px 48px;
            align-items: stretch;
        }

        .main-column,
        .sidebar-column {
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .main-column-stack,
        .sidebar-upper {
            flex: 1 1 auto;
        }

        .home-lower-band,
        .sidebar-lower {
            flex: 0 0 auto;
            margin-top: auto;
        }

        .home-lower-band {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
        }

        .home-lower-band > .video-submissions-section {
            margin-top: 0;
        }

        .home-lower-band > .cta-section {
            margin-top: 0;
        }

        /* Controls Section */
        .controls {
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }

        .controls-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 10px;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .lb-gym-row {
            flex-wrap: wrap;
        }
        .lb-gym-row .lb-toolbar-search {
            flex: 1 1 220px;
            min-width: 200px;
            max-width: 360px;
            margin-left: auto;
        }

        .controls h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            text-transform: uppercase;
            line-height: 1;
            margin: 0;
            background: linear-gradient(180deg, #fff 0%, #ccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .division-tabs {
            display: flex;
            gap: 5px;
            background: #111;
            padding: 4px;
            border-radius: 6px;
            border: 1px solid var(--border);
        }

        .division-tabs button {
            background: transparent;
            border: none;
            color: var(--text-dim);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            padding: 8px 16px;
            cursor: pointer;
            transition: 0.2s;
            border-radius: 4px;
            text-align: center; /* Center text inside button */
            flex-grow: 1; /* Allow buttons to grow */
        }
        
        .division-tabs button:hover {
            color: #fff;
        }

        .division-tabs button.active {
            color: #000;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .sort-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-dim);
            font-family: 'Roboto Mono', monospace;
        }
        
        .sort-toggle {
            cursor: pointer;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--silver);
            transition: color 0.2s;
        }
        
        .sort-toggle:hover { color: var(--gold); }

        /* Search Bar */
        .search-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        .search-container {
            position: relative;
            flex: 1;
            max-width: 400px;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--text);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1rem;
            transition: all 0.2s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 2px var(--gold-glow);
        }
        
        .search-input::placeholder {
            color: var(--text-dim);
        }
        
        .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-dim);
            pointer-events: none;
        }
        
        .clear-search-btn {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            font-size: 1rem;
            padding: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
        }
        
        .clear-search-btn:hover {
            color: var(--text);
        }
        
        .search-count {
            font-family: 'Roboto Mono', monospace;
            font-size: 0.8rem;
            color: var(--text-dim);
            white-space: nowrap;
        }
        
        .lb-toolbar {
            display: block;
            padding: 0;
            margin: 0;
            background: transparent;
            border: none;
        }
        .main-column > .controls {
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .main-column > .controls + .leaderboard {
            margin-top: 4px;
        }
        .controls .lb-toolbar {
            margin-bottom: 16px;
            padding-bottom: 0;
        }
        .lb-gym-filter {
            margin-bottom: 2px;
        }
        .lb-gym-select {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-dim);
            background: #111;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 8px 12px;
            min-width: 160px;
            cursor: pointer;
        }
        .lb-gym-select:focus {
            outline: none;
            border-color: rgba(212, 175, 55, 0.45);
            color: #ddd;
        }

        .lb-toolbar-filters {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .lb-filter-group {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .lb-filter-label {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--ui-caption);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            min-width: 58px;
            flex-shrink: 0;
        }
        .lb-toolbar .lb-tab-strip.division-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 2px;
            background: transparent;
            padding: 0;
            border: none;
            border-radius: 0;
            flex: 1 1 auto;
        }
        .lb-toolbar .lb-tab-strip.division-tabs button {
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            color: #777;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 600;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 6px 12px 8px;
            border-radius: 0;
            flex-grow: 0;
            box-shadow: none;
            transition: color 0.15s, border-color 0.15s;
        }
        .lb-toolbar .lb-tab-strip.division-tabs button:hover {
            color: #ccc;
            background: transparent;
        }
        .lb-toolbar .lb-tab-strip.division-tabs button.active {
            color: var(--gold);
            background: transparent;
            border-bottom-color: var(--bronze);
            box-shadow: none;
        }
        .lb-toolbar-search {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1 1 260px;
            min-width: 220px;
            margin-left: auto;
        }
        .lb-toolbar-search .search-container { max-width: none; flex: 1; }
        .lb-toolbar-search .search-input {
            border-radius: 6px;
            padding: 10px 40px 10px 14px;
            font-size: 0.95rem;
        }
        .toolbar-athlete-count {
            font-family: 'Roboto Mono', monospace;
            font-size: 0.75rem;
            color: var(--bronze);
            white-space: nowrap;
        }
        .lb-status {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.84rem;
            font-weight: 600;
            color: var(--ui-caption);
            letter-spacing: 0.3px;
            margin-bottom: 14px;
            padding-left: 2px;
        }
        #current-cat-display { display: none; }

        nav { 
            padding: 0 30px;
            height: 72px;
            border-bottom: 1px solid rgba(205, 127, 50, 0.45);
            box-shadow: 0 1px 0 rgba(212, 175, 55, 0.12), inset 0 -2px 0 rgba(205, 127, 50, 0.18);
            background: linear-gradient(180deg, rgba(12, 10, 8, 0.95) 0%, rgba(0, 0, 0, 0.88) 100%);
            backdrop-filter: blur(12px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-logo {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            text-decoration: none;
        }
        .nav-logo img {
            display: block;
            height: 60px;
            width: auto;
            max-width: 280px;
            object-fit: contain;
            }


        .nav-center {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: safe center;
            gap: 8px;
            padding: 0 6px;
        }
        .nav-center a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1.22rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            padding: 10px 14px;
            border-radius: 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-center a:hover { 
            color: var(--bronze); 
            background: rgba(205, 127, 50, 0.1);
        }
        .nav-center a.active {
            color: var(--gold);
            background: linear-gradient(180deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.05) 100%);
        }

        .nav-cta {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%) !important;
            color: #000 !important;
            border: 1px solid rgba(205, 127, 50, 0.5) !important;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 20px !important;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
        .nav-cta:hover {
            background: linear-gradient(135deg, #e8c96a 0%, #d4954a 100%) !important;
            color: #000 !important;
            box-shadow: 0 0 14px var(--bronze-glow);
        }
        
        
        @media (min-width: 901px) {
            .nav-logo img { height: 68px !important; width: auto; max-width: 300px !important; }
            .nav-links a { font-size: 1.1rem !important; margin-left: 30px !important; }
            header { text-align: center !important; }
        }

        @media (max-width: 1366px) and (min-width: 901px) {
            nav { padding: 0 14px; gap: 6px; }
            .nav-logo img { height: 52px !important; max-width: 200px !important; }
            .nav-center a { padding: 8px 10px; font-size: 1.08rem; letter-spacing: 0.5px; }
            .nav-cta { padding: 8px 12px !important; font-size: 1.02rem; }
        }



        @media (max-width: 900px) {
            .lb-toolbar {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .lb-toolbar-filters {
                width: 100%;
                gap: 6px;
            }
            .lb-filter-group {
                flex-direction: row;
                align-items: center;
                flex-wrap: nowrap;
                gap: 6px;
            }
            .lb-filter-label {
                flex: 0 0 auto;
                min-width: 44px;
            }
            .lb-filter-group .lb-tab-strip {
                flex: 1;
                min-width: 0;
            }
            .lb-toolbar-search {
                width: 100%;
                min-width: 0;
                margin-left: 0;
            }
            .name-cell {
                padding-right: 8px !important;
            }
            .name-line.name-first,
            .name-line.name-primary {
                font-size: 1.15rem !important;
            }
            .name-line.name-last {
                font-size: 1.02rem !important;
            }
        }

        /* Leaderboard Table */
        .leaderboard {
            margin-top: 0;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow-x: auto;
            overflow-y: visible;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
        }

        #leaderboard-body {
            margin: 0;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .leaderboard-footer-cta {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 28px 20px 32px;
            border-top: 1px solid var(--border);
            background: #080808;
            border-radius: 0 0 7px 7px;
            text-align: center;
        }

        .leaderboard-footer-cta-btn {
            display: inline-block;
            font-size: 0.95rem !important;
            padding: 12px 28px !important;
            margin: 0 auto;
        }

        .lb-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 48px 20px;
            color: var(--ui-caption);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .lb-loading-spinner {
            width: 36px;
            height: 36px;
            border: 3px solid rgba(212, 175, 55, 0.15);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: lb-spin 0.9s linear infinite;
        }

        @keyframes lb-spin {
            to { transform: rotate(360deg); }
        }

        @media (prefers-reduced-motion: reduce) {
            .lb-loading-spinner { animation: none; border-top-color: var(--gold); opacity: 0.7; }
        }

        .leaderboard > .lb-header {
            margin: 0;
            border-radius: 7px 7px 0 0;
            flex-shrink: 0;
        }

        .lb-header {
            display: grid;
            grid-template-columns: 52px 100px minmax(100px, 1.05fr) minmax(64px, 0.55fr) minmax(72px, 0.65fr) minmax(68px, 0.6fr) minmax(56px, 0.55fr) 92px;
            gap: 10px 12px;
            padding: 10px 18px 10px 16px;
            min-height: 42px;
            box-sizing: border-box;
            font-size: 0.86rem;
            color: var(--ui-label);
            text-transform: uppercase;
            border-bottom: 1px solid var(--border);
            background: #080808;
            letter-spacing: 0.5px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 700;
            position: relative;
            top: auto;
            z-index: 4;
            align-items: center;
        }

        .lb-header > * {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 28px;
            line-height: 1.15;
            white-space: nowrap;
        }

        .lb-header > .lb-h-athlete {
            justify-content: flex-start;
            text-align: left;
            padding-left: 2px;
        }

        .lb-header > .lb-h-grip .lb-tm {
            font-size: 0.55em;
            vertical-align: super;
            line-height: 0;
            margin-left: 0.5px;
        }

        .lb-toolbar .lb-tab-strip.division-tabs button .lb-tm {
            font-size: 0.55em;
            vertical-align: super;
            line-height: 0;
            margin-left: 0.5px;
        }

        .lb-row {
            display: grid;
            grid-template-columns: 52px 100px minmax(100px, 1.05fr) minmax(64px, 0.55fr) minmax(72px, 0.65fr) minmax(68px, 0.6fr) minmax(56px, 0.55fr) 92px;
            gap: 10px 12px;
            padding: 12px 18px 12px 16px;
            align-items: center;
            transition: background 0.15s ease, border-color 0.15s ease;
            min-height: 68px;
            position: relative;
            border-left: 3px solid transparent;
        }

        .lb-row:hover { 
            background: var(--surface-hover); 
            border-left-color: var(--tier-accent, var(--gold-dim));
        }

        .lb-row-wrapper.details-visible .lb-row,
        .lb-row-wrapper:hover .lb-row {
            border-left-color: var(--tier-accent, var(--gold-dim));
        }
        
        .lb-row-wrapper:nth-child(even) .lb-row {
            background: rgba(255, 255, 255, 0.018);
        }
        .lb-row-wrapper:nth-child(even) .lb-row:hover {
            background: var(--surface-hover);
        }

        .lb-row-wrapper.athlete-highlight .lb-row {
            background: rgba(212, 175, 55, 0.12) !important;
            box-shadow: inset 3px 0 0 var(--gold), 0 0 24px var(--gold-glow);
        }

        @media (min-width: 901px) {
            .lb-row > .rank {
                text-align: center;
            }
            .lb-row > .tier-col {
                padding-right: 10px;
            }
            .lb-row > .name-cell {
                padding-left: 4px;
            }
            .lb-row > .tier-col,
            .lb-row > .lb-col-occupation,
            .lb-row > .grip-age-col {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
            }
            .lb-row > *:nth-child(6) {
                text-align: center;
            }
            .lb-row > .watch-col,
            .lb-row > *:nth-child(8) {
                text-align: center;
                justify-self: center;
                padding-right: 0;
            }
            .leaderboard .lb-row .tier-badge,
            .leaderboard .tier-col .tier-badge {
                width: 100px;
                min-width: 100px;
                max-width: 100px;
                box-sizing: border-box;
                white-space: nowrap;
                padding-left: 8px;
                padding-right: 8px;
                font-size: 0.76rem;
                letter-spacing: 0.5px;
            }
            .lb-col-occupation {
                color: #aaa;
                font-size: 1.08rem;
                line-height: 1.3;
                text-align: center;
            }
            .location-col {
                color: #bbb;
                font-size: 1.05rem;
                text-align: center;
                display: grid;
                grid-template-columns: minmax(0, 1fr) 26px;
                align-items: center;
                justify-items: center;
                column-gap: 8px;
                width: 100%;
            }

            .location-col .location-stack {
                grid-column: 1;
                justify-self: center;
            }

            .location-col .flag {
                grid-column: 2;
                justify-self: center;
            }
            .location-stack {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3px;
                line-height: 1.15;
            }
            .location-city {
                font-weight: 600;
                color: #ccc;
            }
            .location-state {
                font-size: 0.92em;
                color: #999;
                font-weight: 500;
            }
        }

        /* Tier Badges, Combo 2+3 (rank bar + metallic top tiers) */
        .tier-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 10px 6px 14px;
            border-radius: 4px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            width: 118px;
            min-width: 118px;
            max-width: 118px;
            height: 36px;
            line-height: 1;
            box-sizing: border-box;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }
        .tier-badge::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            z-index: 1;
        }
        .tier-freak {
            background: linear-gradient(145deg, #3a1060, #1a0828);
            color: #e8c8ff;
            border: 1px solid rgba(150, 60, 220, 0.45);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 12px rgba(120, 40, 200, 0.25);
        }
        .tier-freak::before { background: linear-gradient(180deg, #c080ff, #7b2cbf); }
        .tier-legend {
            background: linear-gradient(145deg, #3d2410, #1a0f06);
            color: #e8a04a;
            border: 1px solid rgba(205, 127, 50, 0.5);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 10px rgba(205, 127, 50, 0.25);
        }
        .tier-legend::before { background: linear-gradient(180deg, #e8a04a, #8b5a2b); }
        .tier-elite {
            background: linear-gradient(145deg, #3a3a3a, #181818);
            color: #eee;
            border: 1px solid rgba(160, 160, 160, 0.35);
        }
        .tier-elite::before { background: linear-gradient(180deg, #eee, #888); }
        .tier-pro {
            background: rgba(0, 0, 0, 0.5);
            color: #ff9999;
            border: 1px solid rgba(180, 40, 40, 0.4);
        }
        .tier-pro::before { background: linear-gradient(180deg, #f66, #900); }
        .tier-pro-gold {
            background: linear-gradient(145deg, #4a3c14, #1a1606);
            color: var(--gold);
            border: 1px solid rgba(212, 175, 55, 0.5);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 10px rgba(212, 175, 55, 0.2);
        }
        .tier-pro-gold::before { background: linear-gradient(180deg, #f0d060, #b8860b); }
        .tier-challenger {
            background: transparent;
            color: #888;
            border: 1px solid #3a3a3a;
        }
        .tier-challenger::before { background: #555; }
        .tier-contender {
            background: transparent;
            color: #4fa870;
            border: 1px solid rgba(30, 132, 73, 0.35);
        }
        .tier-contender::before { background: #2d8659; }

        /* Pagination Buttons */
        .pagination-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pagination-btn:hover:not(:disabled) {
            background: var(--surface-hover);
            border-color: var(--gold);
            color: var(--gold);
        }
        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        } 

        .rank { 
            font-family: 'Oswald', sans-serif; 
            font-size: 2.05rem;
            font-weight: 700; 
            color: #555; 
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }
        .rank-1 { 
            color: var(--gold); 
        }
        .rank-2 {
            color: #c0c0c0;
        }
        .rank-3 {
            color: var(--bronze);
        }

        .name-cell {
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: visible;
            padding-right: 6px;
        }

        .name-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 0;
            flex-wrap: nowrap;
            width: 100%;
        }

        .name-primary-row {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            flex: 0 1 auto;
            min-width: 0;
            max-width: 100%;
        }

        .name-primary-row.name-primary-row--stacked-pr {
            align-items: flex-start;
            flex-wrap: nowrap;
        }

        .name-line.name-first-row {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }

        .name-line.name-first-row .pr-badge-inline {
            flex-shrink: 0;
        }
        .pr-badge-inline {
            margin-left: 2px;
            flex-shrink: 0;
        }
        .pr-badge-inline .pr-val {
            font-size: 0.82rem;
            padding: 2px 6px;
        }

        .name-stack {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            min-width: min-content;
            flex: 0 1 auto;
        }

        .name-line {
            font-family: 'Oswald', sans-serif;
            line-height: 1.12;
            white-space: nowrap;
            word-break: keep-all;
            overflow-wrap: normal;
        }

        .name-line.name-first,
        .name-line.name-primary {
            font-weight: 600;
            font-size: 1.5rem;
            color: #fff;
            letter-spacing: 0.2px;
        }

        .name-line.name-last {
            font-weight: 500;
            font-size: 1.2rem;
            color: #aaa;
            letter-spacing: 0.3px;
            display: block;
            max-width: none;
        }

        .pr-col {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 2px;
        }

        .grip-age-col {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.1;
        }

        .grip-age-val {
            font-family: 'Oswald', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--bronze);
            font-variant-numeric: tabular-nums;
        }

        .grip-age-val.mature {
            color: #9a9a9a;
        }

        .grip-age-val.na {
            font-size: 0.72rem;
            font-family: 'Roboto Mono', monospace;
            font-weight: 600;
            color: var(--bronze-dim);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .name { 
            font-family: 'Oswald', sans-serif; 
            font-weight: 600; 
            font-size: 1.4rem; 
            letter-spacing: 0.2px; 
            color: #fff;
            line-height: 1.15;
        }
        
        .name-cell .gender-label {
            display: none;
        }
        
        .details-panel .athlete-meta-gender {
            font-size: 0.78rem;
            color: var(--ui-caption);
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .location {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.92rem;
            color: var(--ui-caption);
            text-transform: none;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }
        
        .flag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            min-width: 22px;
            height: 16px;
            flex-shrink: 0;
            filter: grayscale(0.15);
        }

        .flag img,
        .emoji-flag {
            display: block;
            width: 20px;
            height: 14px;
            object-fit: cover;
            border-radius: 1px;
        }

        .gender-label {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.88rem;
            color: var(--ui-caption);
            font-weight: 600;
            text-transform: uppercase;
            display: inline-block;
            vertical-align: middle;
            margin-left: 6px;
            margin-top: 4px;
            line-height: 1;
        }


        .pr-badge .pr-val {
            font-size: 1.15rem;
            font-weight: 700;
            font-family: 'Oswald', sans-serif;
        }


        .time { 
            font-family: 'Oswald', sans-serif; 
            font-size: 2.15rem;
            color: var(--gold); 
            font-weight: 700; 
            letter-spacing: 0.5px; 
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        
        .watch-col {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
            justify-self: center;
        }

        .lb-header > .lb-h-watch {
            justify-self: center;
        }

        .watch-col .video-btn,
        .watch-col a.watch-link.video-btn,
        .watch-col .video-preview {
            padding: 9px 12px;
            min-width: 0;
            width: 100%;
            max-width: 92px;
            font-size: 0.78rem;
            letter-spacing: 0.5px;
            box-sizing: border-box;
        }
        
        /* Hide mobile-time on desktop, show desktop-time */
        .mobile-time {
            display: none;
        }
        .desktop-time {
            display: block;
        }
        
        .video-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--silver);
            text-decoration: none;
            font-size: 0.92rem;
            background: transparent;
            border: 1px solid #333;
            padding: 12px 22px;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: 'Roboto Mono', monospace;
            transition: all 0.2s;
            min-width: 92px;
            line-height: 1.2;
        }
        .video-btn:hover { 
            background: #fff; 
            color: #000;
            border-color: #fff;
        }
        
        @media (max-width: 900px) {
            .video-btn {
                font-size: 0.78rem;
                padding: 8px 14px;
                min-width: 72px;
                text-align: center;
            }
            
            .marquee-content {
                --marquee-duration: 50s;
            }

            .marquee-track > span {
                font-size: 0.85rem;
            }
        }

        /* Smart Video Preview Styles */
        .video-preview {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            transition: all 0.2s;
            border: 1px solid #333;
            background: rgba(0, 0, 0, 0.3);
        }
        
        .video-preview:hover {
            border-color: var(--gold);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* YouTube Preview */
        .youtube-preview {
            width: 120px;
            height: 68px;
        }
        
        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 0, 0, 0.8);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Platform Previews (Drive, Reddit, Instagram, TikTok, Generic) */
        .drive-preview, .reddit-preview, .instagram-preview, 
        .tiktok-preview, .generic-preview {
            width: auto;
            min-width: 92px;
            height: 44px;
            padding: 10px 18px;
            gap: 8px;
        }
        
        .platform-icon {
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .platform-text {
            font-size: 0.88rem;
            color: var(--silver);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .platform-badge {
            display: none;
        }
        
        .video-preview .platform-icon {
            display: none;
        }
        
        a.watch-link.video-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.92rem;
            padding: 12px 22px;
            min-width: 92px;
            width: auto;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            border-radius: 4px;
            border-color: #2a2a2a;
            color: #bbb;
        }
        a.watch-link.video-btn:hover {
            border-color: var(--bronze);
            color: var(--gold);
            background: rgba(205, 127, 50, 0.08);
        }
        
        /* Platform-specific colors */
        .drive-preview:hover { border-color: #4285F4; }
        .reddit-preview:hover { border-color: #FF4500; }
        .instagram-preview:hover { border-color: #E4405F; }
        .tiktok-preview:hover { border-color: #000000; }
        .generic-preview:hover { border-color: var(--gold); }
        
        /* Desktop-only: Title on two lines - World Dead Hang / CHAMPIONSHIP */
        @media (min-width: 901px) {
            h1 .dead-hang-text {
                color: var(--text) !important;
            }
            h1 {
                white-space: nowrap;
            }
            h1 span:first-child, h1 .dead-hang-text {
                display: inline;
                white-space: nowrap;
            }
            
            /* Desktop-only: Larger header elements to fill space better */
            
            
            
            .marquee-container + header {
                margin-top: 12px !important;
                padding-top: 8px !important;
            }

            header {
                padding: 24px 20px 16px !important;
                margin-bottom: 0;
            }
            header + .container {
                padding-top: 28px !important;
            }
            .controls-header {
                margin-bottom: 10px;
            }
            .controls h2 {
                font-size: 2.2rem;
            }
            .lb-gym-row .lb-toolbar-search {
                flex: 0 1 320px;
                max-width: 360px;
                margin-left: auto;
            }
            h1 {
                font-size: 7rem !important; /* Restored to original size */
                margin: 0 auto 20px !important; /* Restored original margin */
            }
            .subtitle {
                font-size: 1rem !important;
                margin-bottom: 20px !important;
            }

            /* Desktop-only: Wider sidebar for tier classifications table */
            .content-grid {
                grid-template-columns: 1fr 360px !important; /* Increased from 320px */
                gap: 40px;
                align-items: stretch !important;
            }

            .home-lower-band {
                gap: 14px;
            }

            .home-lower-band > .cta-section {
                padding: 28px 24px;
            }
            
            /* Desktop: tier already in table column - hide in expanded details */
            .details-panel .tier-in-details,
            .details-panel .details-meta-tier {
                display: none !important;
            }

            .main-column > .controls + .leaderboard {
                margin-top: 0 !important;
            }

            .controls .lb-toolbar {
                margin-bottom: 14px !important;
            }

            .lb-header {
                position: relative !important;
                top: auto !important;
            }

            .details-panel {
                font-size: 1.05rem;
                max-height: none !important;
                display: grid;
                grid-template-rows: 0fr;
                transition: grid-template-rows 0.28s ease-out, padding 0.2s ease-out, border-left-color 0.2s ease-out;
            }

            .details-panel > .details-grid {
                min-height: 0;
                overflow: hidden;
            }

            .details-meta-row {
                display: none;
            }

            .lb-row-wrapper:hover .details-panel,
            .lb-row-wrapper.details-visible .details-panel {
                grid-template-rows: 1fr;
                max-height: none !important;
                padding: 10px 20px 12px;
                border-left: 3px solid var(--tier-accent, var(--gold-dim));
                overflow: hidden;
            }
        }

        /* Mobile adjustments */
        @media (max-width: 900px) {
            .video-preview {
                width: 60px;
                height: 30px;
            }
            
            .youtube-preview {
                width: 60px;
                height: 45px;
                margin: 0 auto;
            }
            
            .youtube-preview .play-button {
                width: 20px;
                height: 20px;
                font-size: 8px;
            }
            
            .youtube-preview .platform-badge {
                display: none;
            }
            
            .drive-preview, .reddit-preview, .instagram-preview, 
            .tiktok-preview, .generic-preview {
                width: 40px;
                height: 30px;
                padding: 4px;
                gap: 0;
                justify-content: center;
                margin: 0 auto;
            }
            
            .video-preview .platform-icon,
            .video-preview .platform-badge {
                display: none !important;
            }
            
            .video-preview .platform-text {
                display: block !important;
                font-size: 0.78rem;
            }
            
            .video-preview {
                width: auto;
                min-width: 72px;
                height: 36px;
                padding: 8px 14px;
            }
            
            .play-button {
                width: 24px;
                height: 24px;
                font-size: 10px;
            }
        }

        /* === MOBILE: CARD LEADERBOARD (nav + submit bar: css/wdhc-nav.css) === */
        @media (max-width: 900px) {
            html, body {
                overflow-x: hidden;
                max-width: 100vw;
            }

            .marquee-container {
                position: relative !important;
                top: auto !important;
                z-index: 1 !important;
                padding: 6px 0;
            }

            .marquee-container + header {
                margin-top: 0 !important;
                padding: 24px 16px 16px !important;
            }

            header {
                padding: 24px 16px 16px !important;
            }

            header .status-pill {
                margin-bottom: 14px !important;
                font-size: 0.68rem !important;
                padding: 5px 16px !important;
                letter-spacing: 2px !important;
            }

            header h1 {
                font-size: clamp(2.85rem, 12vw, 3.9rem) !important;
                font-weight: 700 !important;
                line-height: 1.02 !important;
                margin-bottom: 10px !important;
                letter-spacing: 2px !important;
            }

            header h1 span {
                display: block !important;
                line-height: 1.02 !important;
                margin-bottom: 4px !important;
            }

            header h1 br {
                display: none !important;
            }

            header .subtitle {
                font-size: clamp(0.68rem, 2.65vw, 0.9rem) !important;
                letter-spacing: clamp(0.35px, 0.18vw, 1.8px) !important;
                white-space: normal !important;
                text-wrap: balance;
                margin-top: 10px !important;
                line-height: 1.35 !important;
                max-width: 100%;
                color: #888 !important;
            }

            header + .container {
                padding-top: 20px !important;
                margin-top: 0 !important;
            }

            .container {
                padding: 0 12px 24px !important;
                max-width: 100%;
            }

            .content-grid {
                gap: 24px !important;
            }

            .main-column {
                min-width: 0;
                width: 100%;
            }

            .controls {
                margin-bottom: 0 !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
                border-bottom: none !important;
            }

            .controls-header {
                margin-bottom: 6px !important;
                gap: 0 !important;
            }

            .controls h2 {
                font-size: 1.15rem !important;
                margin: 0 !important;
                line-height: 1.1 !important;
            }

            .lb-toolbar {
                gap: 8px !important;
                margin-bottom: 12px !important;
                padding-bottom: 0 !important;
                border-bottom: none !important;
            }

            .lb-toolbar-filters {
                gap: 6px !important;
                flex: none !important;
            }

            .lb-filter-group {
                gap: 8px !important;
                align-items: center !important;
            }

            .lb-filter-label {
                font-size: 0.72rem !important;
                min-width: unset !important;
                margin-bottom: 0 !important;
            }

            .lb-gym-row .lb-toolbar-search {
                width: 100% !important;
                min-width: 0 !important;
                max-width: none !important;
                margin-left: 0 !important;
                flex: 1 1 100% !important;
                margin-top: 6px !important;
            }

            .lb-toolbar-search .search-input {
                padding: 8px 36px 8px 12px !important;
                font-size: 0.88rem !important;
            }

            .lb-tab-strip {
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .lb-tab-strip::-webkit-scrollbar {
                display: none;
            }

            .leaderboard {
                width: 100%;
                border-radius: 16px;
                border: 1px solid rgba(212, 175, 55, 0.12);
                background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
                overflow: hidden;
                box-shadow: 0 12px 40px rgba(0,0,0,0.45);
            }

            .lb-header {
                display: none !important;
            }

            .lb-mobile-tap-hint:not([hidden]) {
                display: flex;
            }

            .lb-row-wrapper {
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }

            .lb-row-wrapper:last-child {
                border-bottom: none;
            }

            .lb-row.lb-mobile-card {
                display: flex !important;
                align-items: stretch;
                gap: 12px;
                padding: 16px 14px !important;
                min-height: unset !important;
                cursor: pointer;
                border-left: none !important;
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }

            .lb-row.lb-mobile-card:active {
                background: rgba(212, 175, 55, 0.06);
            }

            .lb-card-rank {
                flex: 0 0 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Oswald', sans-serif;
                font-size: 1.35rem;
                font-weight: 700;
                color: var(--text-dim);
                line-height: 1;
            }

            .lb-card-rank.rank-1,
            .lb-card-rank.rank-2,
            .lb-card-rank.rank-3 {
                color: var(--gold);
            }

            .lb-card-main {
                flex: 1;
                min-width: 0;
                display: flex;
                flex-direction: column;
                gap: 6px;
            }

            .lb-card-head {
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                gap: 10px;
                margin-bottom: 2px;
            }

            .lb-card-name-block {
                min-width: 0;
                flex: 1;
            }

            .lb-card-name {
                font-size: 1.2rem;
                font-weight: 700;
                line-height: 1.2;
                color: #fff;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 4px;
            }

            .lb-card-name--long,
            .lb-card-name--stacked {
                flex-direction: column;
                align-items: flex-start;
                flex-wrap: nowrap;
                gap: 3px;
            }

            .lb-card-name-line-primary {
                display: inline-flex;
                align-items: center;
                gap: 4px;
                flex-wrap: nowrap;
                max-width: 100%;
                font-size: 1.22rem;
                font-weight: 700;
                line-height: 1.15;
            }

            .lb-card-name-line-primary .pr-badge {
                flex-shrink: 0;
            }

            .lb-card-name-line-last {
                display: block;
                font-weight: 600;
                font-size: 1.06rem;
                color: #ccc;
                line-height: 1.2;
                white-space: nowrap;
            }

            .lb-card-time {
                flex-shrink: 0;
                font-family: 'Roboto Mono', monospace;
                font-size: 1.45rem;
                font-weight: 700;
                color: var(--gold);
                letter-spacing: 0.02em;
                line-height: 1;
                padding-top: 2px;
            }

            .lb-card-meta {
                display: flex;
                flex-direction: column;
                gap: 4px;
                font-size: 0.74rem;
                color: #888;
            }

            .lb-card-split {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                gap: 8px 12px;
                align-items: start;
            }

            .lb-card-col-left {
                display: flex;
                flex-direction: column;
                gap: 6px;
                min-width: 0;
            }

            .lb-card-col-right {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                flex-shrink: 0;
            }

            .lb-card-loc-row {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                color: #999;
                margin-top: 4px;
                text-align: center;
            }

            .lb-card-tier-row {
                display: flex;
                align-items: center;
                gap: 6px;
                flex-wrap: wrap;
            }

            .lb-card-tier-row .pr-badge {
                margin: 0;
                flex-shrink: 0;
            }

            .lb-card-tier-row .pr-badge-inline {
                margin-left: 0;
            }

            .lb-card-tier-row .pr-badge .pr-val {
                font-size: 0.72rem;
                gap: 2px;
            }

            .lb-card-grip-col {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 0;
                text-align: right;
                margin-top: 8px;
            }

            .lb-card-loc {
                min-width: 0;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .lb-card-meta .tier-badge {
                flex-shrink: 0;
            }

            .lb-card-meta .flag {
                flex-shrink: 0;
            }

            .lb-card-meta .flag img {
                width: 18px;
                height: auto;
                vertical-align: middle;
            }

            .lb-card-grip {
                display: flex;
                flex-direction: row;
                align-items: baseline;
                justify-content: flex-end;
                gap: 5px;
                white-space: nowrap;
                line-height: 1.15;
                color: var(--bronze);
            }

            .lb-card-grip-label {
                font-family: 'Roboto Mono', monospace;
                font-size: 0.68rem;
                font-weight: 600;
                color: var(--bronze);
                letter-spacing: 0.1px;
            }

            .lb-card-grip-label .lb-tm {
                font-size: 0.55em;
                vertical-align: super;
                line-height: 0;
                margin-left: 0.5px;
                color: var(--bronze);
            }

            .lb-card-grip-val {
                font-family: 'Roboto Mono', monospace;
                font-size: 0.68rem;
                font-weight: 700;
                color: var(--bronze);
            }

            .lb-card-grip--na,
            .lb-card-grip--na .lb-card-grip-label,
            .lb-card-grip--na .lb-card-grip-val,
            .lb-card-grip--na .lb-card-grip-label .lb-tm {
                color: #666;
            }

            .lb-gym-filter {
                display: flex !important;
                width: 100%;
            }

            .lb-gym-filter .lb-gym-select {
                flex: 1;
                min-width: 0;
                width: 100%;
                max-width: none;
                font-size: 0.82rem !important;
                padding: 7px 10px !important;
            }

            .lb-card-actions {
                flex: 0 0 auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
            }

            .lb-card-actions .video-btn,
            .lb-card-actions .watch-link {
                font-size: 0.65rem !important;
                padding: 8px 10px !important;
                min-width: 58px !important;
            }

            .lb-card-chevron {
                width: 8px;
                height: 8px;
                border-right: 2px solid #555;
                border-bottom: 2px solid #555;
                transform: rotate(45deg);
                transition: transform 0.2s ease, border-color 0.2s ease;
            }

            .lb-row-wrapper.details-visible .lb-card-chevron {
                transform: rotate(-135deg);
                border-color: var(--gold);
                margin-top: 4px;
            }

            .details-panel {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.35s ease-out, padding 0.25s ease;
                background: #060606 !important;
                padding: 0 14px !important;
                border-left: none !important;
                border-top: 1px solid rgba(212, 175, 55, 0.08);
            }

            .lb-row-wrapper.details-visible .details-panel {
                max-height: none;
                padding: 12px 14px 14px !important;
                overflow-y: visible !important;
            }

            .details-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 10px !important;
            }

            .details-grid > div,
            .details-section {
                min-width: 0;
                width: 100%;
            }

            .details-section--grip-mobile,
            .details-section--comp,
            .details-section--training {
                background: rgba(255, 255, 255, 0.025);
                border-color: rgba(212, 175, 55, 0.12);
            }

            .details-section--gym {
                display: none !important;
            }

            .details-meta-row--verified-only {
                grid-column: 1 / -1 !important;
                justify-content: center !important;
                gap: 0 !important;
                padding: 7px 10px !important;
                margin-top: 0 !important;
                border-color: rgba(212, 175, 55, 0.2) !important;
                background: rgba(212, 175, 55, 0.05) !important;
            }

            .details-meta-row--verified-only .details-verified {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                color: var(--gold) !important;
                font-size: 0.78rem !important;
                font-weight: 700 !important;
                letter-spacing: 0.1em;
                text-transform: uppercase;
            }

            .lb-card-grip-row {
                display: flex;
                justify-content: flex-end;
                width: 100%;
                margin-top: 2px;
            }

            .lb-card-grip-row .lb-card-grip-col {
                margin-top: 0;
            }

            .lb-card-tier-row {
                display: none !important;
            }

            .details-field-label {
                flex: 0 0 44% !important;
                font-size: 0.82rem !important;
                font-weight: 700 !important;
                color: #d4c48a !important;
                margin-bottom: 0 !important;
                letter-spacing: 0.35px !important;
                line-height: 1.35 !important;
            }

            .details-field-val {
                font-size: 0.98rem !important;
                line-height: 1.3 !important;
            }

            .details-field-val-em {
                font-size: 1.02rem !important;
            }

            .details-field-val-lg {
                font-size: 1.05rem !important;
            }

            .details-field-sub {
                font-size: 0.78rem !important;
                margin-top: 3px !important;
            }

            .details-section {
                padding: 10px 12px 8px !important;
                border-radius: 8px !important;
            }

            .details-field {
                padding: 7px 0 !important;
                gap: 10px !important;
            }

            .lb-card-meta-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                width: 100%;
            }

            .lb-card-meta-row .lb-card-loc-row {
                flex: 1;
                min-width: 0;
                justify-content: flex-start;
                margin-top: 0;
                text-align: left;
            }

            .lb-card-meta-row .lb-card-grip-row {
                flex-shrink: 0;
                margin-top: 0;
            }

            .details-meta-row:not(.details-meta-row--verified-only) {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .lb-card-name {
                font-size: 1.14rem;
            }

            .lb-card-name-line-primary {
                font-size: 1.16rem;
            }

            .lb-card-name-line-last {
                font-size: 1rem;
            }

            .lb-card-time {
                font-size: 1.35rem;
            }

        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            color: var(--gold);
            font-size: 1rem;
            line-height: 1;
            font-weight: 900;
            cursor: help;
            flex-shrink: 0;
            margin-left: 0;
            margin-top: 6px;
            vertical-align: middle;
        }
        .verified-badge::after {
            content: none;
        }
        .verified-badge .wdhc-icon {
            width: 1.1rem;
            height: 1.1rem;
        }

        .tier-legend-list {
            padding: 0 20px 15px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1.15rem;
        }
        .tier-legend-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1.05rem;
        }
        .tier-legend-row:last-child { margin-bottom: 0; }
        .tier-legend-row .tier-badge {
            min-width: 108px;
            max-width: 120px;
            height: 38px;
            font-size: 0.86rem;
            flex-shrink: 0;
        }
        .tier-legend-row .tier-contender,
        .tier-legend-row .tier-challenger {
            min-width: 118px;
            max-width: 128px;
        }
        .tier-legend-spec {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: flex-start;
            min-width: 0;
        }
        .tier-legend-meta {
            color: #ccc;
            font-weight: 700;
            white-space: nowrap;
            min-width: 5.6rem;
            text-align: left;
        }
        .tier-legend-divider {
            width: 1px;
            height: 20px;
            background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.45), transparent);
            flex-shrink: 0;
        }
        .tier-legend-pop {
            color: var(--bronze);
            font-weight: 600;
            white-space: nowrap;
            font-size: 0.95rem;
        }
        .tier-legend-footnote {
            padding: 0 20px 12px;
            font-size: 0.68rem;
            color: #666;
            line-height: 1.4;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 500;
        }
        .sidebar-card .tier-badge {
            min-width: 96px;
            max-width: 112px;
            height: 34px;
            font-size: 0.8rem;
        }

        .pr-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px 0 0;
            min-width: auto;
            border-radius: 0;
            background: transparent;
            border: none;
            color: var(--silver);
            line-height: 1.1;
            flex-shrink: 0;
            margin-left: 0;
            vertical-align: middle;
        }

        /* Dropdown Details */
        .lb-row-wrapper {
            border-bottom: 1px solid var(--border);
            position: relative;
        }
        .lb-row-wrapper.details-visible {
            z-index: 3;
            background: #080808;
        }
        .lb-row-wrapper:last-child {
            border-bottom: none;
        }

        .details-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out, padding 0.2s ease-out, border-left-color 0.2s ease-out;
            background: #0c0c0c;
            padding: 0 16px;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.95rem;
            color: var(--text-dim);
            border-left: 3px solid transparent;
        }

        /* Row + expand panel left accent matches tier badge bar color */
        .lb-row-wrapper[data-tier="freak"],
        .details-panel[data-tier="freak"]      { --tier-accent: #c080ff; }
        .lb-row-wrapper[data-tier="legend"],
        .details-panel[data-tier="legend"]     { --tier-accent: #cd7f32; }
        .lb-row-wrapper[data-tier="elite"],
        .details-panel[data-tier="elite"]      { --tier-accent: #cccccc; }
        .lb-row-wrapper[data-tier="pro"],
        .details-panel[data-tier="pro"]        { --tier-accent: #ff6666; }
        .lb-row-wrapper[data-tier="challenger"],
        .details-panel[data-tier="challenger"] { --tier-accent: #666666; }
        .lb-row-wrapper[data-tier="contender"],
        .details-panel[data-tier="contender"]   { --tier-accent: #2d8659; }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            padding: 2px 0;
        }

        .details-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid #1a1a1a;
            border-radius: 6px;
            padding: 6px 10px 4px;
        }

        .details-section--grip {
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.06) 0%, rgba(12, 12, 12, 0.5) 60%);
            border-color: rgba(212, 175, 55, 0.18);
        }

        .details-fields {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .details-field {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            padding: 5px 0;
            border-bottom: 1px solid #141414;
        }

        .details-field:last-child {
            border-bottom: none;
            padding-bottom: 2px;
        }

        .details-field--hero {
            padding-top: 4px;
            padding-bottom: 10px;
            border-bottom-color: #2a2a2a;
        }

        .details-field-label {
            flex: 0 0 40%;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.45px;
            text-transform: uppercase;
            color: #c8b878;
            line-height: 1.35;
            padding-top: 1px;
        }

        .details-field-body {
            flex: 1;
            min-width: 0;
            text-align: right;
        }

        .details-field-val-wrap {
            display: inline-flex;
            align-items: baseline;
            justify-content: flex-end;
            gap: 5px;
            max-width: 100%;
        }

        .details-field-unit {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--ui-caption);
            flex-shrink: 0;
        }

        .details-field-val {
            display: block;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            color: #ececec;
            line-height: 1.3;
        }

        .details-field--hero .details-field-val {
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .details-field-val-em {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.98rem;
            font-weight: 700;
            letter-spacing: 0.15px;
        }

        .details-verified-inline {
            color: var(--gold);
            font-size: 0.78rem;
            margin-left: 3px;
        }

        .details-field-sub {
            display: block;
            margin-top: 4px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.76rem;
            font-weight: 500;
            color: #6a6a6a;
            letter-spacing: 0.2px;
            line-height: 1.3;
        }

        .details-field-val-dim { color: #8a8a8a; font-weight: 500; }
        .details-field-links {
            display: block;
            margin-top: 2px;
            text-align: right;
            line-height: 1.4;
        }
        .details-inline-link {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.74rem;
            font-weight: 600;
            color: var(--bronze);
            text-decoration: none;
        }
        .details-inline-link:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        .details-link-sep {
            color: #3a3a3a;
            margin: 0 6px;
            font-size: 0.72rem;
        }

        @media (min-width: 901px) {
            .details-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
            }

            .details-section--grip {
                grid-column: span 1;
            }

            .details-section--training {
                grid-column: 2;
                grid-row: 2;
            }

            .details-section--gym {
                grid-column: 3;
                grid-row: 2;
            }

            .details-field-label {
                font-size: 0.85rem;
                color: #d4c48a;
            }

            .details-field-val {
                font-size: 1rem;
            }

            .details-field--hero .details-field-val {
                font-size: 1.5rem;
            }

            .details-field-val-em {
                font-size: 1.08rem;
            }

        }

        .details-delta-younger {
            color: var(--bronze) !important;
        }

        .details-delta-older {
            color: #999 !important;
        }

        .details-meta-row {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            padding: 8px 10px;
            margin-top: 2px;
            border: 1px solid #1c1c1c;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.02);
            font-size: 0.78rem;
            color: #aaa;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 600;
        }

        .details-meta-row .details-verified {
            color: var(--gold);
        }

        .details-meta-row .details-meta-tier {
            font-size: 0.6rem;
            padding: 3px 10px;
        }

        .details-meta-sep {
            color: #555;
            font-size: 0.65rem;
        }
        
        /* Click-based details visibility */
        .lb-row-wrapper.details-visible .details-panel {
            max-height: 480px;
            padding: 8px 12px 10px;
            border-left: 3px solid var(--tier-accent, var(--gold-dim));
            overflow: hidden;
        }
        .details-panel strong {
            color: var(--gold);
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-right: 15px;
        }
        .details-panel p {
            margin-top: 10px;
            font-size: 0.8rem;
            line-height: 1.5;
            max-width: 60ch;
        }


        /* Sidebar - Top 10 Card */
        .sidebar-column {
            /* Removed sticky positioning and independent scrolling */
            /* Sidebar now scrolls naturally with main content */
        }

        .sidebar-card {
            background: #080808;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
            margin-bottom: 20px;
        }

        .sidebar-header {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(90deg, #111 0%, #080808 100%);
        }

        .sidebar-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            text-transform: uppercase;
            color: var(--gold);
            letter-spacing: 1px;
            margin: 0;
        }
        
        .sidebar-subtitle {
            font-size: 0.92rem;
            color: var(--ui-caption);
            text-transform: uppercase;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 600;
            letter-spacing: 0.4px;
        }

        .mini-list { padding: 4px 0 8px; }

        .mini-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            padding: 10px 14px 10px 12px;
            border-bottom: 1px solid #1a1a1a;
            font-size: 1.12rem;
            transition: background 0.2s ease, border-color 0.2s ease;
            border-left: 3px solid transparent;
        }
        
        .mini-row:last-child { border-bottom: none; }
        .mini-row:hover { background: #111; }

        .mini-row--podium {
            padding-left: 11px;
        }

        .mini-row--rank-1 {
            border-left-color: var(--gold);
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 62%);
        }

        .mini-row--rank-2 {
            border-left-color: #c0c0c0;
            background: linear-gradient(90deg, rgba(192, 192, 192, 0.07) 0%, transparent 62%);
        }

        .mini-row--rank-3 {
            border-left-color: var(--bronze);
            background: linear-gradient(90deg, rgba(205, 127, 50, 0.08) 0%, transparent 62%);
            border-bottom-color: rgba(212, 175, 55, 0.14);
            margin-bottom: 2px;
        }

        .mini-row--podium:hover {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, #111 55%);
        }

        .mini-rank {
            font-family: 'Oswald', sans-serif;
            color: #b5b5b5;
            font-weight: 700;
            width: 28px;
            flex-shrink: 0;
            font-size: 1.35rem;
            font-variant-numeric: tabular-nums;
            line-height: 1;
        }

        .mini-rank.rank-1 { color: var(--gold); }
        .mini-rank.rank-2 { color: #c0c0c0; }
        .mini-rank.rank-3 { color: var(--bronze); }

        .mini-row:not(.mini-row--podium) .mini-rank {
            color: #b0b0b0;
            font-size: 1.15rem;
        }

        .post-video-challenge-empty {
            color: var(--ui-caption);
            font-size: 0.9rem;
            padding: 8px 0;
            line-height: 1.5;
        }

        .post-video-challenge-empty a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }

        .post-video-challenge-empty a:hover { text-decoration: underline; }

        .lb-mobile-tap-hint {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin: 0 0 10px;
            padding: 8px 12px;
            border: 1px solid #222;
            border-radius: 6px;
            background: #0a0a0a;
            color: #888;
            font-size: 0.82rem;
            line-height: 1.35;
        }

        .lb-mobile-tap-hint button {
            flex-shrink: 0;
            background: transparent;
            border: none;
            color: #666;
            font-size: 1.1rem;
            line-height: 1;
            cursor: pointer;
            padding: 2px 4px;
        }

        .lb-mobile-tap-hint button:hover { color: #ccc; }

        .mini-name--stacked {
            display: flex;
            flex-direction: column;
            gap: 1px;
            line-height: 1.1;
            min-width: 0;
        }

        .mini-name-line {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mini-name-line-last {
            font-size: 0.88em;
            color: #aaa;
        }

        .mini-name {
            flex: 1;
            min-width: 0;
            color: #ccc;
            font-weight: 600;
            white-space: normal;
            overflow-wrap: break-word;
            line-height: 1.2;
            padding-right: 6px;
        }

        .mini-row--rank-1 .mini-name { color: #f2f2f2; }
        .mini-row--rank-2 .mini-name { color: #e8e8e8; }
        .mini-row--rank-3 .mini-name { color: #e0e0e0; }
        
        .mini-time {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.5px;
            font-variant-numeric: tabular-nums;
            min-width: 3.25rem;
            text-align: right;
            flex-shrink: 0;
        }

        .mini-row--rank-1 .mini-time { color: var(--gold); }
        .mini-row--rank-2 .mini-time { color: #d8d8d8; }
        .mini-row--rank-3 .mini-time { color: var(--bronze); }

        .sidebar-card--leaders .sidebar-header {
            background: linear-gradient(135deg, #14110a 0%, #0c0c0c 55%, #080808 100%);
            border-bottom-color: rgba(212, 175, 55, 0.18);
        }

        /* CTA Section & Footer */
        .cta-section {
            margin-top: 28px;
            padding: 32px 28px;
            background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
            border: 1px solid var(--border);
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dim) 100%);
        }

        .cta-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(1.35rem, 1.6vw + 0.85rem, 2.1rem);
            line-height: 1.15;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: #fff;
            max-width: 820px;
        }
        .cta-text h3 .cta-headline-l1 {
            white-space: nowrap;
        }
        @media (max-width: 900px) {
            .cta-text h3 {
                font-size: 1.5rem !important;
                line-height: 1.15 !important;
            }
            .cta-text h3 .cta-headline-l1 {
                white-space: normal;
            }
        }
        .cta-text p {
            color: var(--text-dim);
            max-width: 620px;
            font-size: 1.1rem;
            line-height: 1.4;
            font-weight: 600;
        }
        @media (max-width: 900px) {
            .cta-text p {
                font-size: 1.1rem !important;
                line-height: 1.4 !important;
            }
        }

        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%) !important;
            color: #000 !important;
            border: 1px solid rgba(205, 127, 50, 0.5) !important;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 20px !important;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.2s ease;
            box-shadow: none;
        }

        .cta-section .cta-btn {
            flex-shrink: 0;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            padding: 14px 28px !important;
            border-radius: 10px;
        }

        .cta-btn:hover {
            background: linear-gradient(135deg, #e8c96a 0%, #d4954a 100%) !important;
            color: #000 !important;
            box-shadow: 0 0 14px var(--bronze-glow);
            transform: none;
            filter: none;
        }

        .main-column {
            min-width: 0;
        }
        .main-column > .video-submissions-section {
            margin-top: 16px;
        }

        /* Video Submissions Section */
        .video-submissions-section {
            margin-top: 0;
            padding: 28px 20px 24px;
            background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
            border: 1px solid var(--border);
            border-radius: 8px;
            text-align: center;
        }

        .video-submissions-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.75rem;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
        .video-clip-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(0, 0, 0, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 4px;
            padding: 4px 7px;
            pointer-events: none;
            backdrop-filter: blur(4px);
        }

        .video-carousel {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 44px;
            min-width: 0;
        }
        .video-carousel-viewport {
            overflow: hidden;
            width: 100%;
            min-width: 0;
            --carousel-visible: 3;
            --carousel-count: 3;
        }
        .video-carousel-track {
            display: flex;
            flex-wrap: nowrap;
            width: calc(100% * var(--carousel-count) / var(--carousel-visible));
            transition: transform 0.4s ease;
            will-change: transform;
        }
        .video-carousel-slide {
            flex: 0 0 calc(100% / var(--carousel-count));
            box-sizing: border-box;
            padding: 0 12px;
            min-width: 0;
        }
        .video-carousel-btn {
            position: absolute;
            top: 42%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.22);
            background: rgba(8, 8, 8, 0.88);
            color: var(--gold);
            font-size: 1.35rem;
            line-height: 1;
            cursor: pointer;
            z-index: 2;
            backdrop-filter: blur(8px);
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
        }
        .video-carousel-btn:hover:not(:disabled) {
            border-color: rgba(212, 175, 55, 0.55);
            background: rgba(18, 18, 18, 0.95);
            transform: translateY(-50%) scale(1.04);
        }
        .video-carousel-btn:disabled {
            opacity: 0.25;
            cursor: not-allowed;
        }
        .video-carousel-btn.prev { left: 0; }
        .video-carousel-btn.next { right: 0; }
        .video-carousel-footer {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
            margin-top: 20px;
            padding: 0 4px;
        }
        .video-carousel-progress {
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            overflow: hidden;
        }
        .video-carousel-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), var(--gold));
            border-radius: 2px;
            transition: width 0.35s ease;
        }
        .video-carousel-count {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: #777;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-align: right;
        }

        .video-submission-item {
            text-align: center;
            position: relative;
        }

        .video-submission-frame {
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
            background: #000;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
            overflow: hidden;
            position: relative;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            aspect-ratio: 9 / 16;
            max-height: 440px;
        }
        .video-submission-frame.is-landscape {
            aspect-ratio: 16 / 9;
            max-width: 100%;
            max-height: none;
        }
        .video-submission-frame.is-portrait {
            aspect-ratio: 9 / 16;
            max-width: 340px;
        }
        .video-carousel-slide:hover .video-submission-frame {
            border-color: rgba(212, 175, 55, 0.22);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
        }

        .video-submission-frame video,
        .video-submission-frame iframe.submission-video-embed {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            background: #000;
            border: 0;
        }
        .video-submission-frame .video-load-fallback {
            position: absolute;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
            color: #888;
            font-size: 0.85rem;
            text-align: center;
            background: #000;
        }
        .video-submission-frame.is-video-error .video-load-fallback { display: flex; }
        .video-submission-frame.is-video-error video { display: none; }

        .video-submission-verified {
            color: var(--gold);
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1;
            flex-shrink: 0;
        }

        .video-submission-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px;
            color: #666;
            font-size: 0.78rem;
            line-height: 1.35;
        }
        .video-submission-placeholder strong {
            color: var(--gold);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .video-submission-caption {
            margin-top: 10px;
            color: var(--text-dim);
            font-size: 0.9rem;
            font-style: italic;
        }

        /* Video placeholder for Google Drive links */
        .video-link {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border: 2px solid var(--gold);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
            border-color: var(--accent-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .video-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .video-label {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .video-size {
            font-size: 0.9rem;
            color: var(--text-dim);
        }

        @media (max-width: 900px) {
            .video-submissions-title {
                font-size: 1.25rem;
            }
            .video-carousel {
                padding: 0 32px;
            }
            .video-submission-frame {
                max-width: 300px;
                height: 400px;
            }
        }

        /* Content Tabs */
        .content-tabs {
            display: none; /* Hidden by default */
            margin-top: 40px;
            padding: 40px;
            background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
            border: 1px solid var(--border);
            border-radius: 6px;
            position: relative;
        }

        .content-tabs::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dim) 100%);
        }

        .content-tabs.active {
            display: block;
        }

        .content-tabs h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .content-tabs h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin: 25px 0 15px;
            text-transform: uppercase;
        }

        .content-tabs p {
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .content-tabs ul {
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .content-tabs li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .content-tabs strong {
            color: #fff;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 25px;
            transition: transform 0.3s, border-color 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .benefit-card h4 {
            color: var(--gold);
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .about-highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }

        @media (max-width: 900px) {
            .content-tabs {
                padding: 30px 20px;
            }
            
            .content-tabs h2 {
                font-size: 2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        footer {
            margin-top: auto;
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid var(--border);
            background: #050505;
        }

        .footer-logo-link {
            display: inline-block;
            margin-bottom: 20px;
        }

        .footer-logo {
            display: block;
            height: 92px;
            width: auto;
            max-width: 360px;
            margin: 0 auto;
            object-fit: contain;
            opacity: 1;
            transition: opacity 0.3s, transform 0.3s;
            }
        
        .footer-logo:hover {
            opacity: 1;
            transform: scale(1.02);
        }

        .icon-legend-list { padding: 0 20px 12px; }
        .icon-legend-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
        }
        .icon-legend-item:last-child { margin-bottom: 0; }
        .icon-legend-symbol {
            width: 28px;
            min-width: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding-top: 2px;
        }
        .icon-legend-symbol .verified-badge { margin-top: 0; }
        .icon-legend-symbol .grip-age-val {
            font-size: 1.1rem;
            line-height: 1;
        }
        .icon-legend-symbol .grip-age-val.mature { font-size: 1.05rem; }
        .icon-legend-title { color: #eee; font-weight: 700; font-size: 1.02rem; }
        .icon-legend-desc { color: var(--ui-caption); font-size: 0.94rem; line-height: 1.45; margin-top: 3px; font-weight: 500; }

        .grip-calc-widget {
            margin: 0 16px 14px;
            padding: 16px 14px 18px;
            background: rgba(205, 127, 50, 0.06);
            border: 1px solid rgba(205, 127, 50, 0.25);
            border-radius: 6px;
        }
        .sidebar-column .grip-calc-explainer {
            margin: 0 16px 16px;
        }
        .grip-calc-widget h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 12px;
            letter-spacing: 0.5px;
        }
        .grip-calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        .grip-calc-field label {
            display: block;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--gold);
            margin-bottom: 5px;
        }
        .grip-calc-field input,
        .grip-calc-field select {
            width: 100%;
            box-sizing: border-box;
            background: #111;
            border: 1px solid #333;
            color: #eee;
            padding: 7px 8px;
            border-radius: 4px;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.85rem;
        }
        .grip-calc-field.full { grid-column: span 2; }
        .grip-calc-time-row {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .grip-calc-time-row input { flex: 1; }
        .grip-calc-result-wrap {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #333;
            text-align: center;
        }
        .grip-calc-result {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--bronze);
            line-height: 1;
        }
        .grip-calc-result.mature { color: #9a9a9a; }
        .grip-calc-result-label {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--gold);
            margin-bottom: 6px;
        }
        .grip-calc-expected {
            margin-top: 8px;
            padding: 10px 12px;
            border-radius: 8px;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.22);
            color: #e8d9a8;
            font-size: 0.86rem;
            line-height: 1.4;
            font-weight: 500;
        }
        .grip-calc-compare {
            font-size: 0.92rem;
            color: var(--ui-caption);
            margin-top: 6px;
            font-weight: 500;
            line-height: 1.4;
        }
        .grip-calc-learn-link {
            display: inline-block;
            margin-top: 10px;
            font-size: 0.88rem;
            color: var(--bronze);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .grip-calc-learn-link:hover { color: var(--gold); }
        .grip-calc-field-hint {
            display: block;
            font-size: 0.84rem;
            color: var(--ui-caption);
            margin-top: 5px;
            line-height: 1.4;
            font-weight: 500;
        }
        .grip-calc-explainer {
            margin: 0 16px 16px;
            font-size: 0.94rem;
            color: var(--ui-caption);
            line-height: 1.55;
        }
        .grip-calc-explainer .explainer-body {
            padding: 2px 2px 12px;
        }
        .grip-calc-explainer h5 {
            color: var(--gold);
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            margin: 12px 0 6px;
        }
        .grip-calc-explainer h5:first-child { margin-top: 2px; }
        .grip-calc-explainer p { margin: 0 0 10px; }
        .grip-calc-explainer .explainer-note {
            font-size: 0.88rem;
            color: #aaa;
            border-left: 3px solid rgba(212, 175, 55, 0.45);
            padding-left: 10px;
            margin: 10px 0 0;
            line-height: 1.45;
        }
        .grip-calc-explainer summary {
            cursor: pointer;
            color: var(--gold);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 10px 12px;
            margin: -4px -8px 0;
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 6px;
            background: rgba(212, 175, 55, 0.06);
            transition: background 0.2s ease, border-color 0.2s ease;
            user-select: none;
        }
        .grip-calc-explainer summary:hover {
            background: rgba(212, 175, 55, 0.12);
            border-color: rgba(212, 175, 55, 0.45);
        }
        .grip-calc-explainer summary::-webkit-details-marker { display: none; }
        .grip-calc-explainer summary::marker { content: none; }
        .grip-calc-explainer-label { flex: 1; }
        .grip-calc-explainer-hint {
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            text-transform: none;
            font-size: 0.82rem;
            letter-spacing: 0.2px;
            color: var(--ui-caption);
            font-weight: 600;
            white-space: nowrap;
        }
        .grip-calc-explainer-chevron {
            flex-shrink: 0;
            width: 10px;
            height: 10px;
            border-right: 2px solid var(--gold);
            border-bottom: 2px solid var(--gold);
            transform: rotate(45deg);
            margin-top: -3px;
            transition: transform 0.2s ease, margin 0.2s ease;
        }
        .grip-calc-explainer[open] .grip-calc-explainer-chevron {
            transform: rotate(-135deg);
            margin-top: 3px;
        }
        .grip-calc-explainer[open] .grip-calc-explainer-hint { display: none; }
        .grip-calc-explainer[open] summary {
            margin-bottom: 10px;
            border-color: rgba(212, 175, 55, 0.35);
        }
        .grip-calc-explainer ul {
            margin: 4px 0 0;
            padding-left: 18px;
            line-height: 1.45;
        }
        .grip-calc-explainer li {
            margin-bottom: 6px;
        }
        .grip-calc-explainer li:last-child {
            margin-bottom: 0;
        }

        .about-wdhc-section {
            margin: 48px auto 0;
            padding: 44px 28px 48px;
            max-width: 780px;
            text-align: center;
            background: transparent;
            border: none;
            border-top: 1px solid rgba(212, 175, 55, 0.22);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 0;
            position: relative;
        }
        .about-wdhc-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        .about-wdhc-section h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            text-transform: uppercase;
            color: #fff;
            margin: 0 0 28px;
            letter-spacing: 2.5px;
            background: linear-gradient(180deg, #fff 0%, #f4e4a6 55%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .about-wdhc-section p {
            color: var(--text-dim);
            font-size: 1.08rem;
            line-height: 1.7;
            margin: 0 auto 16px;
            max-width: 640px;
        }
        .about-wdhc-section p:last-child {
            margin-bottom: 0;
        }
        .about-wdhc-section strong {
            color: var(--gold);
        }

        .about-founder-spotlight {
            display: flex;
            align-items: center;
            gap: 28px;
            max-width: 720px;
            margin: 0 auto 28px;
            text-align: left;
            padding: 24px 0 8px;
            border-left: 2px solid rgba(255, 255, 255, 0.08);
            padding-left: 24px;
        }
        .about-founder-photo {
            flex: 0 0 auto;
            margin: 0;
        }
        .about-founder-photo img {
            display: block;
            width: 132px;
            height: 132px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 8px 28px rgba(0, 0, 0, 0.45);
        }
        .about-founder-quote {
            margin: 0;
            color: #bbb;
            font-size: 1.02rem;
            line-height: 1.65;
            font-style: italic;
        }
        .about-founder-quote::before {
            content: '\201C';
            color: var(--gold-dim);
            margin-right: 2px;
        }
        .about-founder-attribution {
            margin: 12px 0 0;
            color: var(--text-dim);
            font-size: 0.92rem;
            font-style: normal;
        }
        .about-founder-attribution strong {
            color: var(--gold);
        }
        @media (max-width: 600px) {
            .about-founder-spotlight {
                flex-direction: column;
                text-align: center;
                border-left: none;
                padding-left: 0;
                gap: 18px;
            }
        }

        .post-video-strip {
            margin-top: 32px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
        }
        .post-video-card {
            padding: 28px 24px 26px;
            background: linear-gradient(160deg, #0c0c0c 0%, #0a0a0a 55%, #111 100%);
            border: 1px solid var(--border);
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
            position: relative;
            overflow: hidden;
        }
        .post-video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--card-accent, var(--gold));
            opacity: 0.9;
        }
        .post-video-rules-card {
            --card-accent: linear-gradient(90deg, #8a702a, #d4af37, #8a702a);
            background: linear-gradient(165deg, rgba(212, 175, 55, 0.1) 0%, #0a0a0a 38%, #0d0d0d 100%);
            border-color: rgba(212, 175, 55, 0.32);
        }
        .post-video-rules-card h4 { color: #f4e4a6; }
        .post-video-pulse-card {
            --card-accent: linear-gradient(90deg, #6b3f1a, #cd7f32, #6b3f1a);
            background: linear-gradient(165deg, rgba(205, 127, 50, 0.11) 0%, #0a0a0a 38%, #0d0d0d 100%);
            border-color: rgba(205, 127, 50, 0.3);
        }
        .post-video-pulse-card h4 { color: #e8b87a; }
        .post-video-pulse-card .post-video-stat {
            background: rgba(205, 127, 50, 0.06);
            border-color: rgba(205, 127, 50, 0.22);
        }
        .post-video-challenge-card {
            --card-accent: linear-gradient(90deg, #1a4d32, #2d8659, #1a4d32);
            background: linear-gradient(165deg, rgba(45, 134, 89, 0.12) 0%, #0a0a0a 38%, #0d0d0d 100%);
            border-color: rgba(45, 134, 89, 0.32);
        }
        .post-video-challenge-card h4 { color: #7dcea0; }
        .post-video-challenge-card .mini-row {
            border-bottom-color: rgba(45, 134, 89, 0.18);
        }
        .post-video-card h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.42rem;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 14px;
            letter-spacing: 0.5px;
        }
        .post-video-card p {
            color: #bbb;
            font-size: 1.08rem;
            line-height: 1.55;
            margin: 0 0 18px;
        }
        .post-video-checklist {
            text-align: left;
            margin: 0 auto;
            max-width: 340px;
            color: #ddd;
            font-size: 1.05rem;
            line-height: 1.6;
            padding-left: 0;
            list-style: none;
        }
        .post-video-submit-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            margin-top: 20px;
            width: 100%;
        }
        .post-video-rules-card .post-video-qr {
            display: block;
            margin-top: 0;
            padding: 12px;
            background: #fff;
            border-radius: 10px;
            line-height: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
        }
        .post-video-rules-card .post-video-qr img {
            display: block;
            max-width: 130px;
            height: auto;
        }
        .post-video-checklist li {
            margin-bottom: 10px;
            padding-left: 22px;
            position: relative;
        }
        .post-video-checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.05em;
            color: var(--gold);
            font-weight: 700;
            font-size: 1.05em;
            line-height: 1.4;
        }
        .post-video-stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            max-width: 360px;
            margin: 0 auto;
            text-align: left;
        }
        .post-video-stat {
            padding: 14px 16px;
            background: #0d0d0d;
            border: 1px solid #222;
            border-radius: 4px;
        }
        .post-video-stat-hero {
            grid-column: 1 / -1;
            text-align: center;
            padding: 18px 16px;
            border-color: rgba(212, 175, 55, 0.35);
            background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
        }
        .post-video-stat-hero .post-video-stat-value {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.02em;
        }
        .post-video-stat-hero .post-video-stat-label {
            font-size: 0.92rem;
            color: #aaa;
            margin-top: 6px;
        }
        .post-video-stat-value {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.55rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        .post-video-stat-label {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999;
            margin-top: 6px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-weight: 600;
        }
        .post-video-stat-note {
            grid-column: 1 / -1;
            font-size: 0.98rem;
            color: #bbb;
            line-height: 1.5;
            padding: 4px 2px 0;
        }
        .post-video-stat-note strong { color: var(--gold); }
        .post-video-card-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 14px;
        }
        .post-video-card-links a {
            font-size: 0.82rem;
            color: var(--gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: 'Oswald', sans-serif;
        }
        .post-video-card-links a:hover { text-decoration: underline; }
        .post-video-challenge-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px !important;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(45, 134, 89, 0.35), rgba(26, 77, 50, 0.5));
            border: 1px solid rgba(125, 206, 160, 0.45);
            color: #d4f5e4 !important;
            font-size: 0.88rem !important;
            letter-spacing: 0.08em;
            text-decoration: none !important;
            transition: background 0.2s ease, border-color 0.2s ease;
        }
        .post-video-challenge-cta:hover {
            background: linear-gradient(135deg, rgba(45, 134, 89, 0.5), rgba(26, 77, 50, 0.65));
            border-color: rgba(125, 206, 160, 0.7);
            text-decoration: none !important;
        }
        .post-video-challenge-list .mini-row {
            padding: 10px 14px 10px 12px;
        }

        .post-video-challenge-list .mini-row--podium {
            padding-left: 11px;
        }
        .post-video-challenge-list .mini-name {
            font-weight: 700;
            color: #fff;
            font-size: 1.05rem;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        .post-video-challenge-list .mini-challenge-count {
            font-family: 'Roboto Mono', monospace;
            color: var(--gold);
            font-weight: 700;
            font-size: 0.95rem;
            flex-shrink: 0;
            white-space: nowrap;
        }
        .post-video-challenge-list .mini-rank {
            font-size: 1.35rem;
            width: 28px;
            margin-right: 2px;
        }
        @media (min-width: 901px) {
            .about-wdhc-section {
                padding: 52px 40px 56px;
            }
            .about-wdhc-section h3 {
                font-size: 2rem;
            }
            .about-wdhc-section p {
                font-size: 1.15rem;
                line-height: 1.75;
            }
            .post-video-strip {
                gap: 32px;
                margin-top: 48px;
            }
            .post-video-card {
                padding: 40px 36px;
                text-align: left;
            }
            .post-video-card h4 {
                font-size: 1.65rem;
                margin-bottom: 16px;
            }
            .post-video-card p {
                font-size: 1.2rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            .post-video-checklist {
                max-width: none;
                font-size: 1.12rem;
                line-height: 1.65;
            }
            .post-video-stat-grid {
                max-width: none;
            }
            .post-video-challenge-list {
                max-width: none !important;
                margin: 0 !important;
            }
            .post-video-challenge-list .mini-name {
                font-size: 1.12rem;
            }
            .post-video-challenge-list .mini-challenge-count {
                font-size: 1rem;
            }
            .video-submissions-section {
                padding: 32px 24px 28px;
            }
            .video-submissions-title {
                font-size: 1.9rem;
            }
            .video-submission-frame {
                max-width: 360px;
                height: 460px;
            }
            .video-submission-name {
                font-size: 1.05rem;
            }
            .post-video-rules-card {
                text-align: center;
            }
            .post-video-rules-card .post-video-checklist {
                text-align: left;
                display: inline-block;
                width: 100%;
            }
            .post-video-rules-card .nav-cta {
                font-size: 1rem !important;
                padding: 12px 24px !important;
            }
        }
        @media (max-width: 900px) {
            .post-video-strip { grid-template-columns: 1fr; }
        }

        .portal-promo-section {
            margin-top: 40px;
            width: 100%;
            padding: 32px 28px;
            background: linear-gradient(135deg, rgba(205,127,50,0.08) 0%, rgba(10,10,10,0.98) 50%, rgba(212,175,55,0.06) 100%);
            border: 1px solid rgba(205,127,50,0.35);
            border-radius: 6px;
        }

        .portal-promo-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 32px;
            align-items: center;
        }

        .portal-promo-copy {
            text-align: left;
        }

        .portal-promo-eyebrow {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--bronze);
            margin: 0 0 10px;
        }

        .portal-promo-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--gold);
            margin: 0 0 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .portal-promo-lead {
            color: var(--text-dim);
            font-size: 1.05rem;
            line-height: 1.65;
            margin: 0 0 12px;
        }

        .portal-promo-detail {
            color: #999;
            font-size: 0.98rem;
            line-height: 1.6;
            margin: 0 0 20px;
        }

        .portal-promo-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 0 0 24px;
            padding: 0;
            list-style: none;
            color: #bbb;
            font-size: 0.92rem;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        .portal-promo-features li::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            margin-right: 8px;
            vertical-align: middle;
        }

        .portal-promo-visual--product {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .product-frame {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #0c0c0c;
            box-shadow:
              0 24px 48px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(212, 175, 55, 0.08);
        }

        .product-frame-chrome {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 10px 12px;
            background: linear-gradient(180deg, #1a1a1a, #121212);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .product-frame-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #3f3f46;
        }

        .product-frame-dot:nth-child(1) { background: #ef4444; }
        .product-frame-dot:nth-child(2) { background: #eab308; }
        .product-frame-dot:nth-child(3) { background: #22c55e; }

        .product-frame-url {
            margin-left: 8px;
            flex: 1;
            min-width: 0;
            padding: 4px 10px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.35);
            font-size: 0.72rem;
            letter-spacing: 0.02em;
            color: #9ca3af;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: ui-monospace, 'Roboto Mono', monospace;
        }

        .portal-promo-caption {
            margin: 0;
            font-size: 0.88rem;
            line-height: 1.4;
            color: #9ca3af;
            text-align: center;
        }

        .portal-promo-visual--product .portal-promo-dashboard-img {
            border-radius: 0;
            border: none;
            box-shadow: none;
            display: block;
            width: 100%;
            height: auto;
        }

        .portal-promo-visual {
            min-width: 0;
            margin: 0;
        }

        .portal-promo-dashboard-img {
            display: block;
            width: 100%;
            height: auto;
            border: 1px solid var(--border);
            border-radius: 10px;
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
        }

        @media (min-width: 901px) {
            .portal-promo-section {
                padding: 40px 36px;
            }
        }

        @media (max-width: 900px) {
            .portal-promo-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .portal-promo-copy {
                text-align: center;
            }

            .portal-promo-features {
                justify-content: center;
            }
        }

        .video-submission-meta {
            margin-top: 12px;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            padding: 0 4px;
        }
        .video-submission-name-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }
        .video-submission-name {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0;
            letter-spacing: 0.2px;
        }
        .video-submission-stats-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }
        .video-submission-stats-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        .video-submission-top-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .video-submission-stats-row .tier-badge {
            font-size: 0.62rem;
            padding: 2px 8px;
            vertical-align: middle;
        }
        .video-submission-grip-row {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 6px;
            line-height: 1.2;
        }
        .video-submission-time {
            color: var(--gold);
            font-family: 'Roboto Mono', monospace;
            font-size: 1.15rem;
            font-weight: 700;
        }
        .video-submission-grip-label {
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--ui-caption);
            font-weight: 600;
        }
        .video-submission-grip-na {
            font-size: 0.78rem;
            color: #666;
            font-family: 'Roboto Mono', monospace;
        }
        .video-submission-stats-row .grip-age-val {
            font-size: 0.95rem;
        }

        /* History Tooltip */
        .tooltip {
            visibility: hidden;
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            color: #eee;
            text-align: left;
            border-radius: 4px;
            padding: 15px;
            position: absolute;
            z-index: 100;
            bottom: 100%;
            left: 0;
            width: 240px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.8);
            border: 1px solid #333;
            opacity: 0;
            transition: opacity 0.2s, transform 0.2s;
            transform: translateY(10px);
            pointer-events: none;
            font-family: 'Roboto Mono', monospace;
        }
        
        .name:hover .tooltip {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }
        
        .history-item {
            font-size: 0.75rem;
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            border-bottom: 1px solid #222;
            padding-bottom: 4px;
            color: #888;
        }
        .history-item span.h-time { color: var(--gold); font-weight: 700; }

        @media (max-width: 900px) {
            .content-grid { grid-template-columns: 1fr; }
            .main-column,
            .sidebar-column {
                display: block;
                min-height: 0;
            }
            .main-column-stack,
            .sidebar-upper,
            .home-lower-band,
            .sidebar-lower {
                margin-top: 0;
            }
            .home-lower-band {
                display: block;
            }
            .home-lower-band > .cta-section {
                margin-top: 20px;
            }
            .sidebar-card { position: static; margin-top: 40px; }
            
            /* Center the status pill on mobile */
            .status-pill {
                display: block;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
                width: fit-content;
            }
            
            .controls-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
            }
            
            /* Name / PR compact on mobile rows */
            .name-wrapper {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                width: 100% !important;
                gap: 6px !important;
                flex-wrap: wrap !important;
            }

            .name-wrapper > .tier-badge {
                margin-left: 0 !important;
            }

            /* Division tabs: horizontal scroll, no tall wrap block */
            .division-tabs {
                flex-wrap: nowrap !important;
                gap: 2px !important;
            }
            .division-tabs button {
                font-size: 0.7rem !important;
                padding: 6px 8px !important;
            }

            /* Sort row */
            .sort-row {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 8px !important;
            }

            /* Search bar - no overlap */
            .search-row {
                margin-top: 10px !important;
                margin-bottom: 5px !important;
            }
            .search-container {
                max-width: 100% !important;
            }
            #athlete-search {
                font-size: 0.85rem !important;
                padding: 8px 12px !important;
            }

            .controls {
                position: relative !important;
                z-index: 1 !important;
                padding-top: 0 !important;
            }

            .leaderboard {
                margin-top: 0 !important;
            }
            

            
            .cta-section { 
                flex-direction: column; 
                text-align: center; 
                gap: 30px;
                margin-top: 24px;
                padding: 36px 20px;
            }

            .cta-section .cta-btn {
                display: inline-block !important;
                font-size: 1.25rem;
                padding: 16px 28px !important;
                width: 100%;
                max-width: 320px;
            }
            
            .cta-section::before { 
                width: 100%; 
                height: 4px; 
                bottom: auto; 
            }
            
            /* Mobile: tap-only expand · never let sticky :hover collapse open rows */
            .lb-row-wrapper:not(.details-visible):hover .details-panel {
                max-height: 0 !important;
                padding: 0 12px !important;
                border-left: none !important;
            }

            .lb-row-wrapper.details-visible .details-panel {
                max-height: none !important;
                padding: 12px 14px 14px !important;
                border-left: 3px solid var(--tier-accent, var(--gold-dim)) !important;
                overflow-y: visible !important;
            }
        }
        
        @media (max-width: 600px) {
            /* Remove conflicting mobile styles - use only the 900px media query */
        }

        /* Mobile: all tier badges match Challenger dimensions */
        @media (max-width: 900px) {
            .tier-badge,
            .leaderboard .tier-badge,
            .lb-card-meta .tier-badge,
            .details-meta-tier.tier-badge,
            .details-panel .tier-badge,
            .sidebar-card .tier-badge,
            .tier-legend-row .tier-badge,
            .video-submission-stats-row .tier-badge,
            .mini-tier .tier-badge,
            .name-wrapper > .tier-badge {
                width: 100px !important;
                min-width: 100px !important;
                max-width: 100px !important;
                height: 26px !important;
                font-size: 0.58rem !important;
                padding: 3px 6px 3px 10px !important;
                letter-spacing: 0.3px !important;
                line-height: 1 !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                white-space: nowrap !important;
                flex-shrink: 0 !important;
            }
        }

        /* Section Animation Styles */
        @keyframes subtlePulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(50, 150, 220, 0.2), 0 4px 15px rgba(50, 200, 255, 0.1); }
            50% { box-shadow: 0 10px 35px rgba(50, 150, 220, 0.3), 0 4px 20px rgba(50, 200, 255, 0.15); }
        }

        @keyframes subtleShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-1px); }
            75% { transform: translateX(1px); }
        }

        @keyframes borderGlow {
            0%, 100% { border-color: rgba(220, 50, 50, 0.4); border-left-color: rgba(220, 50, 50, 0.7); }
            50% { border-color: rgba(255, 100, 100, 0.5); border-left-color: rgba(255, 100, 100, 0.8); }
        }

        @keyframes topBorderFlow {
            0% { background-position: -100% 0; }
            100% { background-position: 200% 0; }
        }

        /* Apply animations to sections */
        .struggle-description {
            animation: subtleShake 3s ease-in-out infinite, borderGlow 4s ease-in-out infinite;
        }

        .struggle-description > div:first-child {
            animation: topBorderFlow 3s linear infinite;
            background-size: 200% 100%;
        }

        .motivational-text {
            animation: subtlePulse 4s ease-in-out infinite;
        }

        /* Hover effects for interactivity */
        .struggle-description:hover {
            transform: translateY(-2px);
            transition: transform 0.3s ease;
        }

        .motivational-text:hover {
            transform: translateY(-2px) scale(1.01);
            transition: transform 0.3s ease;
        }
