/* ============================================================
   OGT (One Grid Trophy) — 붉은 액센트 + 블루/퍼플 베이스
   ============================================================ */

:root {
    --ogt-red:    #ff3636;
    --ogt-orange: #ff6a3a;
    --ogt-dark:   #c92929;
    --ogt-gold:   #ffd24c;
}

.page-ogt {
    background:
        radial-gradient(ellipse 1100px 700px at 12% 0%, rgba(255, 54, 54, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 900px 600px at 88% 18%, rgba(160, 107, 255, 0.10) 0%, transparent 60%),
        #07060a;
    color: #fff;
    font-family: 'Inter', 'Noto Sans KR', system-ui, sans-serif;
}
.ogt-page-shell { padding-bottom: 60px; }

/* ===== HERO ===== */
.ogt-hero {
    position: relative;
    margin-top: var(--fixed-header-h, 96px);
    min-height: 420px;
    padding: 64px 24px 56px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(255, 54, 54, 0.2);
    text-align: center;
}
.ogt-hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background-image: var(--hero-bg);
    background-size: var(--hero-size, cover);
    background-position: center var(--hero-pos-y, 30%);
    filter: brightness(0.68) saturate(1.05);
}
.ogt-hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse 70% 100% at 0% 0%, rgba(255, 54, 54, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 80% 100% at 100% 100%, rgba(201, 92, 255, 0.16) 0%, transparent 55%),
        linear-gradient(180deg, rgba(7, 6, 10, 0.15) 0%, rgba(7, 6, 10, 0.6) 60%, rgba(7, 6, 10, 0.88) 100%);
    pointer-events: none;
}
.ogt-hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-image: repeating-linear-gradient(135deg, rgba(255, 54, 54, 0.04) 0 2px, transparent 2px 14px);
    opacity: 0.55; pointer-events: none;
}
.ogt-hero-content { max-width: 980px; margin: 0 auto; }
.ogt-hero-logo {
    max-width: 380px;
    max-height: 120px;
    margin: 0 auto 14px;
    filter: drop-shadow(0 8px 28px rgba(255, 54, 54, 0.45));
}
.ogt-hero-title {
    font-family: 'Inter', 'Noto Sans KR', system-ui, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #fff 0%, #ffaa9c 45%, #ff3636 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 24px rgba(255, 54, 54, 0.45));
}
.ogt-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 54, 54, 0.14);
    border: 1px solid rgba(255, 54, 54, 0.55);
    color: #ffb0a5;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(255, 54, 54, 0.22);
    margin-bottom: 22px;
}

/* SEASON PROGRESS */
.ogt-prog-wrap {
    max-width: 560px;
    margin: 0 auto 20px;
}
.ogt-prog-bg {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    border: 1px solid rgba(255, 54, 54, 0.18);
}
.ogt-prog-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ogt-red), var(--ogt-orange));
    box-shadow: 0 0 16px rgba(255, 106, 58, 0.55);
    transition: width 0.6s ease;
}
.ogt-prog-txt {
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.hero-links {
    display: flex; justify-content: center; gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.btn-ogt {
    display: inline-flex;
    align-items: center; gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ogt-red) 0%, var(--ogt-orange) 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', 'Noto Sans KR', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 22px rgba(255, 54, 54, 0.45);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.btn-ogt:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 12px 28px rgba(255, 106, 58, 0.55); }

/* ===== Section common ===== */
.ogt-sec-sm { padding: 48px 0; max-width: 1100px; }
.sec-label {
    display: inline-flex; align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 54, 54, 0.12);
    border: 1px solid rgba(255, 54, 54, 0.4);
    color: #ffb0a5;
    font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sec-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 4px 0 6px;
    letter-spacing: -0.01em;
}
.sec-div {
    width: 60px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--ogt-red), var(--ogt-orange));
    box-shadow: 0 0 14px rgba(255, 106, 58, 0.5);
}

