/* Draft Kit page styles - extracted from inline <style>. References brand-tokens.css variables. */

/* ══════════════════════════════════════════════
   FFN DRAFT KIT 2026 - Editorial Sports Design
   ══════════════════════════════════════════════ */

/* Color System */
:root {
    --bg-primary: var(--brand-white);
    --bg-subtle: var(--brand-surface-subtle);
    --bg-muted: var(--brand-surface-muted);
    --bg-dark: var(--brand-navy);
    --bg-dark-mid: var(--brand-navy-light);
    --border-light: var(--brand-border-light);
    --border-subtle: var(--brand-border-subtle);
    --border-medium: #b8bfcc;
    --text-primary: var(--brand-text-primary);
    --text-heading: var(--brand-text-heading);
    --text-secondary: var(--brand-text-secondary);
    --text-tertiary: var(--brand-text-tertiary);
    --accent-primary: var(--brand-navy);
    --accent-hover: var(--brand-navy-light);
    --accent-blue: var(--brand-accent-blue);
    --accent-gold: var(--brand-accent-gold);
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Page-level overrides ──────────────────── */
.draft-kit-page { font-family: var(--font-body); }

/* ── Hero Section ──────────────────────────── */
.draft-hero {
    position: relative;
    text-align: center;
    margin: -4rem -1rem 3.5rem;
    padding: 5rem 2rem 4rem;
    background: var(--bg-dark);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45,108,223,0.12) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-mid) 100%);
    overflow: hidden;
}

.draft-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 59px,
            rgba(255,255,255,0.02) 59px,
            rgba(255,255,255,0.02) 60px
        );
    pointer-events: none;
}

.draft-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold), var(--accent-blue));
}

.draft-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 1rem;
    position: relative;
}

.draft-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.draft-hero-accent {
    width: 48px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto;
    border-radius: 1px;
    opacity: 0.8;
}

/* ── Section Container ─────────────────────── */
.draft-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 4px rgba(14,34,64,0.04), 0 6px 20px rgba(14,34,64,0.02);
    position: relative;
}

.draft-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.15;
    border-radius: 1px;
}

.draft-section h2 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--bg-muted);
    position: relative;
}

.draft-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 1px;
}

/* ── Resource Grid ─────────────────────────── */
.resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

/* ── Resource Cards ────────────────────────── */
.resource-item {
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--bg-primary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.resource-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-blue);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.resource-item:hover {
    transform: translateY(-2px);
    border-color: var(--border-subtle);
    box-shadow: 0 8px 24px rgba(14,34,64,0.08);
}

.resource-item:hover::before {
    opacity: 1;
}

.resource-item h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.resource-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.875rem;
}

.resource-item a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.15s ease;
}

.resource-item a:hover {
    color: var(--accent-primary);
}

/* ── Strategy Section ──────────────────────── */
.strategy-section { margin-top: 2rem; }

.strategy-section h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
    letter-spacing: -0.005em;
    margin-bottom: 1rem;
}

.strategy-list {
    list-style: none;
    padding: 0;
}

.strategy-list li {
    padding: 0.875rem 1.25rem;
    margin-bottom: 0.625rem;
    background: var(--bg-subtle);
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 8px 8px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    transition: background 0.15s ease;
}

.strategy-list li:hover {
    background: var(--bg-muted);
}

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

/* ── Team Grid ─────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.team-item {
    padding: 0.6875rem 0.75rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.team-item:hover {
    background: var(--bg-primary);
    border-color: var(--accent-blue);
    color: var(--accent-primary);
    box-shadow: 0 2px 8px rgba(14,34,64,0.06);
}

/* ── Premium Teaser Section ────────────────── */
.draft-premium-teaser {
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
    padding: 3.5rem 2.5rem;
    background: var(--bg-dark);
    background-image:
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(45,108,223,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,149,46,0.08) 0%, transparent 70%);
    border: none;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(14,34,64,0.2);
    position: relative;
    overflow: hidden;
}

.draft-premium-teaser::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue), var(--accent-gold));
}

.draft-premium-teaser h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.draft-premium-teaser p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.draft-premium-button-wrapper {
    position: relative;
    display: inline-block;
}

.draft-premium-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-muted);
    color: var(--text-tertiary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--border-medium);
    cursor: not-allowed;
    opacity: 0.5;
    transition: none;
}

.draft-premium-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-gold);
    color: var(--brand-navy);
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(200,149,46,0.35);
    pointer-events: none;
    white-space: nowrap;
}

.draft-premium-teaser-note {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* ── Footer CTA ────────────────────────────── */
.draft-footer-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.draft-footer-cta p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.draft-footer-cta a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.15s ease;
}

.draft-footer-cta a:hover {
    color: var(--accent-primary);
}

/* ── Data-driven sections ──────────────────── */
.dk-loading {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    padding: 1.5rem 0;
    text-align: center;
}
.dk-error { color: #b91c1c; font-size: 0.875rem; }
.dk-muted { color: var(--text-tertiary); font-size: 0.875rem; }

#dk-last-updated {
    display: none;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}

