        :root {
            --bg: #f5f7fb;
            --panel: #ffffff;
            --panel-soft: #f0f4fa;
            --text: #183153;
            --muted: #6a7b95;
            --line: #d8e0eb;
            --brand: #1f66e5;
            --brand-soft: #eaf2ff;
            --shadow: 0 12px 30px rgba(15, 37, 64, 0.06);
            --content-width: 1400px;
            --sidebar-width: 220px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Segoe UI", "Noto Sans KR", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--line);
        }

        .site-header__inner {
            max-width: var(--content-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 74px;
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 28px;
            min-width: var(--sidebar-width);
            min-height: 74px;
            font-size: 24px;
            font-weight: 800;
            color: var(--brand);
            border-right: 1px solid var(--line);
        }

        .site-logo__mark {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: #fff;
            border: 1px solid var(--line);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 34px;
            overflow: hidden;
        }

        .site-logo__mark img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .site-logo__text {
            line-height: 1;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .top-nav {
            display: flex;
            align-items: stretch;
            gap: 0;
            flex: 1;
            justify-content: flex-end;
            padding-right: 18px;
        }

        .top-nav__link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 96px;
            padding: 0 18px;
            min-height: 74px;
            font-weight: 700;
            color: #21334f;
            border-bottom: 3px solid transparent;
        }

        .top-nav__link.is-active {
            color: var(--brand);
            border-bottom-color: var(--brand);
            background: linear-gradient(to bottom, rgba(31, 102, 229, 0.02), rgba(31, 102, 229, 0.06));
        }

        .mobile-menu-button,
        .mobile-menu-overlay,
        .mobile-menu-drawer {
            display: none;
        }

        .mobile-menu-button {
            width: 54px;
            height: 54px;
            margin-right: 14px;
            border: 0;
            background: transparent;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
        }

        .mobile-menu-button span {
            display: block;
            width: 22px;
            height: 2px;
            background: #21334f;
            border-radius: 999px;
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 21, 36, 0.45);
            z-index: 120;
        }

        .mobile-menu-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(88vw, 360px);
            background: #fff;
            border-left: 1px solid var(--line);
            box-shadow: -18px 0 36px rgba(15, 37, 64, 0.14);
            z-index: 130;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.24s ease;
        }

        body.mobile-menu-open {
            overflow: hidden;
        }

        body.mobile-menu-open .mobile-menu-overlay {
            display: block;
        }

        body.mobile-menu-open .mobile-menu-drawer {
            transform: translateX(0);
        }

        .mobile-menu-drawer__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px 16px;
            border-bottom: 1px solid var(--line);
        }

        .mobile-menu-drawer__header strong {
            font-size: 22px;
            font-weight: 800;
            color: var(--brand);
        }

        .mobile-menu-close {
            min-height: 38px;
            padding: 0 14px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            color: #21334f;
            font-weight: 700;
            cursor: pointer;
        }

        .mobile-menu-nav {
            padding: 12px 0 24px;
        }

        .mobile-menu-group {
            border-bottom: 1px solid var(--line);
        }

        .mobile-menu-group__title {
            display: block;
            padding: 16px 20px 12px;
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
        }

        .mobile-menu-group__title.is-active {
            color: var(--brand);
        }

        .mobile-menu-group__items {
            display: grid;
            gap: 2px;
            padding: 0 0 12px;
        }

        .mobile-menu-group__link {
            display: block;
            padding: 8px 20px 8px 34px;
            color: #31435f;
            font-size: 15px;
            font-weight: 700;
        }

        .mobile-menu-group__link::before {
            content: "-";
            margin-right: 8px;
            color: var(--muted);
        }

        .mobile-menu-group__link.is-active {
            color: var(--brand);
        }

        .page-shell {
            max-width: var(--content-width);
            margin: 0 auto;
            display: flex;
            align-items: stretch;
            min-height: calc(100vh - 74px);
        }

        .page-sidebar {
            width: var(--sidebar-width);
            flex: 0 0 var(--sidebar-width);
            background: #f0f3f8;
            border-right: 1px solid var(--line);
            padding-bottom: 32px;
        }

        .page-sidebar__title {
            padding: 28px 24px 20px;
            font-size: 17px;
            font-weight: 800;
            border-bottom: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.55);
        }

        .page-sidebar__nav {
            padding: 20px 0 0;
        }

        .page-sidebar__link {
            display: block;
            padding: 14px 24px;
            font-size: 17px;
            font-weight: 700;
            color: #223552;
            border-left: 3px solid transparent;
        }

        .page-sidebar__link.is-active {
            background: var(--brand-soft);
            color: var(--brand);
            border-left-color: var(--brand);
        }

        .page-main {
            flex: 1;
            min-width: 0;
            padding: 28px 38px 60px;
        }

        .page-panel {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 26px;
        }

        .page-header {
            margin-bottom: 24px;
        }

        .page-header h1 {
            font-size: 34px;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .page-header p {
            color: var(--muted);
            font-size: 16px;
        }

        .content-block {
            margin-top: 26px;
        }

        .content-block__title {
            font-size: 28px;
            font-weight: 800;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 18px;
        }

        .content-placeholder {
            min-height: 220px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--panel-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            color: var(--muted);
            text-align: center;
            font-size: 18px;
        }

        .static-copy {
            display: grid;
            gap: 18px;
        }

        .static-copy p {
            color: #31435f;
            font-size: 16px;
            line-height: 1.85;
        }

        .static-note {
            padding: 16px 18px;
            border-radius: 12px;
            background: var(--brand-soft);
            color: #26456d;
            font-weight: 700;
        }

        .fact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .fact-card {
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            padding: 18px;
            transition: all 0.3s ease;
        }

        .fact-card:hover {
            border-color: var(--brand);
            background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
            box-shadow: 0 4px 12px rgba(31, 102, 229, 0.12);
        }

        .fact-card strong {
            display: block;
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--brand);
        }

        .fact-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #374a5e;
            margin-bottom: 10px;
        }

        .fact-card p:last-child {
            margin-bottom: 0;
        }

        .fact-card a {
            color: var(--brand);
            font-weight: 600;
            text-decoration: none;
            position: relative;
            transition: color 0.2s ease;
        }

        .fact-card a:hover {
            color: #0b47b8;
            text-decoration: underline;
        }

        .fact-card a::after {
            content: " →";
            transition: transform 0.2s ease;
        }

        .fact-card a:hover::after {
            transform: translateX(4px);
        }

        .bullet-list {
            display: grid;
            gap: 10px;
            list-style: none;
        }

        .bullet-list li {
            padding-left: 18px;
            position: relative;
            color: #31435f;
            line-height: 1.75;
        }

        .bullet-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 11px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand);
        }

        .step-list {
            display: grid;
            gap: 14px;
        }

        .step-item {
            display: grid;
            grid-template-columns: 72px minmax(0, 1fr);
            gap: 16px;
            align-items: start;
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
        }

        .step-item__no {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            border-radius: 999px;
            background: var(--brand-soft);
            color: var(--brand);
            font-weight: 800;
        }

        .step-item strong {
            display: block;
            margin-bottom: 6px;
            font-size: 16px;
        }

        .step-item p {
            color: #31435f;
            line-height: 1.7;
        }

        .faq-list {
            display: grid;
            gap: 14px;
        }

        .faq-item {
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
        }

        .faq-item__q,
        .faq-item__a {
            padding: 16px 18px;
        }

        .faq-item__q {
            background: #f8fbff;
            border-bottom: 1px solid var(--line);
            font-weight: 800;
            color: #1c3f70;
        }

        .faq-item__a {
            color: #31435f;
            line-height: 1.75;
        }

        .league-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .league-anchor {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: #fff;
            color: #28405f;
            font-weight: 700;
        }

        .league-anchor.is-active {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }

        .team-chip-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
        }

        .team-chip {
            display: block;
            padding: 12px 14px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            color: #28405f;
            font-weight: 700;
            text-align: center;
        }

        .team-chip.is-active {
            background: var(--brand-soft);
            border-color: var(--brand);
            color: var(--brand);
        }

        .league-section {
            display: grid;
            gap: 18px;
        }

        .league-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--line);
        }

        .league-header h3 {
            font-size: 26px;
            line-height: 1.2;
        }

        .league-header span {
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        .team-card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .team-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 18px;
            display: grid;
            gap: 12px;
        }

        .team-card h4 {
            font-size: 20px;
            line-height: 1.3;
        }

        .team-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            color: var(--muted);
            font-size: 14px;
        }

        .team-card__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--brand-soft);
            color: var(--brand);
            font-size: 13px;
            font-weight: 800;
        }

        .team-card__copy {
            color: #31435f;
            font-size: 15px;
            line-height: 1.7;
        }

        .team-card__link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--brand);
        }

        .team-detail-hero {
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
        }

        .team-detail-hero h3 {
            font-size: 30px;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .team-detail-hero__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 14px;
        }

        .filter-bar {
            display: grid;
            grid-template-columns: 1.1fr 1fr 0.8fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        .filter-field {
            display: grid;
            gap: 6px;
        }

        .filter-field label {
            font-size: 14px;
            font-weight: 700;
            color: #28405f;
        }

        .filter-field input,
        .filter-field select {
            width: 100%;
            min-height: 44px;
            padding: 10px 12px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            color: var(--text);
            font: inherit;
        }

        .filter-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 16px;
            border-radius: 12px;
            border: 1px solid var(--brand);
            background: var(--brand);
            color: #fff;
            font-weight: 700;
        }

        .filter-button--ghost {
            background: #fff;
            color: var(--brand);
        }

        .roster-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .game-date-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .game-list {
            display: grid;
            gap: 14px;
        }

        .game-detail {
            display: grid;
            gap: 20px;
        }

        .game-detail__hero {
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
        }

        .game-detail__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .game-detail__hero .game-card__match {
            margin: 0;
        }

        .game-detail__back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--brand);
        }

        .game-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .game-info-card,
        .team-info-card,
        .player-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 18px;
        }

        .team-info-card h3,
        .game-info-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .team-info-card__meta,
        .player-card__meta {
            color: var(--muted);
            font-size: 14px;
        }

        .game-stat-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .game-stat {
            padding: 12px 14px;
            border-radius: 12px;
            background: var(--panel-soft);
        }

        .game-stat strong {
            display: block;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .score-table {
            width: 100%;
            border-collapse: collapse;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
        }

        .score-table th,
        .score-table td {
            padding: 12px 10px;
            border-bottom: 1px solid var(--line);
            text-align: center;
        }

        .score-table th:first-child,
        .score-table td:first-child {
            text-align: left;
            font-weight: 800;
        }

        .score-table thead th {
            background: #f8fbff;
            color: #1c3f70;
            font-size: 14px;
        }

        .score-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .player-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .player-card strong {
            display: block;
            font-size: 17px;
            margin-bottom: 6px;
        }

        .game-card__link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            font-weight: 700;
            color: var(--brand);
        }

        .game-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 18px 20px;
        }

        .game-card__meta,
        .game-card__footer {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            color: var(--muted);
            font-size: 13px;
        }

        .game-card__match {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
            gap: 16px;
            align-items: center;
            margin: 14px 0 12px;
        }

        .game-team {
            display: grid;
            gap: 4px;
        }

        .game-team strong {
            font-size: 18px;
        }

        .game-team--home {
            text-align: right;
        }

        .game-score {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 12px;
            border-radius: 14px;
            background: linear-gradient(135deg, #f5f9ff 0%, #e9f1ff 100%);
            color: var(--brand);
            font-size: 30px;
            font-weight: 800;
        }

        .game-score em {
            font-style: normal;
            color: #7c8eaa;
        }

        .home-hero {
            padding: 0;
            background: transparent;
            position: relative;
            overflow: hidden;
            border: 0;
            box-shadow: none;
        }

        .hero-banner {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            height: 280px;
            z-index: 1;
        }

        .hero-banner svg {
            width: 100%;
            height: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 50px 38px;
            text-align: center;
            color: #ffffff;
        }

        .hero-primary {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .hero-secondary {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff !important;
            margin-bottom: 24px;
        }

        .hero-content .hero-secondary {
            color: #ffffff !important;
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 28px;
            border-radius: 12px;
            background: #ffffff;
            color: var(--brand);
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .hero-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(31, 102, 229, 0.25);
        }

        .quick-links-panel {
            padding: 32px 26px;
        }

        .quick-links-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 14px;
            margin: 0;
        }

        .quick-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 20px 14px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            text-align: center;
            transition: all 0.3s ease;
        }

        .quick-card:hover {
            border-color: var(--brand);
            background: var(--brand-soft);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(31, 102, 229, 0.12);
        }

        .quick-icon {
            font-size: 32px;
            line-height: 1;
        }

        .quick-text {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
        }

        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin: 0;
            padding: 26px;
        }

        .info-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 12px;
            padding: 28px 20px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .info-card:hover {
            border-color: var(--brand);
            background: var(--brand-soft);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(31, 102, 229, 0.12);
        }

        .info-card__icon {
            font-size: 40px;
            line-height: 1;
        }

        .info-card__title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 0;
        }

        .info-card__desc {
            font-size: 14px;
            color: var(--muted);
            margin: 0;
        }

        .home-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 24px;
        }

        .home-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 22px;
        }

        .home-card h2 {
            font-size: 21px;
            margin-bottom: 8px;
        }

        .home-card p {
            color: var(--muted);
        }

        .home-card__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 13px;
            font-weight: 800;
            color: var(--brand);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .home-card__stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 14px 0 16px;
        }

        .home-card__stats span {
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            padding: 0 12px;
            border-radius: 999px;
            background: var(--brand-soft);
            color: var(--brand);
            font-size: 13px;
            font-weight: 700;
        }

        .home-mini-list {
            display: grid;
            gap: 10px;
            margin-top: 16px;
            list-style: none;
        }

        .home-mini-list li {
            color: #31435f;
            font-size: 14px;
            line-height: 1.65;
        }

        .home-mini-list a {
            color: inherit;
        }

        .home-mini-list strong {
            color: var(--text);
        }

        .home-card__more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            color: var(--brand);
            font-size: 14px;
            font-weight: 800;
        }

        /* ?? ?ㅽ룷痢??뱀뀡 怨듯넻 ?? */
        .sport-section {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid var(--line);
        }

        .sport-section__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .sport-section__header h2 {
            font-size: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sport-section__date {
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
        }

        .sport-section__header > a {
            font-size: 13px;
            font-weight: 700;
            color: var(--brand);
            white-space: nowrap;
        }

        .sport-section__empty {
            padding: 20px 0;
            color: var(--muted);
            font-size: 14px;
        }

        /* ?? ?댁쇅異뺢뎄 ?뚯씠釉??? */
        
        /* 스포츠 정보 카드 그리드 */
        .sport-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
        }

        .sport-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 18px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .sport-card:hover {
            border-color: var(--brand);
            box-shadow: 0 8px 24px rgba(31, 102, 229, 0.1);
            transform: translateY(-2px);
        }

        .sport-card__header {
            border-bottom: 2px solid var(--brand-soft);
            padding-bottom: 12px;
        }

        .sport-card__title {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 4px;
        }

        .sport-card__sub {
            font-size: 12px;
            color: var(--muted);
            font-weight: 500;
        }

        .sport-card__stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .sport-card__stat {
            background: var(--panel-soft);
            border-radius: 8px;
            padding: 12px 10px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .sport-card__stat-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sport-card__stat-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--brand);
        }

        .sport-card__teams {
            font-size: 12px;
            color: var(--text);
            line-height: 1.6;
            flex-grow: 1;
        }

        .sport-card__teams a {
            color: var(--brand);
            font-weight: 600;
            transition: opacity 0.15s;
        }

        .sport-card__teams a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