/* ===== Schedule strip ===== */
.schedule-strip { margin-top: 10px; margin-bottom: 24px; position: relative; z-index: 3; }
.ogt-strip-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.ogt-strip-head .sec-label { margin-bottom: 0 !important; }
.ogt-strip-copy { color: rgba(255, 255, 255, 0.55); font-size: 0.84rem; line-height: 1; }
.sched-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}
.sched-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid rgba(255, 54, 54, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.sched-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 54, 54, 0.7);
    box-shadow: 0 10px 24px rgba(255, 54, 54, 0.18);
}
.sched-card.done { opacity: 0.45; border-left-color: rgba(255, 255, 255, 0.15); }
.sched-card.now {
    border-left-color: var(--ogt-orange);
    background: linear-gradient(135deg, rgba(255, 54, 54, 0.16), rgba(255, 106, 58, 0.1));
    box-shadow: 0 0 0 1px rgba(255, 106, 58, 0.45) inset, 0 8px 20px rgba(255, 106, 58, 0.25);
}
.sc-round {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ogt-red);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.sc-title {
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.sc-venue {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}
.sc-venue i { color: var(--ogt-orange); }
.sc-theme { font-size: 0.74rem; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }

/* ===== Season Standings ===== */
.lb-wrap.season-standings-wrap {
    padding: 20px 22px 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid rgba(255, 54, 54, 0.2);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}
.lb-wrap.season-standings-wrap::before {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(255, 54, 54, 0.45) 0%, transparent 50%, rgba(255, 106, 58, 0.45) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0.55; pointer-events: none;
}
.season-standings-head {
    display: flex; justify-content: space-between;
    align-items: center; gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 54, 54, 0.2);
    flex-wrap: wrap;
}
.season-standings-copy {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}
.season-table-wrap { overflow-x: auto; }
.season-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.season-table thead th {
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255, 54, 54, 0.2);
    background: transparent;
    text-align: left;
    white-space: nowrap;
}
.season-table tbody td {
    padding: 11px 10px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.season-table tbody tr {
    transition: background 0.18s ease;
}
.season-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 54, 54, 0.06), rgba(255, 106, 58, 0.04));
}
.season-table tbody tr:last-child td { border-bottom: none; }
.text-end { text-align: right; }

/* skeleton rows in season-table */
.skeleton-row td { background: transparent !important; }
.skeleton-line {
    display: inline-block;
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg,
        var(--skel-track, rgba(255, 255, 255, 0.05)) 0%,
        var(--skel-track, rgba(255, 255, 255, 0.05)) 38%,
        rgba(255, 0, 122, 0.16) 45%,
        rgba(255, 0, 122, 0.48) 50%,
        rgba(255, 0, 122, 0.16) 55%,
        var(--skel-track, rgba(255, 255, 255, 0.05)) 62%,
        var(--skel-track, rgba(255, 255, 255, 0.05)) 100%);
    background-size: 220% 100%;
    animation: ogt-shimmer 1.05s linear infinite;
}
.skeleton-rank { width: 32px; height: 32px; border-radius: 8px; }
.skeleton-driver { width: 70%; max-width: 200px; }
.skeleton-total { width: 80px; }
@keyframes ogt-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* loading indicator (스피너 + 애니메이션 점) — 로딩 중임을 명확히 표시 */
.season-standings-loading {
    display: inline-flex;
    align-items: center;
    color: var(--ogt-red);
}
.ogt-spinner {
    display: inline-block;
    width: 13px; height: 13px;
    margin-right: 8px;
    border: 2px solid rgba(255, 54, 54, 0.25);
    border-top-color: var(--ogt-red);
    border-radius: 50%;
    animation: ogt-spin 0.7s linear infinite;
}
@keyframes ogt-spin { to { transform: rotate(360deg); } }
.ogt-dots::after {
    content: '';
    animation: ogt-dots 1.3s steps(1, end) infinite;
}
@keyframes ogt-dots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}
@media (prefers-reduced-motion: reduce) {
    .ogt-spinner { animation-duration: 1.6s; }
    .skeleton-line { animation-duration: 2.2s; }
}

.season-toggle-wrap {
    text-align: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 54, 54, 0.18);
}
.season-toggle-btn {
    display: inline-flex; align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 54, 54, 0.14);
    border: 1px solid rgba(255, 54, 54, 0.4);
    color: #fff;
    font-weight: 800; font-size: 0.84rem; letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.18s ease;
}
.season-toggle-btn:hover { background: rgba(255, 54, 54, 0.24); border-color: var(--ogt-red); transform: translateY(-1px); }

/* ===== Vision cards ===== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 768px) { .vision-grid { grid-template-columns: 1fr; } }
.vision-card {
    padding: 22px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--ogt-red);
    backdrop-filter: blur(10px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.vision-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 54, 54, 0.5);
    box-shadow: 0 14px 30px rgba(255, 54, 54, 0.16);
}
.vision-title {
    font-size: 1.04rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.vision-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    word-break: keep-all;
}

/* ===== Car class cards (FWD/RWD) ===== */
.car-class-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 768px) { .car-class-grid { grid-template-columns: 1fr; } }
.car-class-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
    transition: transform 0.22s ease, border-color 0.22s ease;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.car-class-card.fwd { --cc-c: var(--ogt-red); }