/* ── Position Grid ─────────────────────────── */
.dk-pos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.dk-pos-card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1.25rem;
    background: var(--bg-subtle);
    overflow: hidden;
}
.dk-pos-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

/* ── Tables ────────────────────────────────── */
.dk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    font-family: var(--font-body);
}
.dk-table th {
    text-align: left;
    font-weight: 700;
    color: var(--accent-primary);
    padding: 0.5rem 0.625rem;
    border-bottom: 2px solid var(--bg-dark);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.dk-table td {
    padding: 0.4375rem 0.625rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    white-space: nowrap;
}
.dk-table tbody tr:hover { background: rgba(45,108,223,0.04); }
.dk-table tbody tr:nth-child(even) { background: rgba(14,34,64,0.015); }
.dk-table tbody tr:nth-child(even):hover { background: rgba(45,108,223,0.04); }

.dk-player-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.1s ease;
}
.dk-player-link:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.dk-tag {
    display: inline-block;
    padding: 0.125rem 0.4375rem;
    border-radius: 3px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.dk-tag-value { background: var(--brand-status-success-bg); color: var(--brand-status-success-text); }
.dk-tag-risk { background: var(--brand-status-danger-bg); color: var(--brand-status-danger-text); }
.dk-tag-fair { background: var(--bg-muted); color: var(--text-secondary); }
.dk-tag-neutral { background: var(--bg-muted); color: var(--text-tertiary); }

/* ── Value Chart ───────────────────────────── */
.dk-chart { max-width: 100%; }
.dk-chart-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.3125rem;
}
.dk-chart-label {
    width: 140px;
    min-width: 140px;
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.75rem;
    font-family: var(--font-body);
}
.dk-chart-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dk-bar {
    height: 10px;
    border-radius: 2px;
    min-width: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dk-bar-rank { background: var(--accent-primary); opacity: 0.85; }
.dk-bar-adp { background: var(--accent-blue); opacity: 0.5; }
.dk-chart-legend {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}
.dk-legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}
.dk-legend-swatch {
    display: inline-block;
    width: 14px;
    height: 10px;
    border-radius: 2px;
}
.dk-legend-note {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin-left: auto;
}

/* ── FantasyGPT CTA ────────────────────────── */
.dk-gpt-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.dk-gpt-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
}
.dk-gpt-cta h2 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.625rem;
}
.dk-gpt-cta p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
}
.dk-btn {
    display: inline-block;
    padding: 0.8125rem 1.75rem;
    background: var(--accent-primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.dk-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14,34,64,0.2);
    color: #fff;
}

/* Premium button active state */
.draft-premium-button.dk-active {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    cursor: pointer;
    opacity: 1;
    font-weight: 700;
}
.draft-premium-button.dk-active:hover {
    background: #d4a33a;
    transform: translateY(-1px);
}

/* ── Collapsible Sections ──────────────────── */
.dk-collapsible-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}
.dk-collapsible-header:hover { opacity: 0.75; }
.dk-collapse-arrow {
    font-size: 0.6875rem;
    color: var(--accent-blue);
    width: 1rem;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

/* ── Tier Breakdown ────────────────────────── */
.dk-tier-position { margin-bottom: 1.25rem; }
.dk-tier-pos-header {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.75rem;
}
.dk-tier-card {
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}
.dk-tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-light);
}
.dk-tier-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dk-tier-range {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}
.dk-tier-card .dk-table { margin-bottom: 0; }

/* ── Stat Projections ──────────────────────── */
.dk-stat-pos-section { margin-bottom: 1rem; }
.dk-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-subtle) transparent;
}
.dk-table-scroll::-webkit-scrollbar { height: 4px; }
.dk-table-scroll::-webkit-scrollbar-track { background: transparent; }
.dk-table-scroll::-webkit-scrollbar-thumb { background: var(--border-subtle); border-radius: 2px; }
.dk-sortable th { position: relative; padding-right: 1.25rem; cursor: pointer; }
.dk-sortable th:hover { color: var(--accent-blue); }
.dk-sort-asc::after,
.dk-sort-desc::after {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5625rem;
    color: var(--accent-blue);
}
.dk-sort-asc::after { content: '\25B2'; }
.dk-sort-desc::after { content: '\25BC'; }

