        /* CSS 변수 정의 */
        :root {
            /* 레이아웃 변수 - 현대적 스타일 */
            --card-width: 100%;
            --card-max-width: 1200px;
            --card-padding: 4px;
            --card-margin: 0 auto 4px auto;
            --card-border-radius: 12px;
            --card-background: rgba(255, 255, 255, 0.98);
            --card-backdrop-filter: blur(8px);
            --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
            
            /* 색상 변수 */
            --positive-color: #059669;
            --negative-color: #dc2626;
            --neutral-color: #f59e0b;
            --success-color: #10b981;
            --primary-color: #1e40af;
            --bg-secondary: #f8fafc;
            --border-color: rgba(0, 0, 0, 0.08);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.06);
            
            /* 폰트 변수 - 가독성 개선 */
            --font-xs: 0.8rem;
            --font-sm: 0.9rem;
            --font-base: 1rem;
            --font-lg: 1.125rem;
            --font-xl: 1.25rem;
            --font-2xl: 1.5rem;
            --font-3xl: 1.875rem;
            --font-4xl: 2.25rem;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
            
            /* 위험/긍정 색상 변수 추가 */
            --danger-color: #dc2626;
            --warning-color: #f59e0b;
        }

        /* CSS 리셋 및 기본 스타일 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        h3 {
            font-size: 1rem;
            font-weight: 400;
        }

        html {
            width: 100%;
            height: 100%;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            background: #f5f7fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        /* 승률별 색상 클래스 - 원래 녹색 테마 */
        .rate-excellent { background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 100%) !important; color: #2e7d32; font-weight: 600; }
        .rate-very-good { background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%) !important; color: #4caf50; font-weight: 600; }  
        .rate-good { background: linear-gradient(135deg, #f9fbe7 0%, #e6ee9c 100%) !important; color: #689f38; font-weight: 500; }
        .rate-decent { background: linear-gradient(135deg, #fefefe 0%, #f5f5f5 100%) !important; color: #666; font-weight: 500; }
        .rate-average { background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%) !important; color: #e65100; font-weight: 500; }
        .rate-below { background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%) !important; color: #f57c00; font-weight: 500; }
        .rate-poor { background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%) !important; color: #d32f2f; font-weight: 600; }
        .rate-very-poor { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%) !important; color: #c2185b; font-weight: 600; }
        
        /* 시나리오 매트릭스 테이블 스타일 */
        .scenario-row:hover {
            background: rgba(76, 175, 80, 0.05) !important;
        }
        
        .win-rate-cell {
            transition: all 0.2s ease;
            border: 1px solid #dee2e6 !important;
        }
        
        .win-rate-cell:hover {
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
            z-index: 10;
            position: relative;
        }
        
        /* 매트릭스 헤더 스타일 */
        .matrix-header th {
            position: sticky;
            top: 0;
            z-index: 100;
            background: inherit !important;
        }
        
        /* 시나리오 매트릭스 스크롤바 스타일 */
        .scenario-matrix-container::-webkit-scrollbar {
            height: 8px;
            width: 8px;
        }
        
        .scenario-matrix-container::-webkit-scrollbar-track {
            background: #f5f5f5;
            border-radius: 4px;
        }
        
        .scenario-matrix-container::-webkit-scrollbar-thumb {
            background: #4caf50;
            border-radius: 4px;
        }
        
        .scenario-matrix-container::-webkit-scrollbar-thumb:hover {
            background: #388e3c;
        }
        
        /* 기본 레이아웃 */
        body {
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        .container {
            width: var(--card-width);
            max-width: var(--card-max-width);
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        
        /* 모바일에서 경우의 수 표 최적화 */
        @media (max-width: 768px) {
            body {
                max-width: 100vw !important;
            }
            
            .container {
                padding: 0 10px !important;
            }
            
            .scenario-section {
                max-width: 100% !important;
            }
            
            /* PC와 동일한 테이블 뷰 유지 - 모바일에서도 스크롤 가능 */
            #scenario-content {
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch !important;
                margin: 15px -10px !important; /* 좌우 마진 확장하여 스크롤 영역 확보 */
                padding: 0 10px !important;
                position: relative !important;
            }
            
            .scenario-matrix-container {
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch !important;
                margin: 0 -10px !important;
                padding: 0 10px !important;
                position: relative !important;
                border-radius: 12px !important;
                border: 1px solid #e0e0e0 !important;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
                max-height: 80vh !important;
                background: white !important;
            }
            
            /* 경우의수 테이블을 PC와 동일한 스타일로 */
            .scenario-matrix-table {
                min-width: 100% !important;
                font-size: 0.75rem !important;
                border-collapse: collapse !important;
                width: 100% !important;
                background: white !important;
            }
            
            .scenario-matrix-table th,
            .scenario-matrix-table td {
                padding: 2px 1px !important;
                font-size: 0.7rem !important;
                border: 1px solid #dee2e6 !important;
                white-space: nowrap !important;
                text-align: center !important;
                color: #333 !important;
                line-height: 1.2 !important;
            }
            
            .scenario-matrix-table th {
                background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%) !important;
                color: white !important;
                font-weight: 600 !important;
                text-transform: none !important;
                letter-spacing: normal !important;
                border: 1px solid rgba(255, 255, 255, 0.2) !important;
                font-size: 0.7rem !important;
            }
            
            /* 모든 헤더 셀 기본 스타일 */
            .scenario-matrix-table thead th {
                padding: 2px 1px !important;
                font-size: 0.7rem !important;
                text-align: center !important;
                line-height: 1.2 !important;
                border: 1px solid rgba(255, 255, 255, 0.2) !important;
            }
            
            /* LG 헤더 색상 강제 적용 (2번째, 3번째 컬럼) */
            .scenario-matrix-table thead tr th:nth-child(2),
            .scenario-matrix-table thead tr th:nth-child(3) {
                background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%) !important;
                color: white !important;
            }
            
            /* 팀별 헤더 배경색 강제 적용 */
            .scenario-matrix-table thead tr th[colspan="2"] {
                background: linear-gradient(135deg, rgba(233, 236, 239, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%) !important;
            }
            
            .scenario-matrix-table th:last-child {
                border-right: none !important;
            }
            
            .scenario-matrix-table td {
                border-bottom: 1px solid #e2e8f0 !important;
            }
            
            /* 첫 번째 컬럼이 아닌 데이터 셀들의 기본 색상 */
            .scenario-matrix-table tbody tr td:not(:nth-child(1)) {
                color: #333 !important;
            }
            
            /* 모든 팀 컬럼에 일관된 스타일 적용 (LG 포함) - 명시적으로 비스티키 */
            .scenario-matrix-table tbody tr td:nth-child(2),
            .scenario-matrix-table tbody tr td:nth-child(3),
            .scenario-matrix-table tbody tr td:nth-child(4),
            .scenario-matrix-table tbody tr td:nth-child(5),
            .scenario-matrix-table tbody tr td:nth-child(6),
            .scenario-matrix-table tbody tr td:nth-child(7),
            .scenario-matrix-table tbody tr td:nth-child(8),
            .scenario-matrix-table tbody tr td:nth-child(9),
            .scenario-matrix-table tbody tr td:nth-child(10),
            .scenario-matrix-table tbody tr td:nth-child(11) {
                padding: 2px 1px !important;
                font-size: 0.7rem !important;
                border: 1px solid #dee2e6 !important;
                line-height: 1.2 !important;
                color: inherit !important; /* 승률별 색상 클래스 유지 */
                position: static !important; /* 명시적으로 비스티키 */
                left: auto !important;
                z-index: auto !important;
                box-shadow: none !important;
            }
            
            .scenario-matrix-table tr:hover {
                background: rgba(76, 175, 80, 0.05) !important;
            }
            
            /* 데이터 셀 색상 표시를 위해 배경 제거 */
            .scenario-matrix-table tbody tr:nth-child(even),
            .scenario-matrix-table tbody tr:nth-child(odd) {
                background-color: transparent !important;
            }
            
            .scenario-matrix-table tbody tr:nth-child(even) td,
            .scenario-matrix-table tbody tr:nth-child(odd) td {
                background-color: transparent !important;
            }
            
            /* 데이터 셀이 원래 색상을 유지하도록 */
            .win-rate-cell {
                padding: 2px 1px !important;
                font-size: 0.7rem !important;
                min-width: auto !important;
                background-color: inherit !important;
                color: inherit !important; /* 승률별 색상 클래스의 텍스트 색상 유지 */
                line-height: 1.2 !important;
                transition: all 0.2s ease !important;
                border: 1px solid #dee2e6 !important;
            }
            
            /* 좌측 첫 번째 컬럼만 스티키 스타일 유지 - 데이터 행만 */
            .scenario-matrix-table tbody tr td:nth-child(1) {
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
                color: #2E7D32 !important;
                position: sticky !important;
                left: 0 !important;
                z-index: 20 !important;
                box-shadow: 2px 0 6px rgba(0,0,0,0.15) !important;
                font-weight: 700 !important;
                min-width: 70px !important;
                width: 70px !important;
                border-right: 2px solid rgba(46, 125, 50, 0.2) !important;
                font-size: 0.8rem !important;
            }
            
            /* LG 컬럼들과 다른 팀 컬럼들은 명시적으로 비스티키 */
            .scenario-matrix-table tbody tr td:nth-child(n+2) {
                position: static !important;
                left: auto !important;
                z-index: auto !important;
                box-shadow: none !important;
            }
            
            /* 모바일에서 스크롤 힌트 */
            .scenario-section::after {
                content: "← 좌우로 스크롤하여 더 많은 데이터를 확인하세요 →";
                display: block;
                text-align: center;
                font-size: 11px;
                color: #666;
                margin-top: 10px;
                font-style: italic;
            }
        }
        
        /* 🎲 우승 & 포스트시즌 경우의 수 섹션 통합 스타일 */
        .scenario-section {
            position: relative;
        }
        
        .scenario-bg-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #4CAF50, #66BB6A);
            opacity: 0.8;
        }
        
        .scenario-section h2 {
            color: #2E7D32;
            text-shadow: 0 1px 2px rgba(46, 125, 50, 0.1);
            margin-top: 15px;
        }
        
        #scenario-content {
            overflow-x: auto;
            margin: 20px 0;
            position: relative;
        }
        
        /* 테이블 스티키 헤더 수정 */
        .scenario-matrix-container {
            position: relative !important;
        }
        
        .scenario-legend {
            background: #f8f9fa;
            padding: 12px 15px;
            border-radius: 6px;
            margin-top: 15px;
            border-left: 3px solid #4CAF50;
            font-size: 13px;
        }
        
        .scenario-legend h3 {
            margin: 0 0 10px 0;
            color: #2E7D32;
            font-weight: 600;
            font-size: 14px;
        }
        
        .scenario-legend .grid-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        /* 1200px 최적화: 모바일에서는 1열로 */
        @media (max-width: 768px) {
            .scenario-legend .grid-layout,
            .championship-stats-grid {
                grid-template-columns: 1fr !important;
                gap: 10px !important;
            }
        }
        
        .scenario-button-area {
            margin-top: 15px;
            padding: 12px;
            background: #e8f5e9;
            border-radius: 6px;
            text-align: center;
            border: 1px solid #c8e6c9;
        }
        
        .scenario-button-area .button-description {
            color: #2E7D32;
            font-size: 13px;
            margin-bottom: 8px;
        }
        
        .scenario-full-view-button {
            padding: 10px 20px;
            background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
            white-space: nowrap;
        }
        /* === Magic/Tragic Matrix: uniform row height (high-specificity) === */
        #magicMatrixContent .magic-matrix-table { table-layout: fixed !important; width: 100%; }
        #magicMatrixContent .magic-matrix-table tbody tr { height: 28px !important; }
        #magicMatrixContent .magic-matrix-table tbody td {
          padding-top: 2px !important;
          padding-bottom: 2px !important;
          line-height: 24px !important; /* 28px row - 2px*2 padding = 24 */
          vertical-align: middle !important;
          white-space: nowrap !important;
          overflow: hidden !important;
          text-overflow: ellipsis !important;
        }

        /* === Scenario Table 클래스 기반 스타일 === */
        .scenario-table-compact { 
          table-layout: auto; 
          width: 100%; 
          border-collapse: collapse;
          border-spacing: 0;
        }
        .scenario-table-compact tbody tr { 
          height: auto;
          min-height: 14px;
        }
        .scenario-table-compact tbody td {
          padding: 1px 2px;
          line-height: 1;
          vertical-align: middle;
          white-space: nowrap;
          overflow: visible;
          text-overflow: clip;
          border-spacing: 0;
          min-width: auto;
        }
        
        /* 특정 열들의 최소 너비 보장 */
        .scenario-table-compact .team-column {
          min-width: 60px;
          width: auto;
        }
        .scenario-table-compact .record-column {
          min-width: 80px;
          width: auto;
        }
        .scenario-table-compact .percentage-column {
          min-width: 50px;
          width: auto;
        }
        
        /* 시나리오 테이블 헤더 스타일 */
        .scenario-table-compact thead {
          position: sticky;
          top: 0;
          z-index: 100;
        }
        
        .scenario-table-compact thead th {
          padding: 4px 6px;
          text-align: center;
          font-weight: 600;
          position: sticky;
          top: 0;
          z-index: 100;
        }
        
        /* 첫 번째 열 (고정 열) */
        .scenario-table-compact .sticky-left {
          position: sticky;
          left: 0;
          z-index: 110;
          min-width: 70px;
          width: 70px;
          background: inherit;
          border-right: 2px solid rgba(255,255,255,0.4);
          font-size: 0.7rem;
        }
        
        /* 헤더 행 스타일 */
        .scenario-table-compact .header-rank {
          background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
          color: white;
        }
        
        .scenario-table-compact .header-team {
          background: linear-gradient(135deg, rgba(233, 236, 239, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
          font-weight: 700;
          font-size: 0.8rem;
          white-space: nowrap;
          line-height: 1.2;
          padding: 6px 4px 3px 4px;
        }
        
        .scenario-table-compact .header-team.playoff-border {
          border-right: 4px solid #FF6B35;
        }
        
        .scenario-table-compact .header-team.team-border {
          border-right: 2px solid rgba(255,255,255,0.5);
        }
        
        /* 데이터 행 스타일 */
        .scenario-table-compact .scenario-row td {
          font-size: 0.8rem;
          padding: 0px 2px;
          font-weight: 700;
          background: white;
          border: 1px solid #dee2e6;
          text-align: center;
          line-height: 1;
        }
        
        /* 왼쪽 고정 셀 (승률) */
        .scenario-table-compact .rate-cell {
          color: #2E7D32;
          position: sticky;
          left: 0;
          z-index: 5;
          width: 60px;
          box-shadow: 2px 0 4px rgba(0,0,0,0.1);
        }
        
        /* 팀 승률 셀 - 기존 tbody td 설정을 오버라이드 */
        .scenario-table-compact .wins-cell,
        .scenario-table-compact .final-cell {
          padding: 0px 1px;
          line-height: 1;
          white-space: nowrap;
          vertical-align: top;
        }
        
        /* 셀 내부 텍스트 */
        .scenario-table-compact .cell-main {
          font-size: 0.8rem;
          font-weight: 600;
          margin: 0;
          line-height: 1;
        }
        
        .scenario-table-compact .cell-sub {
          font-size: 0.7rem;
          margin: 0;
          line-height: 1;
        }
        
        /* Team cell: center the whole block with Flex (replaces grid) */
        #magicMatrixContent td.matrix-team-info {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center !important;
          gap: 0;
          white-space: nowrap;
          overflow: hidden;
        }
        /* merged cells should not push row height */
        #magicMatrixContent .magic-cell { font-weight: 600; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
        /* header keep natural size */
        #magicMatrixContent .magic-matrix-table thead th { white-space: nowrap; }

        /* --- Magic/Tragic Matrix: banner cells & inline normalization --- */
        /* === Magic/Tragic Matrix: center-align team column via CSS (no inline emphasis) === */
        #magicMatrixContent .magic-matrix-table th,
        #magicMatrixContent .magic-matrix-table td { text-align: center; }

        /* Brand color handled via data attribute; fall back to default if missing */
        #magicMatrixContent .matrix-team-name { color: var(--team-color, #333); font-weight: 800; }
        /* Optional: apply data attribute color using inline CSS var if present elsewhere */
        /* If you later set style="--team-color: <hex>" on the TD, this will pick up automatically. */

        #magicMatrixContent td.matrix-team-info .matrix-team-name {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          font-weight: 700;
          font-size: 12px;
          line-height: 14px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }

        #magicMatrixContent td.matrix-team-info .matrix-team-status {
          display: block;
          font-size: 10px;
          line-height: 12px;
          color: #666;
          margin-top: 2px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }

        #magicMatrixContent td.matrix-team-info .team-logo-small {
          max-height: 20px !important;
          height: 20px !important;
          width: auto;
        }

        /* Ensure merged cells and data cells are centered */
        #magicMatrixContent .magic-cell { text-align: center; }
        #magicMatrixContent .rank-cell, #magicMatrixContent .matrix-header-main { text-align: center; }
        
        /* Prevent long team names from shifting layout */
        #magicMatrixContent .matrix-team-name-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        #magicMatrixContent .magic-matrix-table tbody td.banner-top,
        #magicMatrixContent .magic-matrix-table tbody td.banner-mid,
        #magicMatrixContent .magic-matrix-table tbody td.banner-low {
          padding: 2px 8px !important;
          line-height: 24px !important; /* row: 28px, vertical padding 2px * 2 */
          vertical-align: middle !important;
          white-space: nowrap !important;
          overflow: hidden !important;
          text-overflow: ellipsis !important;
          font-size: 15px !important;   /* ⬆ 더 크게 조정 */
          font-weight: 700 !important;  /* clearer banner text */
          letter-spacing: 0.2px !important;
        }

        @media (max-width: 768px) {
          #magicMatrixContent .magic-matrix-table tbody td.banner-top,
          #magicMatrixContent .magic-matrix-table tbody td.banner-mid,
          #magicMatrixContent .magic-matrix-table tbody td.banner-low {
            font-size: 14px !important; /* 모바일도 더 크게 */
            padding: 2px 6px !important;
          }
        }

        /* Ensure inline elements inside cells don't override line-height, except for matrix-team-info */
        #magicMatrixContent .magic-matrix-table tbody td:not(.matrix-team-info) * {
          line-height: inherit !important;
        }

        /* Prevent accidental multi-line in banner note */
        #magicMatrixContent .magic-matrix-table .banner-note {
          margin-left: 6px;
          opacity: 0.9;
          white-space: nowrap !important;
          display: inline-block;
        }

        /* Guard against oversized logos/images affecting row height */
        #magicMatrixContent .magic-matrix-table tbody td img,
        #magicMatrixContent .magic-matrix-table tbody td svg {
          max-height: 20px !important;
          height: 20px !important;
        }

        /* mobile tuning */
        @media (max-width: 768px) {
          #magicMatrixContent .magic-matrix-table tbody tr { height: 22px !important; }
          #magicMatrixContent .magic-matrix-table tbody td { line-height: 18px !important; }
          #magicMatrixContent .team-logo-small { max-height: 16px !important; height: 16px !important; }
          
          /* Scenario table mobile */
          .scenario-table-compact tbody tr { 
            height: auto; 
            min-height: 12px; 
          }
          .scenario-table-compact tbody td { 
            padding: 0px 1px;
            font-size: 0.75em;
            line-height: 0.9;
          }
          
          .scenario-table-compact .cell-main {
            font-size: 0.75rem;
          }
          
          .scenario-table-compact .cell-sub {
            font-size: 0.65rem;
          }
        }

        /* === Magic/Tragic specific cell styles (ensure tragic shows as light red) === */
        #magicMatrixContent .magic-cell.magic-danger,
        #magicMatrixContent .magic-cell.tragic {
          background: #ffd9dc !important; /* 연한 붉은색 */
          color: #b71c1c !important;
          border: 1px solid rgba(183, 28, 28, 0.25) !important;
          font-weight: 700 !important;
        }
        #magicMatrixContent .magic-cell.magic-impossible {
          background: #f1aeb5 !important; /* 진한 붉은색 계열 */
          color: #7f1d1d !important;
          border: 1px solid rgba(127, 29, 29, 0.5) !important;
          font-weight: 800 !important;
        }
        #magicMatrixContent .magic-cell.magic-safe {
          background: #d1fae5 !important; /* 매직(녹색) */
          color: #155724 !important;
          border: 1px solid rgba(21,87,36,0.2) !important;
        }
        #magicMatrixContent .magic-cell.confirmed,
        #magicMatrixContent .magic-cell.magic-confirmed {
          background: #a7f3d0 !important; /* 확보/확정 */
          color: #065f46 !important;
          border: 1px solid rgba(6,95,70,0.25) !important;
          font-weight: 800 !important;
        }
        #magicMatrixContent .magic-cell.magic-selflimit { /* 자력 불가(잔여경기 초과) 표시용 노랑 */
          background: #fff59d !important;
          color: #7c5e10 !important;
          border: 1px solid rgba(124,94,16,0.25) !important;
          font-weight: 700 !important;
        }
        /* Playoff divider (left border before rank 5) - 강화된 구분선 */
        #magicMatrixContent .magic-matrix-table .magic-cell.playoff-divider-left:not(.banner-top):not(.banner-mid):not(.banner-low) {
          border-left: 5px solid #ff5500 !important;
          box-shadow: inset 3px 0 8px rgba(255, 85, 0, 0.3) !important;
          position: relative !important;
        }
        
        /* 5위 열 헤더 강조 */
        #magicMatrixContent .magic-matrix-table thead th.playoff-rank-header {
          background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%) !important;
          border-left: 5px solid #ff5500 !important;
          position: relative !important;
          color: #fff !important;
          text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
        }
        
        /* 5위 열 배경색 제거 - 구분선만 유지 */
        
        /* 포스트시즌 진출선 표시 텍스트 - PS는 1~5위 */
        #magicMatrixContent .magic-matrix-table thead th.playoff-rank-header::after {
          content: 'PS ➡';
          position: absolute;
          right: -32px;
          top: 50%;
          transform: translateY(-50%);
          font-size: 11px;
          color: #ff5500;
          font-weight: 900;
          white-space: nowrap;
          text-shadow: 0 0 4px rgba(255, 85, 0, 0.4);
          z-index: 10;
        }