.car-class-card.rwd { --cc-c: var(--ogt-orange); }
.car-class-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--cc-c) 55%, transparent);
}
.car-bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) brightness(0.55);
    transition: transform 0.6s ease, filter 0.4s ease;
}
.car-class-card:hover .car-bg { transform: scale(1.06); filter: saturate(1) brightness(0.7); }
.car-class-card.fwd .car-bg { background-image: var(--fwd-bg); }
.car-class-card.rwd .car-bg { background-image: var(--rwd-bg); }
.car-class-card::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(ellipse 80% 80% at 50% 100%, color-mix(in srgb, var(--cc-c) 18%, transparent) 0%, transparent 70%);
}
.cc-content {
    position: relative;
    padding: 22px 22px 14px;
}
.cc-badge {
    display: inline-flex; align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cc-c) 24%, rgba(0, 0, 0, 0.45));
    border: 1px solid color-mix(in srgb, var(--cc-c) 55%, transparent);
    color: color-mix(in srgb, var(--cc-c) 30%, #fff);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(6px);
}
.cc-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}
.cc-foot {
    position: relative;
    padding: 14px 22px 18px;
    display: flex;
    justify-content: flex-end;
}
.cc-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
    transition: all 0.18s ease;
}
.cc-btn:hover {
    color: #fff;
    background: color-mix(in srgb, var(--cc-c) 22%, transparent);
    border-color: color-mix(in srgb, var(--cc-c) 50%, transparent);
    transform: translateY(-1px);
}

/* ===== Tech grid ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 991px) { .tech-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 540px) { .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tech-item {
    padding: 14px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.tech-item:hover {
    border-color: rgba(255, 54, 54, 0.36);
    transform: translateY(-2px);
}
.tech-lbl {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.tech-val {
    font-size: 1.04rem;
    font-weight: 800;
    color: var(--ogt-red);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    margin-bottom: 4px;
}
.tech-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* ===== Points table ===== */
.pts-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 54, 54, 0.18);
    background: rgba(255, 255, 255, 0.025);
}
.pts-table { width: 100%; border-collapse: collapse; }
.pts-table th, .pts-table td {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.86rem;
    text-align: center;
}
.pts-table th {
    color: var(--ogt-red);
    font-weight: 800;
    background: rgba(255, 54, 54, 0.08);
}
.pts-table td { color: #fff; }
.pts-table tbody tr:last-child td { border-bottom: none; }

/* Heavy Crown */
.crown-box {
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 210, 76, 0.1), rgba(255, 54, 54, 0.08));
    border: 1px solid rgba(255, 210, 76, 0.32);
    box-shadow: 0 10px 24px rgba(255, 210, 76, 0.12);
}
.crown-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--ogt-gold);
    margin-bottom: 10px;
}
.crown-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

/* utility */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }

@media (max-width: 768px) {
    .ogt-hero { min-height: 360px; padding: 50px 20px 44px; }
    .ogt-hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}

/* ============================================================
   추가 누락 영역 보강 (Points 테이블 / Heavy Crown / Awards / Podium / Rounds / HoF)
   ============================================================ */
.ogt-sec { padding: 60px 0; max-width: 1100px; margin: 0 auto; }