/* ── Strength of Schedule ──────────────────── */
.dk-sos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.dk-sos-card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1.25rem;
    background: var(--bg-subtle);
}
.dk-sos-sublabel {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0.75rem 0 0.5rem;
}
.dk-sos-easy { color: var(--brand-status-success-text); }
.dk-sos-hard { color: var(--brand-status-danger-text); }
.dk-sos-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.dk-sos-team {
    padding: 0.4375rem 0.625rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    flex: 1 1 auto;
    min-width: 110px;
}
.dk-sos-team-easy { background: #edfaf1; border-color: #b4ebc8; }
.dk-sos-team-hard { background: #fdf1f1; border-color: #f5c6c6; }
.dk-sos-team-name {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-heading);
}
.dk-sos-team-stat {
    font-size: 0.6875rem;
    color: var(--text-secondary);
}

/* ── Availability Watch ────────────────────── */
.dk-inj-out { background: var(--brand-status-danger-bg); color: var(--brand-status-danger-text); }
.dk-inj-doubtful { background: #fee8d0; color: #974010; }
.dk-inj-questionable { background: #fdf4c8; color: #7c4a0a; }
.dk-inj-probable { background: var(--brand-status-success-bg); color: var(--brand-status-success-text); }
.dk-inj-unknown { background: var(--bg-muted); color: var(--text-secondary); }

/* ── Positional Scarcity Chart ─────────────── */
.dk-scarcity-legend {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.dk-scarcity-chart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.dk-scarcity-pos {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1rem;
    background: var(--bg-subtle);
}
.dk-scarcity-pos-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 0.625rem;
    letter-spacing: 0.02em;
}
.dk-scarcity-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 110px;
    padding: 0 2px;
}
.dk-scarcity-bar {
    flex: 1;
    min-width: 3px;
    border-radius: 2px 2px 0 0;
    transition: opacity 0.15s ease;
    cursor: default;
}
.dk-scarcity-bar:hover { opacity: 0.65; }
.dk-scarcity-xlabels {
    display: flex;
    justify-content: space-between;
    font-size: 0.5625rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
    padding: 0 2px;
    font-weight: 500;
}

/* ── Round-by-Round Strategy ───────────────── */
.dk-round-card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.dk-round-header {
    padding: 1.125rem 1.5rem;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-light);
}
.dk-round-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.1875rem;
}
.dk-round-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
.dk-round-pos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
}
.dk-round-pos-group {}
.dk-round-pos-label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-blue);
    margin-bottom: 0.375rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--accent-blue);
    display: inline-block;
}
.dk-round-player-list {}
.dk-round-player {
    padding: 0.3125rem 0;
    border-bottom: 1px solid var(--border-light);
}
.dk-round-player:last-child { border-bottom: none; }
.dk-round-player .dk-player-link {
    font-size: 0.8125rem;
    display: block;
}
.dk-round-player-meta {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    display: block;
    margin-top: 0.0625rem;
}

/* ── Chart row link style ──────────────────── */
.dk-chart-row-link {
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
    transition: background 0.1s ease;
}
.dk-chart-row-link:hover {
    background: rgba(45,108,223,0.06);
}

/* ══════════════════════════════════════════════
   RESPONSIVE - Tablet
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .draft-hero {
        margin: -4rem -1rem 2.5rem;
        padding: 4rem 1.5rem 3rem;
    }
    .draft-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    .draft-hero-subtitle {
        font-size: 0.9375rem;
    }
    .draft-section {
        padding: 1.5rem;
        margin-bottom: 1.75rem;
        border-radius: 10px;
    }
    .draft-section h2 {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }
    .dk-chart-label {
        width: 100px;
        min-width: 100px;
        font-size: 0.75rem;
    }
    .dk-table { font-size: 0.75rem; }
    .dk-table th {
        padding: 0.375rem 0.5rem;
        font-size: 0.625rem;
    }
    .dk-table td {
        padding: 0.3125rem 0.5rem;
    }
    .resource-grid { gap: 1rem; }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .team-item {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE - Small Mobile
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .draft-hero {
        margin: -4rem -1rem 2rem;
        padding: 3.5rem 1rem 2.5rem;
    }
    .draft-hero-title {
        font-size: 1.625rem;
    }
    .draft-hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    .draft-section {
        padding: 1.125rem;
        margin-bottom: 1.25rem;
    }
    .draft-section h2 {
        font-size: 1.25rem;
    }
    .resource-item {
        padding: 1.125rem;
    }
    .dk-pos-grid { gap: 1rem; }
    .dk-pos-card { padding: 0.875rem; }
    .dk-chart-label {
        width: 72px;
        min-width: 72px;
        font-size: 0.6875rem;
    }
    .dk-bar { height: 8px; }
    .draft-premium-teaser {
        padding: 2rem 1.25rem;
        margin-top: 2rem;
    }
    .draft-premium-teaser h2 {
        font-size: 1.375rem;
    }
    .draft-premium-teaser p {
        font-size: 0.875rem;
    }
    .draft-premium-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
    .draft-premium-overlay {
        font-size: 0.75rem;
        padding: 0.4375rem 1rem;
    }
    .draft-footer-cta {
        padding: 1.75rem 1.25rem;
    }
    .dk-gpt-cta {
        padding: 2rem 1.25rem;
    }
    .dk-gpt-cta h2 {
        font-size: 1.25rem;
    }
    .dk-round-header {
        padding: 0.875rem 1rem;
    }
    .dk-round-pos-grid {
        padding: 0.875rem 1rem;
    }
}

/* ══════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════ */
@media print {
    .draft-hero {
        background: none !important;
        color: #000 !important;
        padding: 1rem 0;
        margin: 0 0 1rem;
    }
    .draft-hero-title { color: #000 !important; font-size: 1.75rem !important; }
    .draft-hero-subtitle { color: #555 !important; }
    .draft-hero::before,
    .draft-hero::after,
    .draft-premium-teaser,
    .dk-gpt-cta,
    .draft-footer-cta { display: none !important; }
    .draft-section { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
}