\n        .sport-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .sport-table thead th {
            padding: 10px 14px;
            background: var(--panel-soft);
            color: #28405f;
            font-weight: 700;
            text-align: left;
            border-bottom: 1px solid var(--line);
        }

        .sport-table tbody td {
            padding: 12px 14px;
            border-bottom: 1px solid var(--line);
            vertical-align: middle;
            line-height: 1.5;
        }

        .sport-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .sport-table__sub {
            font-size: 12px;
            color: var(--muted);
        }

        .sport-table__teams {
            color: var(--muted);
        }

        /* ?? 寃쎄린 ??紐⑸줉 ?? */
        .game-row-list {
            display: grid;
            gap: 6px;
        }

        .game-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            font-size: 14px;
            transition: background 0.15s;
        }

        .game-row:hover {
            background: var(--brand-soft);
            border-color: var(--brand);
        }

        .game-row__badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 46px;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .badge--final {
            background: #f0f2f5;
            color: #7a8aa0;
        }

        .badge--live {
            background: #fee2e2;
            color: #dc2626;
            animation: pulse-live 1.4s ease-in-out infinite;
        }

        @keyframes pulse-live {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .badge--scheduled {
            background: var(--brand-soft);
            color: var(--brand);
        }

        .game-row__time {
            color: var(--muted);
            font-size: 13px;
            min-width: 72px;
            flex-shrink: 0;
        }

        .game-row__team {
            flex: 1;
            font-weight: 700;
            color: var(--text);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .game-row__team--away {
            text-align: right;
        }

        .game-row__team--home {
            text-align: left;
        }

        .game-row__score {
            font-size: 17px;
            font-weight: 800;
            color: var(--brand);
            min-width: 60px;
            text-align: center;
            flex-shrink: 0;
        }

        /* ?? 寃뚯떆??2???? */
        .board-split {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
        }

        .board-col .sport-section__header h2 {
            font-size: 18px;
        }

        .post-list {
            list-style: none;
            display: grid;
            gap: 0;
        }

        .post-row a {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
            padding: 11px 0;
            border-bottom: 1px solid var(--line);
        }

        .post-row:last-child a {
            border-bottom: 0;
        }

        .post-row__title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
        }

        .post-row__meta {
            font-size: 12px;
            color: var(--muted);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .home-news-list {
            display: grid;
            gap: 18px;
        }

        .home-news-item {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
        }

        .home-news-item__link {
            display: grid;
            grid-template-columns: 240px minmax(0, 1fr);
            text-decoration: none;
            color: inherit;
        }

        .home-news-item__thumb {
            min-height: 160px;
            background: linear-gradient(135deg, #eef3ff 0%, #dfe8fb 100%);
            border-right: 1px solid var(--line);
        }

        .home-news-item__thumb--empty {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: var(--brand);
            letter-spacing: 0.08em;
        }

        .home-news-item__body {
            padding: 20px 22px;
            min-width: 0;
        }

        .home-news-item__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 12px;
            color: var(--muted);
        }

        .home-news-item__title {
            margin: 0 0 10px;
            font-size: 23px;
            line-height: 1.35;
            color: var(--text);
        }

        .home-news-item__summary {
            margin: 0;
            font-size: 14px;
            line-height: 1.7;
            color: var(--muted);
        }

        .board-list {
            display: grid;
            gap: 14px;
            margin-top: 18px;
        }

        .board-item {
            padding: 18px 20px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
        }

        .board-item strong {
            display: block;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .board-item span {
            color: var(--muted);
            font-size: 14px;
        }

        .board-item__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 10px;
            color: var(--muted);
            font-size: 14px;
        }

        .board-item__meta--community {
            gap: 8px;
            font-size: 13px;
        }

        .board-item__writer {
            color: var(--brand);
            font-weight: 700;
        }

        .board-item__time {
            color: var(--muted);
        }

        .board-item__comments {
            color: #1f66e5;
            font-weight: 600;
            margin-left: auto;
        }

        .board-item__summary {
            color: #31435f;
            font-size: 15px;
            line-height: 1.7;
        }

        .board-item__link {
            display: block;
        }

        .board-list--community {
            gap: 0;
            margin-top: 10px;
            border-top: 2px solid var(--line);
        }

        .board-item--community {
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            border-bottom: 1px solid var(--line);
            transition: background-color 0.2s ease;
        }

        .board-item--community:hover {
            background-color: #f8fbff;
        }

        .board-item--community .board-item__link {
            padding: 18px 6px 18px 2px;
        }

        .board-item--community .board-item__meta {
            gap: 10px;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .board-item--community strong {
            font-size: 28px;
            line-height: 1.35;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .board-item--community .board-item__summary {
            font-size: 15px;
            line-height: 1.7;
            color: #415672;
        }

        .board-detail {
            display: grid;
            gap: 22px;
        }

        .board-detail__actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .board-detail__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 108px;
            padding: 10px 16px;
            border: 1px solid var(--brand);
            border-radius: 10px;
            background: var(--brand);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
        }

        .board-detail__button--ghost {
            background: #fff;
            color: var(--brand);
        }

        .board-detail__content {
            font-size: 16px;
            line-height: 1.8;
            color: #223552;
        }

        .board-detail__content .ai-article,
        .board-detail__content article {
            width: 100%;
        }

        .board-detail__content .ai-article {
            color: #1b2430;
            background: transparent;
            font-family: "Noto Sans KR", "Segoe UI", sans-serif;
            line-height: 1.85;
        }

        .board-detail__content .ai-article .post-title {
            margin: 0 0 16px;
            font-size: clamp(30px, 4vw, 40px);
            line-height: 1.22;
            letter-spacing: -0.03em;
            color: #10233f;
        }

        .board-detail__content .ai-article .lead {
            margin: 0 0 24px;
            font-size: 18px;
            line-height: 1.8;
            color: #556983;
        }

        .board-detail__content .ai-article .section-title,
        .board-detail__content .ai-article .sub-title {
            margin: 34px 0 12px;
            line-height: 1.35;
            letter-spacing: -0.02em;
            color: #10233f;
        }

        .board-detail__content .ai-article .section-title {
            font-size: 26px;
        }

        .board-detail__content .ai-article .sub-title {
            font-size: 21px;
        }

        .board-detail__content .ai-article p {
            margin: 0 0 16px;
            color: #24364f;
        }

        .board-detail__content .ai-article .bullet-list {
            margin: 16px 0 20px;
        }

        .board-detail__content .ai-article .quote {
            margin: 26px 0;
            padding: 18px 20px;
            border-left: 4px solid var(--brand);
            border-radius: 0 12px 12px 0;
            background: #f3f7ff;
            color: #29415f;
            font-weight: 600;
        }

        .board-detail__content .ai-article .svg-wrap {
            margin: 28px 0;
        }

        .board-detail__content .ai-article .svg-wrap svg {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 14px;
        }

        .board-detail__content .ai-article .caption,
        .board-detail__content .ai-article figcaption {
            margin-top: 10px;
            font-size: 14px;
            color: var(--muted);
        }

        .board-detail__content .ai-article .source-link,
        .board-detail__content .ai-article a {
            color: var(--brand);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .board-detail__content .ai-article hr {
            margin: 30px 0;
            border: 0;
            border-top: 1px solid var(--line);
        }

        .board-detail__svg {
            margin-bottom: 20px;
            border: 1px solid var(--line);
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
        }

        .board-detail__svg svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .board-comments {
            display: grid;
            gap: 14px;
        }

        .board-comments--community {
            gap: 12px;
        }

        .board-comment {
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 16px 18px;
            background: #fff;
        }

        .board-comment--community {
            border: 1px solid #e8ecf2;
            border-left: 3px solid var(--brand);
            border-radius: 6px;
            padding: 14px 16px;
            background: #f8fbff;
            transition: all 0.2s ease;
        }

        .board-comment--community:hover {
            border-left-color: #1f66e5;
            background: #f5f9ff;
            box-shadow: 0 2px 8px rgba(31, 102, 229, 0.08);
        }

        .board-comment__meta {
            color: var(--muted);
            font-size: 13px;
            margin-bottom: 8px;
        }

        .board-comment__meta--community {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 12px;
        }

        .board-comment__writer {
            color: var(--brand);
            font-weight: 700;
            font-size: 13px;
        }

        .board-comment__time {
            color: var(--muted);
            font-size: 12px;
        }

        .board-comment__content {
            color: #374a5e;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Community Board Detail Styles */
        .board-detail--community {
            gap: 28px;
        }

        .board-item--detail-community {
            padding: 28px 24px;
            border: 1px solid #e0e8f1;
            border-radius: 12px;
            background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
        }

        .board-item__meta--detail {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid #e8ecf2;
        }

        .board-item__meta--detail-community {
            gap: 16px;
            font-size: 13px;
        }

        .board-item__category {
            display: inline-block;
            padding: 4px 10px;
            background: #e8f0ff;
            color: var(--brand);
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
        }

        .community-comment-title {
            color: #1f66e5;
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .content-placeholder--community {
            padding: 40px 20px;
            text-align: center;
            color: #889ab0;
            background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
            border-radius: 12px;
            border: 1px dashed #d8e0eb;
        }

        .pagination {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 22px;
            justify-content: center;
        }

        .pagination__link {
            min-width: 40px;
            padding: 9px 12px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            text-align: center;
            font-weight: 700;
            color: #28405f;
        }

        .pagination__link.is-active {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }

        .site-footer {
            margin-top: 0px;
            padding: 0 0 28px;
            color: var(--muted);
            font-size: 14px;
            background: #fff;
            border-top: 1px solid var(--line);
        }

        .site-footer__inner {
            max-width: var(--content-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
            gap: 18px;
            padding: 28px 38px 20px;
        }

        .site-footer__brand,
        .site-footer__nav {
            min-width: 0;
        }

        .site-footer__logo {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--brand);
        }

        .site-footer__brand p {
            color: #31435f;
            line-height: 1.8;
        }

        .site-footer__nav h2 {
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
        }

        .site-footer__nav ul {
            display: grid;
            gap: 10px;
            list-style: none;
        }

        .site-footer__nav a {
            color: #31435f;
            font-weight: 700;
        }

        .site-footer__nav a:hover {
            color: var(--brand);
        }

        .site-footer__bottom {
            max-width: var(--content-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 38px 0;
            color: var(--muted);
            font-size: 13px;
            flex-wrap: wrap;
            border-top: 1px solid var(--line);
        }

        .site-chat-widget {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 110;
            display: grid;
            justify-items: end;
            gap: 12px;
        }

        .site-chat-toggle {
            width: 64px;
            height: 64px;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(160deg, #2f73eb 0%, #1f66e5 100%);
            color: #fff;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            box-shadow: 0 14px 24px rgba(14, 39, 74, 0.24);
            cursor: pointer;
        }

        .site-chat-toggle[hidden] {
            display: none !important;
        }

        .site-chat-toggle__icon {
            width: 22px;
            height: 16px;
            border: 2px solid currentColor;
            border-radius: 7px;
            position: relative;
            display: block;
        }

        .site-chat-toggle__icon::after {
            content: "";
            position: absolute;
            left: 3px;
            bottom: -6px;
            width: 8px;
            height: 8px;
            border-left: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            border-bottom-left-radius: 2px;
            background: transparent;
        }

        .site-chat-toggle__text {
            font-size: 11px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.01em;
        }

        .site-chat-panel {
            width: min(380px, calc(100vw - 24px));
            height: min(620px, calc(100vh - 110px));
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 16px;
            box-shadow: 0 22px 44px rgba(12, 33, 63, 0.2);
            overflow: hidden;
            display: grid;
            grid-template-rows: auto 1fr;
        }

        .site-chat-panel[hidden] {
            display: none !important;
        }

        .site-chat-panel__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 54px;
            padding: 12px 14px 12px 16px;
            border-bottom: 1px solid var(--line);
            background: #f9fbff;
        }

        .site-chat-panel__header strong {
            color: var(--text);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .site-chat-close {
            height: 34px;
            padding: 0 12px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            color: #2d3e5a;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
        }

        .site-chat-panel__body {
            min-height: 0;
        }

        .site-chat-panel__body u-chat {
            display: inline-block;
            width: 100%;
            height: 100%;
        }

        @media (max-width: 1080px) {
            .site-header__inner {
                min-height: auto;
                align-items: center;
            }

            .site-logo {
                min-width: 0;
                border-right: 0;
                border-bottom: 0;
                padding: 0 16px;
                font-size: 22px;
                gap: 10px;
            }

            .site-logo__mark {
                width: 30px;
                height: 30px;
                flex-basis: 30px;
            }

            .top-nav,
            .page-sidebar {
                display: none;
            }

            .mobile-menu-button {
                display: flex;
            }

            .mobile-menu-drawer {
                display: block;
            }

            .page-shell {
                flex-direction: column;
            }

            .quick-links-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
            }

            .info-cards-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }

            .board-split {
                grid-template-columns: 1fr;
            }

            .home-news-item__link {
                grid-template-columns: 1fr;
            }

            .home-news-item__thumb {
                min-height: 200px;
                border-right: 0;
                border-bottom: 1px solid var(--line);
            }

            .home-grid {
                grid-template-columns: 1fr;
            }

            .fact-grid {
                grid-template-columns: 1fr;
            }

            .team-card-grid {
                grid-template-columns: 1fr;
            }

            .team-chip-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .filter-bar {
                grid-template-columns: 1fr;
            }

            .roster-grid {
                grid-template-columns: 1fr;
            }

            .game-card__match {
                grid-template-columns: 1fr;
            }

            .game-detail-grid,
            .player-grid,
            .game-stat-list {
                grid-template-columns: 1fr;
            }

            .game-team--home {
                text-align: left;
            }

            .site-footer {
                padding-bottom: 20px;
            }

            .site-footer__inner {
                grid-template-columns: 1fr;
                padding: 24px 20px 18px;
            }

            .site-footer__bottom {
                flex-direction: column;
                padding: 14px 20px 0;
            }
        }

        @media (max-width: 720px) {
            .page-main {
                padding: 20px;
            }

            .page-panel {
                padding: 22px;
            }

            .home-hero {
                padding: 0;
                border: 0;
                box-shadow: none;
            }

            .hero-content {
                padding: 36px 22px;
            }

            .hero-primary {
                font-size: 26px;
                line-height: 1.35;
            }

            .hero-secondary {
                font-size: 16px;
            }

            .quick-links-panel {
                padding: 22px;
            }

            .quick-links-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }

            .info-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 20px;
            }

            .game-row {
                flex-wrap: wrap;
            }

            .game-row__team {
                min-width: 100px;
            }

            .sport-table__teams {
                display: none;
            }
            .sport-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .sport-card {
                padding: 14px;
                gap: 10px;
            }

            .sport-card__header {
                padding-bottom: 10px;
            }

            .sport-card__title {
                font-size: 14px;
            }

            .sport-card__sub {
                font-size: 11px;
            }

            .sport-card__stat-value {
                font-size: 16px;
            }

            .sport-card__teams {
                font-size: 11px;
            }


            .quick-card {
                padding: 16px 10px;
            }

            .quick-icon {
                font-size: 28px;
            }

            .quick-text {
                font-size: 13px;
            }

            .page-header h1,
            .content-block__title {
                font-size: 26px;
            }

            .page-sidebar__title,
            .page-sidebar__link {
                padding-left: 18px;
                padding-right: 18px;
            }

            .step-item {
                grid-template-columns: 1fr;
            }

            .team-chip-grid {
                grid-template-columns: 1fr;
            }

            .site-chat-widget {
                right: 12px;
                bottom: calc(12px + env(safe-area-inset-bottom, 0px));
            }

            .site-chat-toggle {
                width: 58px;
                height: 58px;
            }

            .site-chat-panel {
                width: min(380px, calc(100vw - 24px));
                height: min(72vh, 560px);
            }
        }