/* Points 테이블 */
.pts-rank-row td {
    background: rgba(255, 54, 54, 0.1) !important;
    color: var(--ogt-red);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.pts-score-row td {
    color: #fff;
    font-weight: 900;
    font-size: 1.08rem;
    font-variant-numeric: tabular-nums;
}

/* Heavy Crown 티어 */
.wt-tier {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--ogt-red);
    margin-bottom: 8px;
}
.wt-tier.t1 { border-left-color: var(--ogt-red); }
.wt-tier.t2 { border-left-color: var(--ogt-orange); }
.wt-tier.t3 { border-left-color: #9ad9ff; }
.wt-tier.t4 { border-left-color: rgba(255, 255, 255, 0.3); opacity: 0.78; }
.wt-lbl {
    flex: 0 0 110px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.84rem;
    color: var(--ogt-red);
    letter-spacing: 0.04em;
}
.wt-tier.t2 .wt-lbl { color: var(--ogt-orange); }
.wt-tier.t3 .wt-lbl { color: #9ad9ff; }
.wt-tier.t4 .wt-lbl { color: rgba(255, 255, 255, 0.65); }
.wt-desc {
    flex: 1;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 768px) { .awards-grid { grid-template-columns: 1fr; } }
.award-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid rgba(255, 54, 54, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.award-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 54, 54, 0.5);
    box-shadow: 0 10px 24px rgba(255, 54, 54, 0.16);
}
.award-ico { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.award-ttl {
    font-size: 0.96rem; font-weight: 800; color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.award-dsc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    word-break: keep-all;
}

/* Podium */
.podium-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}
@media (max-width: 768px) { .podium-wrap { grid-template-columns: 1fr; } }
.podium-card {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.podium-card:hover { transform: translateY(-3px); }
.podium-card.rank-1 {
    border-color: rgba(255, 210, 76, 0.5);
    box-shadow: 0 14px 32px rgba(255, 210, 76, 0.18);
    order: 2;
    transform: translateY(-10px);
}
.podium-card.rank-1:hover { transform: translateY(-13px); }
.podium-card.rank-2 { border-color: rgba(220, 220, 220, 0.4); order: 1; }
.podium-card.rank-3 { border-color: rgba(224, 149, 88, 0.45); order: 3; }
@media (max-width: 768px) {
    .podium-card.rank-1, .podium-card.rank-2, .podium-card.rank-3 { order: initial; transform: none; }
    .podium-card.rank-1:hover { transform: translateY(-3px); }
}
.p-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 0.96rem;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.pb-1 { background: linear-gradient(135deg, #ffe97a, #ffd24c, #b8860b); color: #1a0f02; }
.pb-2 { background: linear-gradient(135deg, #f4f4f4, #c0c0c0, #7a7a7a); color: #1a0f02; }
.pb-3 { background: linear-gradient(135deg, #e8a574, #cd7f32, #6e3d18); }
.p-img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
    margin: 8px 0 12px;
    background: rgba(255, 255, 255, 0.04);
}
.p-team {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ogt-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.p-name {
    font-size: 1.04rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.p-comment {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 8px;
}
.p-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
}
.p-features li { padding: 3px 0; line-height: 1.5; }

/* Rounds scroll + Round card */
.rounds-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}
.r-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.18s ease;
}
.r-card:hover {
    background: rgba(255, 54, 54, 0.08);
    border-color: rgba(255, 54, 54, 0.45);
    transform: translateY(-2px);
}
.rc-tag {
    display: inline-block;
    font-size: 0.7rem; font-weight: 800;
    color: var(--ogt-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.rc-title { font-size: 0.92rem; font-weight: 800; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.rc-meta { font-size: 0.74rem; color: rgba(255, 255, 255, 0.5); display: flex; align-items: center; gap: 4px; }

/* LB Wrap (다른 lb-wrap과 통일) */
.lb-wrap {
    padding: 22px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid rgba(255, 54, 54, 0.22);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.24);
}

/* OGT tabs */
.ogt-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.ogt-tab {
    padding: 7px 18px;
    border-radius: 999px;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.18s ease;
}
.ogt-tab:hover { color: #fff; }
.ogt-tab.active {
    background: linear-gradient(135deg, var(--ogt-red), var(--ogt-orange));
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 54, 54, 0.4);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* F1 테이블 */
.f1-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.f1-table thead th {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 54, 54, 0.2);
    background: transparent;
}
.f1-table tbody td {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
}
.f1-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 54, 54, 0.06), rgba(255, 106, 58, 0.04));
}
.f1-table tbody tr:last-child td { border-bottom: none; }
.table-responsive { overflow-x: auto; }

/* Hall of Fame */
.hof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 768px) { .hof-grid { grid-template-columns: 1fr; } }
.hof-card {
    padding: 22px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 210, 76, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 210, 76, 0.32);
    backdrop-filter: blur(10px);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hof-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 210, 76, 0.16);
}
.hof-season {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ogt-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.hof-keyword {
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--ogt-red);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.hof-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.hof-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    word-break: keep-all;
}

/* lb-wrap의 season-standings-head 등 추가 정렬 */
.orb { letter-spacing: 0.02em; }

/* 행 보조 */
.row { display: flex; flex-wrap: wrap; }
.row.g-4 > * { padding: 0.75rem; }
.col-lg-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
.col-lg-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
@media (max-width: 991px) {
    .col-lg-5, .col-lg-7 { flex: 0 0 100%; max-width: 100%; }
}
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 0.75rem; }
