:root{--primary: #2d7a5e;--primary-hover: #24634c;--primary-light: #e8f5ef;--bg-gradient: linear-gradient(135deg, #f0f7f3 0%, #e9edf5 100%);--surface: #ffffff;--surface-subtle: #f8faf9;--text-main: #1e2e28;--text-muted: #62756d;--text-light: #8fa098;--border: #dbe5e0;--border-subtle: #edf2ef;--danger: #d9483b;--danger-light: #fef1f0;--warning: #f59e0b;--success: #10b981;--radius-sm: 8px;--radius-md: 14px;--radius-lg: 20px;--radius-xl: 28px;--shadow-sm: 0 2px 8px rgba(35, 65, 52, .05);--shadow-md: 0 8px 24px rgba(35, 65, 52, .08);--shadow-lg: 0 16px 48px rgba(35, 65, 52, .12);--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif}*{box-sizing:border-box;margin:0;padding:0}body{min-height:100vh;background:var(--bg-gradient);color:var(--text-main);font-family:var(--font-family);-webkit-font-smoothing:antialiased;display:flex;flex-direction:column}#root{min-height:100vh;display:flex;flex-direction:column}button{font-family:inherit;cursor:pointer;border:none;transition:all .2s cubic-bezier(.16,1,.3,1)}button:disabled{opacity:.55;cursor:not-allowed}.app-container{display:flex;flex-direction:column;min-height:100vh}.admin-navbar{background:#ffffffe6;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);padding:14px 28px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}.brand-wrapper{display:flex;align-items:center;gap:12px}.brand-logo{font-size:20px;font-weight:900;color:var(--primary);text-decoration:none;display:flex;align-items:center;gap:8px}.brand-badge{background:#ede9fe;color:#6d28d9;font-size:11px;font-weight:800;letter-spacing:1.5px;padding:4px 8px;border-radius:var(--radius-sm)}.nav-actions{display:flex;align-items:center;gap:16px}.user-info{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-muted);background:var(--surface-subtle);padding:6px 12px;border-radius:var(--radius-sm);border:1px solid var(--border-subtle)}.user-email{font-weight:600;color:var(--text-main)}.btn-secondary{background:#f0f4f2;color:#3b5a4d;font-weight:600;font-size:13px;padding:8px 14px;border-radius:var(--radius-sm)}.btn-secondary:hover:not(:disabled){background:#e2ece6}.btn-primary{background:var(--primary);color:#fff;font-weight:600;font-size:13px;padding:8px 16px;border-radius:var(--radius-sm);display:inline-flex;align-items:center;gap:6px}.btn-primary:hover:not(:disabled){background:var(--primary-hover);transform:translateY(-1px)}.admin-main{flex:1;max-width:1400px;width:100%;margin:0 auto;padding:28px 24px 60px}.tab-bar{display:flex;gap:8px;margin-bottom:24px;border-bottom:1px solid var(--border);padding-bottom:8px}.tab-button{background:transparent;color:var(--text-muted);font-size:14px;font-weight:600;padding:10px 18px;border-radius:var(--radius-sm);display:flex;align-items:center;gap:8px}.tab-button:hover{background:#2d7a5e0f;color:var(--text-main)}.tab-button.active{background:var(--primary-light);color:var(--primary)}.panel-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:26px;box-shadow:var(--shadow-sm);margin-bottom:24px}.panel-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:22px;flex-wrap:wrap;gap:12px}.panel-title h2{font-size:20px;font-weight:800;color:var(--text-main);margin-bottom:4px}.panel-title p{font-size:13px;color:var(--text-muted)}.metrics-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-bottom:26px}.metric-card{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:18px 20px;transition:transform .2s ease,border-color .2s ease}.metric-card:hover{border-color:var(--border);transform:translateY(-2px)}.metric-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}.metric-title{font-size:12px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.metric-icon{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);background:#2d7a5e14;color:var(--primary)}.metric-value{font-size:32px;font-weight:800;color:var(--text-main);line-height:1.1;margin-bottom:6px}.metric-subtitle{font-size:12px;color:var(--text-light)}.chart-section{margin-top:28px;padding-top:24px;border-top:1px solid var(--border-subtle)}.chart-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}.chart-header h3{font-size:15px;font-weight:700}.chart-bars-container{display:flex;align-items:flex-end;gap:4px;height:180px;padding:10px 0 0;border-bottom:2px solid var(--border)}.chart-bar-wrap{flex:1;height:100%;display:flex;flex-direction:column;justify-content:flex-end;position:relative}.chart-bar{width:100%;background:linear-gradient(180deg,#5dbb91,#308061);border-radius:4px 4px 0 0;transition:all .2s ease;position:relative;min-height:3px}.chart-bar-wrap:hover .chart-bar{background:linear-gradient(180deg,#42a477,#1e6246);filter:brightness(1.1)}.chart-bar.peak{background:linear-gradient(180deg,#8b5cf6,#6d28d9)}.chart-tooltip{display:none;position:absolute;bottom:calc(100% + 8px);left:50%;transform:translate(-50%);background:#1e293b;color:#fff;padding:5px 9px;border-radius:6px;font-size:11px;font-weight:600;white-space:nowrap;pointer-events:none;z-index:20;box-shadow:0 4px 12px #00000026}.chart-bar-wrap:hover .chart-tooltip{display:block}.chart-x-labels{display:flex;justify-content:space-between;font-size:11px;color:var(--text-light);margin-top:10px}.status-footer{margin-top:20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}.status-badge{display:inline-flex;align-items:center;gap:8px;font-size:12px;color:var(--text-muted)}.status-dot{width:8px;height:8px;border-radius:50%;background:var(--success)}.criteria-details{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:14px 18px;margin-top:20px;font-size:13px;line-height:1.7;color:var(--text-muted)}.criteria-details summary{font-weight:700;color:var(--text-main);cursor:pointer;-webkit-user-select:none;user-select:none}.games-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}.game-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:22px;display:flex;flex-direction:column;justify-content:space-between;box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease}.game-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.game-card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:12px}.game-card-header h3{font-size:16px;font-weight:800;color:var(--text-main)}.game-tag{font-size:11px;font-weight:700;padding:4px 8px;border-radius:var(--radius-sm)}.game-tag.published{background:#dcfce7;color:#15803d}.game-tag.preview{background:#fef3c7;color:#b45309}.game-tag.prototype{background:#f3f4f6;color:#6b7280}.game-card p{font-size:13px;color:var(--text-muted);line-height:1.6;margin-bottom:18px}.game-card a{display:inline-flex;align-items:center;gap:6px;color:var(--primary);font-size:13px;font-weight:700;text-decoration:none}.game-card a:hover{text-decoration:underline}.login-wrapper{min-height:100vh;display:grid;place-items:center;padding:24px}.login-card{width:100%;max-width:440px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-xl);padding:40px;box-shadow:var(--shadow-lg)}.login-header{margin-bottom:30px;text-align:left}.login-header h1{font-size:26px;font-weight:900;margin-top:14px;margin-bottom:6px;color:var(--text-main)}.login-header p{font-size:14px;color:var(--text-muted)}.form-group{margin-bottom:20px}.form-group label{display:block;font-size:13px;font-weight:700;margin-bottom:8px;color:var(--text-main)}.form-input{width:100%;padding:13px 16px;font-size:14px;font-family:inherit;border:1px solid var(--border);border-radius:var(--radius-md);background:var(--surface-subtle);color:var(--text-main);outline:none;transition:border-color .2s ease,box-shadow .2s ease}.form-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px #2d7a5e26;background:#fff}.btn-submit{width:100%;padding:14px;font-size:15px;font-weight:800;color:#fff;background:var(--primary);border-radius:var(--radius-md);margin-top:10px}.btn-submit:hover:not(:disabled){background:var(--primary-hover);transform:translateY(-1px)}.login-notice{font-size:12px;color:var(--text-light);line-height:1.6;margin-top:24px;text-align:center}.error-alert{background:var(--danger-light);color:var(--danger);border:1px solid rgba(217,72,59,.2);padding:12px 14px;border-radius:var(--radius-sm);font-size:13px;margin-bottom:20px;display:flex;align-items:center;gap:8px}.site-filter-bar{display:flex;flex-wrap:wrap;gap:8px;background:var(--surface-subtle);padding:6px;border-radius:var(--radius-sm);border:1px solid var(--border-subtle);margin-bottom:20px;max-width:100%}.filter-pill{background:transparent;color:var(--text-muted);font-size:13px;font-weight:700;padding:6px 14px;border-radius:6px;white-space:nowrap;transition:all .15s ease}.filter-pill:hover{color:var(--text-main)}.filter-pill.active{background:var(--surface);color:var(--primary);box-shadow:0 2px 6px #0000000f}.analytics-row{display:grid;grid-template-columns:3fr 2fr;gap:20px;margin-top:24px;padding-top:24px;border-top:1px solid var(--border-subtle)}.analytics-card{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:20px}.analytics-card h3{font-size:15px;font-weight:800;color:var(--text-main);margin-bottom:6px}.analytics-card p.card-desc{font-size:12px;color:var(--text-muted);margin-bottom:16px}.channel-list{display:flex;flex-direction:column;gap:12px}.channel-item{display:flex;flex-direction:column;gap:4px}.channel-meta{display:flex;justify-content:space-between;font-size:13px;font-weight:600}.channel-bar-bg{width:100%;height:8px;background:#e2ece6;border-radius:4px;overflow:hidden}.channel-bar-fill{height:100%;background:linear-gradient(90deg,#5dbb91,#308061);border-radius:4px;transition:width .4s ease}.device-stats{display:flex;justify-content:space-between;margin-bottom:12px}.device-stat-item{display:flex;align-items:center;gap:8px}.device-dot{width:10px;height:10px;border-radius:50%}.device-split-bar{display:flex;width:100%;height:14px;border-radius:7px;overflow:hidden;background:#e2ece6;margin-bottom:14px}.device-split-mobile{background:#3b82f6;transition:width .4s ease}.device-split-desktop{background:#10b981;transition:width .4s ease}.control-toolbar{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:12px 18px;margin-bottom:20px}.toolbar-left{display:flex;align-items:center;gap:20px;flex-wrap:wrap}.toolbar-right{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.control-label{font-size:12px;font-weight:700;color:var(--text-muted)}.date-selector-group,.auto-refresh-group{display:flex;align-items:center;gap:8px}.date-chips{display:flex;gap:4px;flex-wrap:wrap}.date-chip{background:var(--surface);border:1px solid var(--border);color:var(--text-muted);font-size:12px;font-weight:600;padding:5px 10px;border-radius:6px;transition:all .15s ease}.date-chip:hover{border-color:var(--primary);color:var(--primary)}.date-chip.active{background:var(--primary);color:#fff;border-color:var(--primary)}.refresh-pills{display:flex;gap:2px;background:#e2ece6;border-radius:6px;padding:2px}.refresh-pill{background:transparent;border:none;font-size:11px;font-weight:700;color:var(--text-muted);padding:3px 8px;border-radius:4px;transition:all .15s ease}.refresh-pill.active{background:var(--surface);color:var(--primary);box-shadow:0 1px 3px #00000014}.refresh-countdown{font-size:11px;font-weight:800;color:var(--success);margin-left:2px}.btn-action-tool{background:var(--surface);border:1px solid var(--border);color:var(--text-main);font-size:12px;font-weight:700;padding:6px 12px;border-radius:var(--radius-sm);display:inline-flex;align-items:center;gap:6px;transition:all .15s ease}.btn-action-tool:hover{background:#f0fdf4;border-color:var(--primary);color:var(--primary)}.btn-action-tool.secondary{color:var(--text-muted)}.drilldown-banner{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46;border-radius:var(--radius-md);padding:12px 18px;margin-bottom:20px;display:flex;align-items:center;gap:12px;font-size:13px}.drilldown-icon{font-size:18px}.game-matrix-container{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:18px 20px;margin-top:24px;margin-bottom:24px}.game-matrix-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch;margin-top:10px;border-radius:var(--radius-sm)}.game-matrix-table{width:100%;min-width:1060px;border-collapse:collapse;font-size:13px}.game-matrix-table th{text-align:left;padding:12px 14px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.3px;color:var(--text-muted);border-bottom:2px solid var(--border);white-space:nowrap;-webkit-user-select:none;user-select:none}.game-matrix-table td{padding:14px;border-bottom:1px solid var(--border-subtle);vertical-align:middle;white-space:nowrap}.game-matrix-table .col-game{min-width:250px;white-space:nowrap}.game-matrix-table .col-status{width:86px;min-width:86px;text-align:center;white-space:nowrap}.game-matrix-table .col-pv{min-width:100px;text-align:right;white-space:nowrap}.game-matrix-table .col-share{width:120px;min-width:120px;white-space:nowrap}.game-matrix-table .col-uv{min-width:90px;text-align:right;white-space:nowrap}.game-matrix-table .col-recent{min-width:95px;text-align:center;white-space:nowrap}.game-matrix-table .col-duration{min-width:105px;text-align:right;white-space:nowrap}.game-matrix-table .col-device{min-width:95px;text-align:center;white-space:nowrap}.game-matrix-table .col-ref{min-width:110px;text-align:center;white-space:nowrap}.game-matrix-table .col-action{width:80px;min-width:80px;text-align:center;white-space:nowrap}.game-matrix-table tbody tr:hover{background:#2d7a5e0a}.game-matrix-table tbody tr.row-selected{background:#2d7a5e14}.game-row-title{display:inline-flex;align-items:center;gap:8px;white-space:nowrap}.game-title-main{font-weight:700;color:var(--text-main);white-space:nowrap;letter-spacing:-.2px}.game-row-id{font-size:11px;color:var(--text-light);font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;white-space:nowrap}.game-tag{display:inline-flex;align-items:center;justify-content:center;padding:4px 10px;border-radius:6px;font-size:11px;font-weight:800;white-space:nowrap;letter-spacing:-.2px;line-height:1.2}.game-tag.published{background:#10b98124;color:#059669;border:1px solid rgba(16,185,129,.35)}.game-tag.preview{background:#3b82f624;color:#2563eb;border:1px solid rgba(59,130,246,.35)}.game-tag.prototype{background:#f59e0b24;color:#d97706;border:1px solid rgba(245,158,11,.35)}.matrix-share-wrap{display:flex;align-items:center;gap:8px;white-space:nowrap}.matrix-share-bar{flex:1;height:6px;background:#e2ece6;border-radius:3px;overflow:hidden}.matrix-share-fill{height:100%;background:linear-gradient(90deg,#5dbb91,#2d7a5e);border-radius:3px}.matrix-share-text{font-size:11px;font-weight:700;color:var(--text-muted);width:36px;text-align:right;white-space:nowrap}.matrix-device-wrap{display:flex;align-items:center;justify-content:center;gap:6px;white-space:nowrap}.mini-device-bar{display:flex;width:48px;height:8px;border-radius:4px;overflow:hidden;background:#e2ece6}.mini-device-mob{background:#3b82f6}.mini-device-desk{background:#10b981}.mini-device-text{font-size:11px;color:var(--text-muted);width:28px;text-align:left;white-space:nowrap}.matrix-ref-tag{background:#f1f5f9;color:#475569;padding:3px 8px;border-radius:5px;font-size:11px;font-weight:600;display:inline-block;white-space:nowrap;letter-spacing:-.2px}.badge-live-user{background:#dcfce7;color:#15803d;font-weight:800;padding:2px 7px;border-radius:10px;font-size:11px;white-space:nowrap;display:inline-block}.btn-table-action{background:var(--surface);border:1px solid var(--border);color:var(--primary);font-size:11px;font-weight:700;padding:5px 12px;border-radius:6px;white-space:nowrap;transition:all .15s ease;display:inline-block}.btn-table-action:hover{background:var(--primary);color:#fff}.btn-table-action.active{background:var(--primary);color:#fff;border-color:var(--primary)}.comparison-card{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:18px 20px;margin-bottom:24px}.comparison-header{margin-bottom:14px}.comparison-header h3{font-size:15px;font-weight:800;color:var(--text-main)}.comparison-header p{font-size:12px;color:var(--text-muted);margin-top:2px}.comparison-stacked-bar{display:flex;height:18px;border-radius:9px;overflow:hidden;background:#e2ece6;margin-bottom:14px}.comparison-segment{height:100%;cursor:pointer;transition:filter .15s ease}.comparison-segment:hover{filter:brightness(1.15)}.comparison-legend-grid{display:flex;flex-wrap:wrap;gap:10px 18px}.comparison-legend-item{background:transparent;border:none;display:flex;align-items:center;gap:6px;font-size:12px;cursor:pointer;padding:3px 8px;border-radius:6px;transition:background .15s ease}.comparison-legend-item:hover{background:#0000000d}.comparison-legend-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}.comparison-legend-name{font-weight:700;color:var(--text-main)}.comparison-legend-stats{color:var(--text-muted)}.toast-notification{position:fixed;bottom:24px;right:24px;background:#1e293b;color:#fff;padding:12px 20px;border-radius:var(--radius-md);font-size:13px;font-weight:700;box-shadow:var(--shadow-lg);z-index:1000;display:flex;align-items:center;gap:8px;animation:toastFadeIn .25s ease-out}@keyframes toastFadeIn{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}@media(max-width:680px){.admin-navbar{padding:12px 16px}.nav-actions .user-info{display:none}.admin-main{padding:18px 14px 40px}.panel-card{padding:18px 16px}.metrics-grid{grid-template-columns:1fr;gap:12px}.metric-value{font-size:26px}.chart-bars-container{height:130px}.login-card{padding:28px 20px}.analytics-row{grid-template-columns:1fr}}.catalog-summary-bar{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:12px;margin-bottom:20px}.summary-stat-box{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:12px 16px;display:flex;flex-direction:column}.summary-stat-label{font-size:12px;font-weight:600;color:var(--text-muted)}.summary-stat-val{font-size:22px;font-weight:900;color:var(--text-main);margin-top:4px}.catalog-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;margin-bottom:22px;background:var(--surface-subtle);border:1px solid var(--border-subtle);padding:10px 14px;border-radius:var(--radius-md)}.filter-pills{display:flex;flex-wrap:wrap;gap:6px}.filter-pill{padding:6px 12px;border-radius:20px;font-size:13px;font-weight:700;background:var(--surface);border:1px solid var(--border);color:var(--text-muted);cursor:pointer;transition:all .15s ease}.filter-pill:hover{border-color:var(--primary);color:var(--primary)}.filter-pill.active{background:var(--primary);border-color:var(--primary);color:#fff}.catalog-search-box{position:relative;min-width:220px}.catalog-search-input{width:100%;padding:7px 12px 7px 32px;font-size:13px;border-radius:var(--radius-sm);border:1px solid var(--border);background:var(--surface);color:var(--text-main);outline:none;transition:border-color .15s ease}.catalog-search-input:focus{border-color:var(--primary);box-shadow:0 0 0 2px #2d7a5e26}.search-icon-svg{position:absolute;left:10px;top:50%;transform:translateY(-50%);color:var(--text-light);pointer-events:none}.game-card-rich{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px;display:flex;flex-direction:column;justify-content:space-between;transition:all .2s cubic-bezier(.16,1,.3,1);box-shadow:var(--shadow-sm)}.game-card-rich:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-2px)}.game-card-top{display:flex;align-items:flex-start;gap:14px;margin-bottom:14px}.game-thumb-box{width:54px;height:54px;border-radius:12px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden;border:1px solid var(--border-subtle)}.game-thumb-img{width:100%;height:100%;object-fit:cover}.game-card-header-info{flex:1}.game-card-title-row{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}.game-title-text{font-size:16px;font-weight:800;color:var(--text-main)}.game-status-badge{font-size:11px;font-weight:700;padding:3px 8px;border-radius:6px}.game-status-badge.published{background:#10b9811f;color:var(--success);border:1px solid rgba(16,185,129,.3)}.game-status-badge.preview{background:#3b82f61f;color:#3b82f6;border:1px solid rgba(59,130,246,.3)}.game-status-badge.prototype{background:#f59e0b1f;color:var(--warning);border:1px solid rgba(245,158,11,.3)}.game-meta-pills{display:flex;flex-wrap:wrap;gap:6px;margin-top:6px}.meta-pill{font-size:11px;font-weight:600;padding:2px 6px;border-radius:4px;background:var(--surface-subtle);color:var(--text-muted);border:1px solid var(--border-subtle)}.meta-pill.registered{color:var(--primary);background:var(--primary-light);border-color:#2d7a5e33}.game-card-desc{font-size:13px;line-height:1.5;color:var(--text-muted);margin-bottom:14px}.game-specs-snippet{background:var(--surface-subtle);border-radius:var(--radius-sm);padding:10px 12px;margin-bottom:14px;display:flex;flex-direction:column;gap:6px;font-size:12px;color:var(--text-muted)}.specs-snippet-row{display:flex;align-items:center;justify-content:space-between}.mode-launchers-container{margin-bottom:14px}.mode-launchers-label{font-size:11px;font-weight:700;text-transform:uppercase;color:var(--text-light);margin-bottom:6px}.mode-launcher-pills{display:flex;flex-wrap:wrap;gap:6px}.mode-launcher-link{font-size:11px;font-weight:600;padding:4px 8px;border-radius:6px;background:var(--surface);border:1px solid var(--border);color:var(--text-main);text-decoration:none;transition:all .15s ease;display:inline-flex;align-items:center;gap:4px}.mode-launcher-link:hover{background:var(--primary-light);border-color:var(--primary);color:var(--primary)}.game-card-actions{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-top:12px;border-top:1px solid var(--border-subtle);margin-top:auto}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0f172a99;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:1000;padding:20px;animation:modalFadeIn .2s ease-out}@keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}.modal-container{background:var(--surface);border-radius:var(--radius-xl);max-width:680px;width:100%;max-height:90vh;display:flex;flex-direction:column;box-shadow:0 24px 64px #00000040;border:1px solid var(--border);overflow:hidden;animation:modalSlideUp .25s cubic-bezier(.16,1,.3,1)}@keyframes modalSlideUp{0%{opacity:0;transform:translateY(20px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.modal-header{padding:18px 24px;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}.modal-close-btn{background:transparent;border:none;font-size:18px;color:var(--text-light);cursor:pointer;padding:4px 8px;border-radius:6px;transition:all .15s ease}.modal-close-btn:hover{background:var(--surface-subtle);color:var(--text-main)}.modal-subnav{display:flex;border-bottom:1px solid var(--border-subtle);padding:0 24px;background:var(--surface-subtle);gap:12px}.modal-subnav-btn{background:transparent;border:none;border-bottom:2px solid transparent;padding:12px 6px;font-size:13px;font-weight:700;color:var(--text-muted);cursor:pointer;transition:all .15s ease}.modal-subnav-btn.active{color:var(--primary);border-bottom-color:var(--primary)}.modal-body{padding:22px 24px;overflow-y:auto;flex:1}.modal-footer{padding:14px 24px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;background:var(--surface-subtle)}.spec-group{margin-bottom:16px}.spec-label{display:block;font-size:11px;font-weight:700;text-transform:uppercase;color:var(--text-light);margin-bottom:6px}.spec-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.spec-item{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);padding:10px 14px;display:flex;flex-direction:column}.spec-item-label{font-size:11px;font-weight:600;color:var(--text-muted);margin-bottom:4px}.spec-item-val{font-size:13px;font-weight:700;color:var(--text-main)}.badge-locale{display:inline-block;font-size:11px;font-weight:700;padding:2px 6px;border-radius:4px;background:var(--surface);border:1px solid var(--border);margin-right:4px}.capability-pill{font-size:12px;font-weight:600;padding:5px 10px;border-radius:6px;background:var(--surface);border:1px solid var(--border);color:var(--text-light)}.capability-pill.active{color:var(--primary);background:var(--primary-light);border-color:#2d7a5e4d}.mode-card{background:var(--surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:12px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px}.json-pre{background:#0f172a;color:#e2e8f0;padding:16px;border-radius:var(--radius-md);font-size:12px;line-height:1.5;overflow-x:auto;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}
