/* ────────────────────────────────────────────────────────── PolyWeather Map — Premium Dark Theme ────────────────────────────────────────────────────────── */ .root { /* ── Palette (bridged from globals.css unified tokens) ── */ --bg-primary: var(--color-bg-base); --bg-secondary: var(--color-bg-raised); --bg-card: var(--color-bg-card); --bg-glass: rgba(13, 19, 33, 0.75); --border-glass: var(--color-border-default); --border-subtle: var(--color-border-subtle); /* Text */ --text-primary: var(--color-text-primary); --text-secondary: var(--color-text-secondary); --text-muted: var(--color-text-muted); /* Accents — upgraded primary cyan to match new token */ --accent-cyan: var(--color-accent-primary); --accent-blue: var(--color-accent-secondary); --accent-green: #34d399; --accent-orange: #fb923c; --accent-red: #f87171; --accent-yellow: #fbbf24; --accent-purple: var(--color-accent-tertiary); /* Risk colors */ --risk-high: var(--color-risk-high); --risk-medium: var(--color-risk-medium); --risk-low: var(--color-risk-low); /* Spacing — aligned with global layout tokens */ --panel-width: 560px; --header-height: 52px; --sidebar-width: 260px; /* Effects — using global elevation tokens */ --glass-blur: 20px; --shadow-lg: var(--shadow-elevation-3); --shadow-glow-cyan: var(--shadow-glow-accent); --shadow-glow-blue: var(--shadow-glow-secondary); --transition: all var(--transition-base); } /* ── Reset & Base ── */ .root :global(*), .root :global(*::before), .root :global(*::after) { box-sizing: border-box; margin: 0; padding: 0; } .root { font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg-primary); color: var(--text-primary); overflow: hidden; height: 100vh; width: 100vw; } /* ── Map ── */ .root :global(.map) { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1; } .weatherAura { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.88; mix-blend-mode: screen; overflow: hidden; } .weatherAura :global(canvas) { width: 100%; height: 100%; display: block; opacity: 0.94; filter: saturate(1.05) blur(0.3px); } .weatherAuraScrim { position: absolute; inset: 0; background: linear-gradient( 180deg, rgba(5, 10, 24, 0.52) 0%, rgba(6, 10, 22, 0.12) 24%, rgba(5, 8, 19, 0.08) 54%, rgba(4, 6, 15, 0.34) 100% ), radial-gradient( circle at 50% 60%, rgba(92, 142, 255, 0.06) 0%, rgba(92, 142, 255, 0) 48% ); } .weatherAura[data-reduced-motion="true"] :global(canvas) { display: none; } .root :global(.map .leaflet-tile), .root :global(.map .leaflet-marker-icon), .root :global(.map .leaflet-marker-shadow), .root :global(.map .leaflet-container img), .root :global(.map .leaflet-container svg) { max-width: none !important; max-height: none !important; } .root :global(.map .leaflet-tile) { width: 256px !important; height: 256px !important; } /* Remove Leaflet default styling for cleaner look */ .root :global(.leaflet-control-attribution) { background: var(--bg-glass) !important; color: var(--text-muted) !important; backdrop-filter: blur(8px); border: 1px solid var(--border-subtle) !important; font-size: 10px !important; border-radius: 6px !important; padding: 2px 8px !important; } .root :global(.leaflet-control-attribution a) { color: var(--text-secondary) !important; } .root :global(.leaflet-control-zoom) { border: none !important; box-shadow: var(--shadow-lg) !important; } .root :global(.leaflet-control-zoom a) { background: var(--bg-glass) !important; color: var(--text-primary) !important; backdrop-filter: blur(12px) !important; border: 1px solid var(--border-glass) !important; width: 36px !important; height: 36px !important; line-height: 36px !important; font-size: 16px !important; border-radius: 8px !important; transition: var(--transition); } .root :global(.leaflet-control-zoom a:hover) { background: rgba(99, 102, 241, 0.2) !important; border-color: var(--accent-blue) !important; } /* ── Header ── */ .root :global(.header) { position: fixed; top: 0; left: 0; right: 0; height: var(--header-height); z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: linear-gradient( 180deg, rgba(8, 12, 20, 0.96) 0%, rgba(8, 12, 20, 0.82) 100% ); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-glass); } .root :global(.brand) { display: flex; align-items: baseline; gap: 10px; } .root :global(.brand h1) { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .root :global(.subtitle) { font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.6px; text-transform: uppercase; opacity: 0.8; } .root :global(.header-right) { display: flex; align-items: center; gap: 8px; } .root :global(.lang-switch) { display: inline-flex; align-items: center; gap: 4px; padding: 3px; border-radius: 10px; border: 1px solid var(--border-glass); background: var(--bg-glass); } .root :global(.lang-btn) { border: none; background: transparent; color: var(--text-muted); font-size: 11px; font-weight: 600; line-height: 1; padding: 6px 8px; border-radius: 7px; cursor: pointer; transition: var(--transition); } .root :global(.lang-btn:hover) { color: var(--text-primary); background: rgba(99, 102, 241, 0.12); } .root :global(.lang-btn.active) { color: var(--text-primary); background: rgba(0, 229, 255, 0.12); box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.2); } .root :global(.live-badge) { display: flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 9999px; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.22); font-size: 10px; font-weight: 700; color: var(--accent-green); letter-spacing: 1.2px; text-transform: uppercase; } .root :global(.pulse-dot) { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green); animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); } 50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } } .root :global(.refresh-btn) { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-glass); background: rgba(13, 19, 33, 0.6); color: var(--text-secondary); cursor: pointer; transition: all 150ms ease; display: flex; align-items: center; justify-content: center; } .root :global(.refresh-btn:hover) { background: rgba(0, 229, 255, 0.1); border-color: rgba(0, 229, 255, 0.3); color: var(--accent-cyan); } .root :global(.refresh-btn.spinning) { animation: spin 1s linear infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* ── City List Sidebar ── */ .root :global(.city-list) { position: fixed; top: calc(var(--header-height) + 12px); left: 12px; width: var(--sidebar-width); max-height: calc(100vh - var(--header-height) - 24px); z-index: 900; background: var(--bg-glass); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--border-glass); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); } .root :global(.city-list-header) { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; } .root :global(.city-count) { background: rgba(99, 102, 241, 0.2); color: var(--accent-blue); font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; padding: 2px 8px; border-radius: 9999px; border: 1px solid rgba(99, 102, 241, 0.15); } .root :global(.city-list-items) { overflow-y: auto; flex: 1; padding: 6px 6px 8px; } .root :global(.city-list-items::-webkit-scrollbar) { width: 4px; } .root :global(.city-list-items::-webkit-scrollbar-track) { background: transparent; } .root :global(.city-list-items::-webkit-scrollbar-thumb) { background: var(--border-glass); border-radius: 2px; } .root :global(.city-group) { border: 1px solid rgba(99, 102, 241, 0.12); border-radius: 10px; background: rgba(15, 23, 42, 0.35); margin-bottom: 8px; overflow: hidden; } .root :global(.city-group:last-child) { margin-bottom: 0; } .root :global(.city-group-header) { width: 100%; border: none; background: rgba(99, 102, 241, 0.06); color: var(--text-secondary); display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; cursor: pointer; font-family: inherit; transition: background 150ms ease; } .root :global(.city-group-header:hover) { background: rgba(99, 102, 241, 0.1); } .root :global(.city-group-title) { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; } .root :global(.city-group-indicator) { width: 3px; height: 14px; border-radius: 2px; flex-shrink: 0; } .root :global(.city-group-indicator.high) { background: var(--risk-high); box-shadow: 0 0 6px rgba(239, 68, 68, 0.3); } .root :global(.city-group-indicator.medium) { background: var(--risk-medium); box-shadow: 0 0 6px rgba(245, 158, 11, 0.3); } .root :global(.city-group-indicator.low) { background: var(--risk-low); box-shadow: 0 0 6px rgba(34, 197, 94, 0.3); } .root :global(.city-group-indicator.other) { background: var(--text-muted); opacity: 0.5; } .root :global(.city-group-meta) { display: inline-flex; align-items: center; gap: 8px; } .root :global(.city-group-count) { min-width: 18px; height: 18px; border-radius: 9px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; background: rgba(99, 102, 241, 0.26); color: var(--text-primary); font-size: 10px; font-weight: 700; } .root :global(.city-group-arrow) { font-size: 11px; color: var(--text-muted); transform: rotate(-90deg); transition: transform 0.2s ease; } .root :global(.city-group-arrow.expanded) { transform: rotate(0deg); } .root :global(.city-group-items) { padding: 4px; } .root :global(.city-group.collapsed .city-group-items) { display: none; } .root :global(.city-item) { width: 100%; display: flex; flex-direction: column; gap: 4px; padding: 8px 10px; border-radius: 10px; cursor: pointer; transition: var(--transition); border: 1px solid transparent; background: transparent; color: inherit; font-family: inherit; text-align: left; } .root :global(.city-item:hover) { background: rgba(99, 102, 241, 0.08); border-color: var(--border-glass); } .root :global(.city-item.active) { background: rgba(0, 229, 255, 0.08); border-color: rgba(0, 229, 255, 0.3); box-shadow: 0 0 16px rgba(0, 229, 255, 0.06), inset 0 0 0 1px rgba(0, 229, 255, 0.08); } .root :global(.city-item-main) { display: flex; align-items: center; gap: 8px; width: 100%; } .root :global(.city-item .city-name-text) { font-size: 13px; font-weight: 600; color: var(--text-primary); } .root :global(.city-item-info) { display: flex; justify-content: space-between; align-items: center; padding-left: 20px; /* Align with name text, after the dot */ font-size: 10px; color: var(--text-muted); } .root :global(.city-item .city-max-info) { color: var(--accent-blue); font-weight: 500; } .root :global(.city-item .city-deviation-info) { font-weight: 600; } .root :global(.city-item .city-deviation-cold) { color: #38bdf8; } .root :global(.city-item .city-deviation-hot) { color: #f59e0b; } .root :global(.city-item .city-deviation-normal) { color: #22d3ee; } .root :global(.city-item .city-deviation-info.strong) { text-shadow: 0 0 10px rgba(56, 189, 248, 0.18); } .root :global(.city-item .city-deviation-hot.strong) { text-shadow: 0 0 10px rgba(245, 158, 11, 0.24); } .root :global(.city-item .risk-dot) { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; } .root :global(.city-item .risk-dot.high) { background: var(--risk-high); box-shadow: 0 0 6px var(--risk-high); } .root :global(.city-item .risk-dot.medium) { background: var(--risk-medium); box-shadow: 0 0 6px var(--risk-medium); } .root :global(.city-item .risk-dot.low) { background: var(--risk-low); box-shadow: 0 0 6px var(--risk-low); } .root :global(.city-clock-icon) { display: inline-block; vertical-align: -1px; margin-right: 3px; opacity: 0.6; } .root :global(.city-item .city-temp) { margin-left: auto; font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--accent-cyan); opacity: 0; transition: opacity 200ms ease; } .root :global(.city-item .city-temp.loaded) { opacity: 1; } /* ── Detail Panel ── */ .root :global(.detail-panel) { position: fixed; top: 0; right: 0; width: var(--panel-width); height: 100vh; z-index: 950; background: linear-gradient( 180deg, rgba(10, 14, 26, 0.92) 0%, rgba(15, 23, 42, 0.95) 100% ); backdrop-filter: blur(24px); border-left: 1px solid var(--border-glass); box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; overflow: hidden; } .root :global(.detail-panel.visible) { transform: translateX(0); } .root :global(.panel-header) { padding: 20px 20px 16px; border-bottom: 1px solid var(--border-subtle); position: relative; flex-shrink: 0; } .root :global(.panel-close) { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-glass); background: transparent; color: var(--text-muted); font-size: 14px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; } .root :global(.panel-close:hover) { background: rgba(248, 113, 113, 0.15); border-color: var(--accent-red); color: var(--accent-red); } .root :global(.panel-title-area h2) { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; } .root :global(.panel-loading-hint) { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(34, 211, 238, 0.18); background: rgba(12, 24, 42, 0.78); color: var(--accent-cyan); font-size: 11px; font-weight: 600; letter-spacing: 0.2px; } .root :global(.panel-loading-spinner) { width: 10px; height: 10px; border-radius: 999px; border: 2px solid rgba(34, 211, 238, 0.22); border-top-color: rgba(34, 211, 238, 0.92); animation: loading-spin 0.8s linear infinite; } .root :global(.panel-meta) { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .root :global(.city-loading-toast) { position: fixed; top: 78px; left: 50%; transform: translateX(-50%); z-index: 1200; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(34, 211, 238, 0.18); background: linear-gradient( 180deg, rgba(10, 18, 34, 0.94), rgba(10, 18, 34, 0.82) ); box-shadow: 0 18px 40px rgba(2, 6, 23, 0.38), 0 0 0 1px rgba(34, 211, 238, 0.04) inset; backdrop-filter: blur(18px); pointer-events: none; } .root :global(.city-loading-dot) { width: 10px; height: 10px; border-radius: 999px; background: var(--accent-cyan); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5); animation: city-loading-pulse 1.35s ease-out infinite; } .root :global(.city-loading-copy) { color: var(--text-primary); font-size: 12px; font-weight: 600; letter-spacing: 0.25px; } .root :global(.pro-locked) { filter: grayscale(0.8) opacity(0.7); position: relative; } .root :global(.pro-locked::after) { content: "PRO"; position: absolute; top: -4px; right: -4px; background: var(--accent-blue); color: white; font-size: 7px; padding: 1px 3px; border-radius: 3px; font-weight: 900; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); } .root :global(.risk-badge) { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px; letter-spacing: 0.5px; } .root :global(.risk-badge.high) { background: rgba(239, 68, 68, 0.15); color: var(--risk-high); border: 1px solid rgba(239, 68, 68, 0.3); } .root :global(.risk-badge.medium) { background: rgba(245, 158, 11, 0.15); color: var(--risk-medium); border: 1px solid rgba(245, 158, 11, 0.3); } .root :global(.risk-badge.low) { background: rgba(34, 197, 94, 0.15); color: var(--risk-low); border: 1px solid rgba(34, 197, 94, 0.3); } .root :global(.local-time) { font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; } .root :global(.panel-body) { overflow-y: auto; flex: 1; padding: 0 20px 24px; } .root :global(.panel-body::-webkit-scrollbar) { width: 4px; } .root :global(.panel-body::-webkit-scrollbar-thumb) { background: var(--border-glass); border-radius: 2px; } .root :global(.panel-body section) { padding: 18px 0; border-bottom: 1px solid var(--border-subtle); } .root :global(.panel-body section:last-child) { border-bottom: none; } .root :global(.panel-body section.detail-scenery-card) { padding: 0; margin: 18px 0; } .root :global(.panel-body h3) { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; letter-spacing: 0.3px; } /* ── Hero Section ── */ .root :global(.hero-section) { text-align: center; padding-top: 12px !important; } .root :global(.hero-weather) { font-size: 13px; font-weight: 600; color: var(--accent-cyan); margin-bottom: -4px; display: flex; align-items: center; justify-content: center; gap: 6px; } .root :global(.hero-temp) { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-bottom: 2px; } .root :global(.hero-max-time) { font-size: 10px; font-weight: 500; color: var(--text-muted); margin-bottom: 16px; min-height: 12px; } .root :global(.hero-value) { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(135deg, #fff 30%, var(--accent-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .root :global(.hero-unit) { font-size: 20px; font-weight: 400; color: var(--text-muted); margin-top: 8px; } .root :global(.hero-details) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; } .root :global(.hero-item) { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px 8px; text-align: center; } .root :global(.hero-item .label) { display: block; font-size: 10px; color: var(--text-muted); margin-bottom: 4px; } .root :global(.hero-item .value) { display: block; font-size: 16px; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; } .root :global(.hero-item .value.highlight) { color: var(--accent-cyan); text-shadow: 0 0 12px rgba(34, 211, 238, 0.3); } .root :global(.hero-sub) { font-size: 12px; color: var(--text-muted); display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; } .root :global(.hero-sub span) { white-space: nowrap; } /* ── Chart Section ── */ .root :global(.chart-wrapper) { height: 180px; position: relative; background: rgba(255, 255, 255, 0.02); border-radius: 12px; border: 1px solid var(--border-subtle); padding: 12px; } .root :global(.chart-legend) { display: flex; justify-content: center; gap: 16px; margin-top: 8px; font-size: 11px; color: var(--text-muted); } /* ── Probability Bars ── */ .root :global(.prob-bars) { display: flex; flex-direction: column; gap: 8px; } .root :global(.prob-row) { display: flex; align-items: center; gap: 10px; } .root :global(.prob-label) { width: 80px; font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; flex-shrink: 0; } .root :global(.prob-bar-track) { flex: 1; height: 28px; background: rgba(255, 255, 255, 0.04); border-radius: 8px; overflow: hidden; position: relative; } .root :global(.prob-bar-fill) { height: 100%; border-radius: 8px; transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1); display: flex; align-items: center; padding-left: 10px; font-size: 12px; font-weight: 600; color: white; min-width: 40px; } .root :global(.prob-bar-fill.rank-0) { background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan)); box-shadow: 0 0 12px rgba(99, 102, 241, 0.3); } .root :global(.prob-bar-fill.rank-1) { background: linear-gradient( 90deg, rgba(99, 102, 241, 0.6), rgba(34, 211, 238, 0.5) ); } .root :global(.prob-bar-fill.rank-2) { background: rgba(99, 102, 241, 0.3); } .root :global(.prob-bar-fill.rank-3) { background: rgba(99, 102, 241, 0.15); } .root :global(.prob-market-inline) { min-width: 120px; text-align: right; font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 10px; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; } .root :global(.prob-market-inline.yes) { color: #4ade80; background: rgba(74, 222, 128, 0.12); border: 1px solid rgba(74, 222, 128, 0.3); } .root :global(.prob-market-inline.no) { color: #fb7185; background: rgba(251, 113, 133, 0.12); border: 1px solid rgba(251, 113, 133, 0.26); } .root :global(.prob-model-vote) { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; padding: 10px; border: 1px solid rgba(148, 163, 184, 0.14); border-radius: 8px; background: rgba(15, 23, 42, 0.34); } .root :global(.prob-model-vote-head) { display: flex; align-items: center; justify-content: space-between; gap: 10px; } .root :global(.prob-model-vote-head span) { color: var(--text-primary); font-size: 12px; font-weight: 800; } .root :global(.prob-model-vote-head em) { color: var(--text-muted); font-size: 11px; font-style: normal; } .root :global(.prob-model-vote-grid) { display: grid; gap: 6px; } .root :global(.prob-model-vote-row) { display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: center; gap: 8px; } .root :global(.prob-model-vote-row > span) { color: var(--text-primary); font-size: 12px; font-weight: 800; text-align: right; } .root :global(.prob-model-vote-track) { position: relative; height: 18px; overflow: hidden; border-radius: 6px; background: rgba(148, 163, 184, 0.1); } .root :global(.prob-model-vote-fill) { height: 100%; border-radius: 6px; background: linear-gradient(90deg, rgba(20, 184, 166, 0.62), rgba(34, 211, 238, 0.88)); } .root :global(.prob-model-vote-track strong) { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); color: var(--text-primary); font-size: 11px; line-height: 1; text-shadow: 0 1px 2px rgba(2, 6, 23, 0.85); } .root :global(.prob-model-vote p) { margin: 0; color: var(--text-muted); font-size: 11px; line-height: 1.45; } /* ── Model Bars ── */ .root :global(.model-bars) { display: flex; flex-direction: column; gap: 8px; } .root :global(.model-row) { display: flex; align-items: center; gap: 10px; font-size: 12px; } .root :global(.model-name) { width: 80px; text-align: right; color: var(--text-muted); font-weight: 500; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .root :global(.model-row-rich) { align-items: flex-start; } .root :global(.model-row-rich .model-name) { width: 118px; white-space: normal; line-height: 1.25; } .root :global(.model-row-rich .model-name strong) { display: block; color: var(--text-primary); font-size: 12px; } .root :global(.model-row-rich .model-name span) { display: block; margin-top: 2px; color: var(--text-muted); font-size: 10px; font-weight: 500; } .root :global(.model-stack-summary) { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 2px; } .root :global(.model-stack-summary span) { border: 1px solid rgba(148, 163, 184, 0.16); border-radius: 6px; background: rgba(15, 23, 42, 0.5); color: var(--text-secondary); font-size: 11px; padding: 5px 8px; } .root :global(.model-stack-summary strong) { color: var(--text-primary); font-weight: 800; } .root :global(.model-group) { display: flex; flex-direction: column; gap: 6px; padding: 8px; border-left: 2px solid rgba(148, 163, 184, 0.26); background: rgba(15, 23, 42, 0.28); border-radius: 6px; } .root :global(.model-group-cyan) { border-left-color: rgba(34, 211, 238, 0.75); } .root :global(.model-group-blue) { border-left-color: rgba(96, 165, 250, 0.75); } .root :global(.model-group-amber) { border-left-color: rgba(245, 158, 11, 0.8); } .root :global(.model-group-heading) { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--accent-cyan); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; } .root :global(.model-group-heading em) { color: var(--text-muted); font-style: normal; letter-spacing: 0; } .root :global(.model-bar-track) { flex: 1; height: 20px; background: rgba(255, 255, 255, 0.03); border-radius: 6px; position: relative; overflow: hidden; } .root :global(.model-bar-fill) { height: 100%; border-radius: 6px; background: linear-gradient(90deg, rgba(14, 165, 233, 0.72), rgba(34, 211, 238, 0.92)); transition: width 0.6s ease-out; } .root :global(.model-bar-fill.deb) { background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green)); box-shadow: 0 0 8px rgba(34, 211, 238, 0.3); } .root :global(.model-bar-value) { position: absolute; top: 50%; right: 8px; z-index: 3; transform: translateY(-50%); color: var(--text-primary); font-size: 11px; font-weight: 800; line-height: 1; max-width: calc(100% - 12px); overflow: visible; pointer-events: none; text-align: right; text-shadow: 0 1px 2px rgba(2, 6, 23, 0.9); white-space: nowrap; } .root :global(.model-bar-value.deb) { color: #ecfeff; } .root :global(.model-deb-line) { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--accent-cyan); box-shadow: 0 0 6px var(--accent-cyan); z-index: 2; } /* ── Forecast Table ── */ .root :global(.forecast-table) { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; } .root :global(.forecast-inline-note) { line-height: 1.45; } .root :global(.forecast-day) { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px; text-align: center; transition: var(--transition); } .root :global(.forecast-day:hover) { border-color: var(--border-glass); background: rgba(255, 255, 255, 0.05); } .root :global(.forecast-day .f-date) { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; } .root :global(.forecast-day .f-temp) { font-size: 18px; font-weight: 700; color: var(--text-primary); } .root :global(.forecast-day.today) { border-color: var(--accent-blue); background: rgba(99, 102, 241, 0.08); } .root :global(.forecast-day.today .f-date) { color: var(--accent-cyan); } .root :global(.forecast-day.selected) { border-color: var(--accent-cyan); background: rgba(34, 211, 238, 0.1); box-shadow: 0 0 12px rgba(34, 211, 238, 0.2); } .root :global(.forecast-day.selected .f-date) { color: var(--accent-cyan); } @media (max-width: 720px) { .root :global(.forecast-table) { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x proximity; } .root :global(.forecast-table::-webkit-scrollbar) { height: 6px; } .root :global(.forecast-table::-webkit-scrollbar-thumb) { background: rgba(148, 163, 184, 0.32); border-radius: 999px; } .root :global(.forecast-day) { flex: 0 0 112px; min-width: 112px; scroll-snap-align: start; } } .root :global(.sun-info) { margin-top: 10px; font-size: 12px; color: var(--text-muted); display: flex; gap: 16px; justify-content: center; } /* ── AI Section ── */ .root :global(.ai-box) { background: rgba(99, 102, 241, 0.06); border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 12px; padding: 16px; font-size: 13px; line-height: 1.7; color: var(--text-secondary); white-space: pre-wrap; word-break: break-word; } .root :global(.ai-placeholder) { color: var(--text-muted); font-style: italic; } /* ── Risk Section ── */ .root :global(.risk-info) { font-size: 12px; color: var(--text-secondary); line-height: 1.8; word-break: break-word; /* 确保数字和英文长句也能折行 */ white-space: normal; } .root :global(.risk-info .risk-row) { display: flex; gap: 8px; align-items: flex-start; } .root :global(.risk-info .risk-label) { color: var(--text-muted); min-width: 60px; flex-shrink: 0; } /* ── Nearby Markers ── */ .root :global(.nearby-marker) { display: flex; align-items: center; gap: 8px; background: rgba(13, 17, 28, 0.85); color: var(--text-primary); border: 1px solid rgba(34, 211, 238, 0.25); border-radius: 12px; padding: 5px 12px; font-size: 11px; font-weight: 500; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(34, 211, 238, 0.05); white-space: nowrap; backdrop-filter: blur(12px); pointer-events: none; animation: markerFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1); transition: border-color 0.3s ease; } .root :global(.nearby-marker:hover) { border-color: var(--accent-cyan); } .root :global(.nearby-name) { color: rgba(255, 255, 255, 0.6); font-weight: 400; max-width: 120px; overflow: hidden; text-overflow: ellipsis; } .root :global(.nearby-temp) { font-weight: 800; color: var(--accent-cyan); font-size: 13px; text-shadow: 0 0 10px rgba(34, 211, 238, 0.3); } .root :global(.nearby-unit) { font-weight: 600; font-size: 10px; color: var(--accent-cyan); opacity: 0.8; margin-left: 1px; } .root :global(.wind-info) { display: flex; align-items: center; gap: 5px; margin-left: 4px; padding-left: 8px; border-left: 1.5px solid rgba(255, 255, 255, 0.15); } .root :global(.wind-arrow) { display: inline-block; font-size: 14px; color: var(--accent-green); text-shadow: 0 0 8px rgba(52, 211, 153, 0.4); } .root :global(.wind-speed) { font-size: 10px; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; } @keyframes markerFadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } } /* ── Custom Map Markers ── */ .root :global(.city-marker) { position: relative; display: flex; flex-direction: column; align-items: center; cursor: pointer; /* Remove transition: transform to avoid fighting with Leaflet's own positioning */ } .root :global(.city-marker:hover) { transform: scale(1.15); z-index: 1000 !important; } .root :global(.marker-bubble) { min-width: 44px; padding: 4px 10px; border-radius: 12px; font-family: "Inter", sans-serif; font-size: 13px; font-weight: 700; text-align: center; color: white; white-space: nowrap; position: relative; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); border: 1.5px solid rgba(255, 255, 255, 0.15); } .root :global(.marker-bubble::after) { content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid; border-top-color: inherit; } .root :global(.marker-bubble.risk-high) { background: linear-gradient(135deg, #dc2626, #ef4444); border-color: rgba(239, 68, 68, 0.5); } .root :global(.marker-bubble.risk-high::after) { border-top-color: #ef4444; } .root :global(.marker-bubble.risk-medium) { background: linear-gradient(135deg, #d97706, #f59e0b); border-color: rgba(245, 158, 11, 0.5); } .root :global(.marker-bubble.risk-medium::after) { border-top-color: #f59e0b; } .root :global(.marker-bubble.risk-low) { background: linear-gradient(135deg, #059669, #10b981); border-color: rgba(16, 185, 129, 0.5); } .root :global(.marker-bubble.risk-low::after) { border-top-color: #10b981; } .root :global(.marker-name) { font-size: 10px; font-weight: 600; color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8); margin-top: 2px; white-space: nowrap; } /* Marker glow animation for selected city */ .root :global(.city-marker.selected .marker-bubble) { animation: markerGlow 2s ease-in-out infinite; } @keyframes markerGlow { 0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); } 50% { box-shadow: 0 4px 24px rgba(99, 102, 241, 0.5), 0 0 40px rgba(99, 102, 241, 0.2); } } /* ── Loading Overlay ── */ .root :global(.loading-overlay) { position: fixed; inset: 0; z-index: 2000; background: radial-gradient( circle at 50% 50%, rgba(8, 14, 32, 0.76) 0%, rgba(4, 8, 22, 0.9) 44%, rgba(2, 6, 20, 0.96) 100% ); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(12px); } .root :global(.loading-card) { display: flex; flex-direction: column; align-items: center; gap: 22px; min-width: 240px; padding: 28px 32px; border-radius: 28px; background: linear-gradient( 180deg, rgba(10, 18, 36, 0.78) 0%, rgba(8, 14, 30, 0.62) 100% ); border: 1px solid rgba(92, 142, 255, 0.16); box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04); } .root :global(.loading-clouds) { position: relative; width: 220px; height: 26px; overflow: hidden; } .root :global(.loading-cloud) { position: absolute; top: 0; height: 18px; border-radius: 999px; background: radial-gradient( circle at 30% 50%, rgba(186, 230, 253, 0.22), transparent 54% ), linear-gradient( 180deg, rgba(148, 163, 184, 0.28) 0%, rgba(71, 85, 105, 0.1) 100% ); filter: blur(0.3px); box-shadow: 0 6px 24px rgba(56, 189, 248, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.08); animation: cloud-drift 6.8s ease-in-out infinite; } .root :global(.loading-cloud-1) { left: 12px; width: 76px; } .root :global(.loading-cloud-2) { right: 8px; top: 7px; width: 98px; opacity: 0.75; animation-delay: -2.6s; } .root :global(.loading-windfield) { position: relative; width: 220px; height: 30px; overflow: hidden; opacity: 0.9; } .root :global(.loading-windline) { position: absolute; left: -28%; height: 1px; border-radius: 999px; background: linear-gradient( 90deg, rgba(34, 211, 238, 0) 0%, rgba(103, 232, 249, 0.5) 22%, rgba(125, 211, 252, 0.9) 55%, rgba(34, 211, 238, 0) 100% ); filter: blur(0.2px); animation: wind-shift 2.8s linear infinite; } .root :global(.loading-windline-1) { top: 4px; width: 124px; } .root :global(.loading-windline-2) { top: 13px; width: 176px; animation-delay: -0.9s; opacity: 0.82; } .root :global(.loading-windline-3) { top: 22px; width: 142px; animation-delay: -1.6s; opacity: 0.66; } .root :global(.loading-copy) { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; } .root :global(.loading-copy strong) { font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(103, 232, 249, 0.92); } .root :global(.loading-copy span) { max-width: 240px; font-size: 13px; font-weight: 500; line-height: 1.55; color: rgba(203, 213, 225, 0.82); } .root :global(.loading-radar) { position: relative; width: 108px; height: 108px; border-radius: 50%; background: radial-gradient( circle, rgba(22, 78, 99, 0.16) 0%, rgba(7, 18, 36, 0.08) 48%, rgba(5, 10, 22, 0.02) 76%, transparent 100% ); box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.12), 0 0 40px rgba(34, 211, 238, 0.08); } .root :global(.loading-radar-core) { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle, #67e8f9 0%, #0891b2 100%); transform: translate(-50%, -50%); box-shadow: 0 0 12px rgba(34, 211, 238, 0.65), 0 0 28px rgba(59, 130, 246, 0.25); } .root :global(.loading-radar-ring) { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(56, 189, 248, 0.14); } .root :global(.loading-radar-ring-1) { transform: scale(0.62); } .root :global(.loading-radar-ring-2) { transform: scale(0.88); } .root :global(.loading-radar-sweep) { position: absolute; inset: 6px; border-radius: 50%; background: conic-gradient( from 90deg, rgba(34, 211, 238, 0) 0deg, rgba(34, 211, 238, 0) 260deg, rgba(34, 211, 238, 0.3) 312deg, rgba(96, 165, 250, 0.06) 360deg ); mask: radial-gradient(circle, transparent 0 22px, #000 23px); animation: radar-sweep 2.4s linear infinite; } .root :global(.loading-radar-blip) { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: rgba(253, 224, 71, 0.92); box-shadow: 0 0 12px rgba(253, 224, 71, 0.45); animation: radar-blip 1.8s ease-in-out infinite; } .root :global(.loading-radar-blip-1) { top: 26px; right: 24px; animation-delay: 0.15s; } .root :global(.loading-radar-blip-2) { bottom: 25px; left: 20px; background: rgba(74, 222, 128, 0.9); box-shadow: 0 0 12px rgba(74, 222, 128, 0.4); animation-delay: 0.9s; } .root :global(.loading-thermals) { display: flex; align-items: end; gap: 8px; height: 28px; } .root :global(.loading-thermal) { width: 10px; border-radius: 999px; background: linear-gradient( 180deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 146, 60, 0.8) 55%, rgba(239, 68, 68, 0.9) 100% ); box-shadow: 0 0 18px rgba(251, 146, 60, 0.18); animation: thermal-rise 1.5s ease-in-out infinite; transform-origin: center bottom; } .root :global(.loading-thermal-1) { height: 11px; animation-delay: 0s; } .root :global(.loading-thermal-2) { height: 22px; animation-delay: 0.2s; } .root :global(.loading-thermal-3) { height: 16px; animation-delay: 0.42s; } .root :global(.loading-thermal-4) { height: 25px; animation-delay: 0.68s; } .root :global(.loading-drizzle) { position: relative; width: 220px; height: 26px; overflow: hidden; opacity: 0.88; } .root :global(.loading-drizzle-drop) { position: absolute; top: -2px; width: 2px; height: 16px; border-radius: 999px; background: linear-gradient( 180deg, rgba(125, 211, 252, 0) 0%, rgba(125, 211, 252, 0.9) 100% ); box-shadow: 0 0 8px rgba(56, 189, 248, 0.12); animation: drizzle-fall 1.35s linear infinite; } .root :global(.loading-drizzle-drop-1) { left: 38px; animation-delay: -0.1s; } .root :global(.loading-drizzle-drop-2) { left: 76px; height: 18px; animation-delay: -0.52s; } .root :global(.loading-drizzle-drop-3) { left: 112px; height: 14px; animation-delay: -0.92s; } .root :global(.loading-drizzle-drop-4) { left: 156px; height: 17px; animation-delay: -0.38s; } .root :global(.loading-drizzle-drop-5) { left: 192px; height: 13px; animation-delay: -0.74s; } .root :global(.loading-overlay.hidden) { display: none; } .root :global(.loading-spinner) { width: 48px; height: 48px; border: 2px solid rgba(34, 211, 238, 0.1); border-top-color: var(--accent-cyan); border-radius: 50%; animation: loading-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite; box-shadow: 0 0 15px rgba(34, 211, 238, 0.1); } @keyframes loading-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes city-loading-pulse { 0% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.44); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); } 100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); } } @keyframes radar-sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes radar-blip { 0%, 100% { opacity: 0.2; transform: scale(0.72); } 40% { opacity: 1; transform: scale(1); } 60% { opacity: 0.9; transform: scale(1.18); } } @keyframes wind-shift { from { transform: translateX(0); opacity: 0; } 18% { opacity: 0.9; } 82% { opacity: 0.78; } to { transform: translateX(145%); opacity: 0; } } @keyframes thermal-rise { 0%, 100% { transform: scaleY(0.78); opacity: 0.72; } 50% { transform: scaleY(1.14); opacity: 1; } } @keyframes cloud-drift { 0%, 100% { transform: translateX(0); opacity: 0.7; } 50% { transform: translateX(12px); opacity: 0.95; } } @keyframes drizzle-fall { 0% { transform: translateY(-3px); opacity: 0; } 20% { opacity: 0.9; } 100% { transform: translateY(18px); opacity: 0; } } /* ── Nearby Stations (Premium Glassmorphism) ── */ .root :global(.nearby-marker-premium) { display: flex; align-items: center; gap: 10px; background: rgba(10, 14, 26, 0.75); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px; /* Pill shape */ padding: 5px 14px 5px 10px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05); pointer-events: none; animation: nearby-fade-in 0.4s ease-out; white-space: nowrap; } .root :global(.nearby-marker-shell) { display: inline-block; will-change: transform; } @keyframes nearby-fade-in { from { opacity: 0; transform: scale(0.9) translateY(4px); } to { opacity: 1; transform: scale(1) translateY(0); } } .root :global(.nearby-pulse) { position: relative; width: 12px; height: 12px; flex-shrink: 0; } .root :global(.pulse-core) { position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; background: var(--accent-cyan); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 8px var(--accent-cyan); } .root :global(.pulse-ring) { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; border: 1.5px solid var(--accent-cyan); border-radius: 50%; transform: translate(-50%, -50%); animation: sonar-pulse 2s infinite cubic-bezier(0, 0.2, 0.8, 1); opacity: 0; } @keyframes sonar-pulse { 0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } } .root :global(.nearby-content) { display: flex; flex-direction: column; line-height: 1.1; } .root :global(.nearby-label) { font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; } .root :global(.nearby-stats) { display: flex; align-items: baseline; gap: 2px; } .root :global(.nearby-temp-val) { font-size: 13px; font-weight: 800; color: var(--text-primary); text-shadow: 0 0 12px rgba(255, 255, 255, 0.1); } .root :global(.nearby-temp-unit) { font-size: 10px; color: var(--text-muted); } .root :global(.nearby-wind) { display: flex; align-items: center; gap: 4px; padding-left: 10px; margin-left: 2px; border-left: 1px solid rgba(255, 255, 255, 0.1); } .root :global(.nearby-wind .wind-arrow) { font-size: 12px; color: var(--accent-cyan); text-shadow: 0 0 8px rgba(34, 211, 238, 0.4); } .root :global(.nearby-wind .wind-val) { font-size: 11px; font-weight: 600; color: var(--text-secondary); } /* ── Trend badge ── */ .root :global(.trend-badge) { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; } .root :global(.trend-badge.rising) { background: rgba(34, 197, 94, 0.12); color: var(--accent-green); border: 1px solid rgba(34, 197, 94, 0.25); } .root :global(.trend-badge.falling) { background: rgba(248, 113, 113, 0.12); color: var(--accent-red); border: 1px solid rgba(248, 113, 113, 0.25); } .root :global(.trend-badge.stagnant) { background: rgba(251, 191, 36, 0.12); color: var(--accent-yellow); border: 1px solid rgba(251, 191, 36, 0.25); } .root :global(.trend-badge.mixed) { background: rgba(167, 139, 250, 0.12); color: var(--accent-purple); border: 1px solid rgba(167, 139, 250, 0.25); } .root :global(.dead-market) { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; background: rgba(248, 113, 113, 0.15); color: var(--accent-red); border: 1px solid rgba(248, 113, 113, 0.3); animation: deadPulse 2s ease-in-out infinite; } @keyframes deadPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } } /* ── Responsive ── */ @media (max-width: 1100px) { .root { --panel-width: 460px; } .root :global(.hero-value) { font-size: 52px; } } @media (max-width: 768px) { .root :global(.header) { height: auto; min-height: var(--header-height); align-items: flex-start; gap: 10px; padding: 10px 12px; } .root :global(.brand) { align-items: flex-start; gap: 8px; min-width: 0; } .root :global(.header-right) { flex: 1 1 auto; justify-content: flex-end; flex-wrap: wrap; gap: 8px; min-width: 0; } .root :global(.lang-switch) { order: 1; } .root :global(.account-btn), .root :global(.info-btn) { padding: 6px 10px; font-size: 12px; } .root :global(.live-badge) { order: 4; padding: 4px 10px; white-space: nowrap; } .root :global(.refresh-btn) { order: 5; } .root :global(.city-list) { display: flex; top: auto; left: 8px; right: 8px; bottom: 8px; width: auto; max-height: min(36vh, 320px); border-radius: 14px; z-index: 920; } .root :global(.detail-panel) { width: 100%; } .root { --panel-width: 100%; } .root :global(.city-list-header) { padding: 12px 14px; font-size: 14px; } .root :global(.city-list-items) { padding: 6px; } .root :global(.city-group-header) { padding: 8px 9px; } .root :global(.city-item) { padding: 8px 9px; } .root :global(.city-item .city-name-text), .root :global(.city-item .city-temp) { font-size: 12px; } .root :global(.city-item-info) { padding-left: 18px; flex-wrap: wrap; row-gap: 4px; } .root :global(.panel-header) { padding: 16px 16px 14px; } } @media (max-width: 600px) { .root :global(.header) { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px 10px; } .root :global(.brand) { justify-content: space-between; width: 100%; } .root :global(.subtitle) { display: none; } .root :global(.brand h1) { font-size: 16px; } .root :global(.header-right) { width: 100%; justify-content: flex-start; gap: 6px; } .root :global(.lang-switch) { margin-right: auto; } .root :global(.account-btn), .root :global(.info-btn) { min-height: 34px; padding: 6px 9px; font-size: 11px; } .root :global(.account-btn span), .root :global(.info-btn span) { max-width: 88px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .root :global(.live-badge) { padding: 4px 8px; font-size: 10px; letter-spacing: 0.6px; } .root :global(.refresh-btn) { width: 34px; height: 34px; font-size: 16px; } .root :global(.hero-value) { font-size: 42px; } .root :global(.hero-details) { grid-template-columns: repeat(3, 1fr); gap: 4px; } .root :global(.hero-item .value) { font-size: 14px; } .root :global(.city-list) { left: 6px; right: 6px; bottom: 6px; max-height: min(40vh, 300px); } .root :global(.city-list-header) { padding: 10px 12px; } .root :global(.city-group-title) { font-size: 11px; } .root :global(.city-item-main) { gap: 6px; } .root :global(.city-item-info) { font-size: 9px; } .root :global(.panel-header) { padding: 14px 14px 12px; } .root :global(.city-marker:hover) { transform: none; } .root :global(.marker-bubble) { min-width: 48px; min-height: 32px; padding: 6px 10px; } .root :global(.marker-name) { font-size: 11px; } } /* ── History Modal ── */ .root :global(.history-btn) { background: rgba(34, 211, 238, 0.1); color: var(--accent-cyan); border: 1px solid rgba(34, 211, 238, 0.3); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-left: 8px; } .root :global(.history-btn:hover) { background: rgba(34, 211, 238, 0.2); border-color: var(--accent-cyan); } .root :global(.history-btn:disabled) { opacity: 0.45; cursor: not-allowed; } .root :global(.modal-overlay) { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(2, 6, 23, 0.75); backdrop-filter: blur(12px); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 16px; } .root :global(.modal-content) { background: #111827; border: 1px solid var(--border-subtle); border-radius: 16px; width: 100%; max-width: 700px; max-height: calc(100vh - 48px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; overflow: hidden; } .root :global(.modal-content.history-modal) { width: min(96vw, 1180px); max-width: 1180px; max-height: calc(100vh - 32px); } .root :global(.modal-header) { padding: 16px 20px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; } .root :global(.modal-header h2) { font-size: 16px; font-weight: 600; color: var(--text-primary); margin: 0; min-width: 0; } .root :global(.future-modal-title-with-actions) { display: flex; align-items: center; gap: 12px; } .root :global(.future-refresh-btn) { background: transparent; border: none; cursor: pointer; color: var(--text-muted); display: flex; align-items: center; justify-content: center; padding: 6px; border-radius: 6px; transition: all 0.2s ease; } .root :global(.future-refresh-btn:hover) { color: var(--accent-cyan); background: rgba(34, 211, 238, 0.1); } .root :global(.future-refresh-btn.spinning svg) { animation: spin 1s linear infinite; color: var(--accent-cyan); } @keyframes spin { 100% { transform: rotate(360deg); } } .root :global(.modal-close) { background: none; border: none; font-size: 20px; color: var(--text-muted); cursor: pointer; transition: color 0.2s; } .root :global(.modal-close:hover) { color: var(--accent-red); } .root :global(.modal-body) { padding: 20px; overflow-y: auto; } /* Keep scroll behavior but hide visual scrollbar in today's/future analysis modal */ .root :global(.modal-content.large.future-modal .modal-body) { -ms-overflow-style: none; scrollbar-width: none; } .root :global(.modal-content.large.future-modal .modal-body::-webkit-scrollbar) { width: 0; height: 0; } .root :global(.history-modal .modal-body) { padding: 24px 28px 28px; } .root :global(.history-stats) { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; } .root :global(.h-stat-card) { flex: 1; min-width: 110px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 12px; text-align: center; } .root :global(.h-stat-card .label) { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; } .root :global(.h-stat-card .val) { display: block; font-size: 18px; font-weight: 700; color: var(--text-primary); } .root :global(.h-stat-card .h-stat-note) { display: block; margin-top: 6px; font-size: 11px; color: var(--text-muted); line-height: 1.35; } .root :global(.history-chart-wrapper) { position: relative; height: 300px; width: 100%; } .root :global(.history-modal .history-stats) { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; } .root :global(.history-modal .h-stat-card) { min-width: 0; padding: 16px 18px; border-radius: 12px; background: linear-gradient( 180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.history-modal .h-stat-card .label) { font-size: 12px; margin-bottom: 8px; } .root :global(.history-modal .h-stat-card .val) { font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; } .root :global(.history-modal .history-chart-wrapper) { height: 420px; border: 1px solid var(--border-subtle); border-radius: 12px; background: rgba(255, 255, 255, 0.02); padding: 12px 14px 8px; } .root :global(.history-modal .history-chart-wrapper canvas) { width: 100% !important; height: 100% !important; } .root :global(.history-modal .history-modal-loading) { display: flex; align-items: center; justify-content: center; min-height: 420px; } .root :global(.history-modal .history-fetch-loading) { display: flex; flex-direction: column; align-items: center; gap: 18px; width: min(100%, 420px); padding: 24px 26px; border-radius: 24px; border: 1px solid rgba(96, 165, 250, 0.16); background: linear-gradient( 180deg, rgba(10, 18, 36, 0.72) 0%, rgba(8, 14, 30, 0.5) 100% ); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03); } .root :global(.history-modal .history-fetch-scan) { position: relative; width: 84px; height: 84px; border-radius: 50%; background: radial-gradient( circle, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 62%, transparent 100% ); } .root :global(.history-modal .history-fetch-ring) { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(56, 189, 248, 0.16); } .root :global(.history-modal .history-fetch-ring-1) { transform: scale(0.7); } .root :global(.history-modal .history-fetch-ring-2) { transform: scale(0.92); } .root :global(.history-modal .history-fetch-sweep) { position: absolute; inset: 5px; border-radius: 50%; background: conic-gradient( from 120deg, rgba(34, 211, 238, 0) 0deg, rgba(34, 211, 238, 0.04) 220deg, rgba(56, 189, 248, 0.78) 300deg, rgba(253, 224, 71, 0.32) 332deg, rgba(34, 211, 238, 0) 360deg ); animation: history-fetch-spin 2.2s linear infinite; } .root :global(.history-modal .history-fetch-core) { position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; border-radius: 50%; transform: translate(-50%, -50%); background: rgba(103, 232, 249, 0.95); box-shadow: 0 0 18px rgba(34, 211, 238, 0.42); } .root :global(.history-modal .history-fetch-bars) { display: flex; align-items: end; gap: 7px; height: 22px; } .root :global(.history-modal .history-fetch-bar) { width: 8px; border-radius: 999px; background: linear-gradient( 180deg, rgba(250, 204, 21, 0.18) 0%, rgba(251, 146, 60, 0.9) 100% ); animation: history-fetch-pulse 1.6s ease-in-out infinite; } .root :global(.history-modal .history-fetch-bar-1) { height: 10px; } .root :global(.history-modal .history-fetch-bar-2) { height: 18px; animation-delay: 0.18s; } .root :global(.history-modal .history-fetch-bar-3) { height: 14px; animation-delay: 0.34s; } .root :global(.history-modal .history-fetch-bar-4) { height: 20px; animation-delay: 0.5s; } .root :global(.history-modal .history-fetch-lines) { position: relative; width: 180px; height: 22px; overflow: hidden; } .root :global(.history-modal .history-fetch-line) { position: absolute; left: -26%; height: 1px; border-radius: 999px; background: linear-gradient( 90deg, rgba(34, 211, 238, 0) 0%, rgba(125, 211, 252, 0.72) 48%, rgba(34, 211, 238, 0) 100% ); animation: history-fetch-flow 2.4s linear infinite; } .root :global(.history-modal .history-fetch-line-1) { top: 4px; width: 122px; } .root :global(.history-modal .history-fetch-line-2) { top: 11px; width: 168px; animation-delay: -0.8s; } .root :global(.history-modal .history-fetch-line-3) { top: 18px; width: 138px; animation-delay: -1.4s; } .root :global(.history-modal .history-fetch-copy) { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; } .root :global(.history-modal .history-fetch-copy strong) { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(103, 232, 249, 0.94); } .root :global(.history-modal .history-fetch-copy span) { max-width: 300px; font-size: 12px; line-height: 1.5; color: rgba(203, 213, 225, 0.82); } @keyframes history-fetch-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes history-fetch-pulse { 0%, 100% { transform: scaleY(0.86); opacity: 0.8; } 50% { transform: scaleY(1.08); opacity: 1; } } @keyframes history-fetch-flow { from { transform: translateX(0); } to { transform: translateX(150%); } } .root :global(.history-modal .history-peak-reference) { margin-top: 18px; padding: 14px 16px; border: 1px solid rgba(148, 163, 184, 0.14); border-radius: 16px; background: rgba(15, 23, 42, 0.42); } .root :global(.history-modal .history-peak-reference-title) { color: var(--text-primary); font-size: 14px; font-weight: 700; margin-bottom: 10px; } .root :global(.history-modal .history-peak-reference-scroll) { display: grid; gap: 8px; max-height: 360px; overflow-y: auto; padding-right: 6px; scrollbar-width: thin; scrollbar-color: rgba(96, 165, 250, 0.5) rgba(15, 23, 42, 0.32); } .root :global(.history-modal .history-peak-reference-scroll::-webkit-scrollbar) { width: 8px; } .root :global( .history-modal .history-peak-reference-scroll::-webkit-scrollbar-track ) { background: rgba(15, 23, 42, 0.32); border-radius: 999px; } .root :global( .history-modal .history-peak-reference-scroll::-webkit-scrollbar-thumb ) { background: linear-gradient( 180deg, rgba(56, 189, 248, 0.72) 0%, rgba(96, 165, 250, 0.52) 100% ); border-radius: 999px; } .root :global(.history-modal .history-peak-reference-row) { display: grid; grid-template-columns: minmax(72px, 88px) 1fr; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); } .root :global(.history-modal .history-peak-reference-date) { color: var(--text-secondary); font-size: 12px; font-weight: 700; } .root :global(.history-modal .history-peak-reference-meta) { color: var(--text-secondary); font-size: 12px; line-height: 1.7; } @media (max-width: 980px) { .root :global(.history-modal .modal-body) { padding: 18px; } .root :global(.history-modal .history-stats) { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .root :global(.history-modal .history-chart-wrapper) { height: 360px; } .root :global(.history-modal .history-modal-loading) { min-height: 340px; } .root :global(.history-modal .history-fetch-loading) { width: min(100%, 360px); } .root :global(.history-modal .history-peak-reference-scroll) { max-height: 320px; } } @media (max-width: 640px) { .root :global(.modal-content) { border-radius: 14px; max-height: calc(100vh - 16px); } .root :global(.modal-content.history-modal), .root :global(.modal-content.large.future-modal) { width: min(100vw - 12px, 100%); max-width: none; } .root :global(.modal-header) { padding: 14px 14px 12px; align-items: flex-start; gap: 12px; } .root :global(.modal-header h2) { font-size: 15px; line-height: 1.35; } .root :global(.modal-body) { padding: 14px; } .root :global(.history-modal .history-stats) { grid-template-columns: 1fr; } .root :global(.history-modal .h-stat-card .val) { font-size: 28px; } .root :global(.history-modal .history-chart-wrapper) { height: 300px; padding: 8px 10px 6px; } .root :global(.history-modal .history-modal-loading) { min-height: 280px; } .root :global(.history-modal .history-fetch-loading) { width: 100%; padding: 18px 16px; } .root :global(.history-modal .history-fetch-lines) { width: 150px; } .root :global(.history-modal .history-fetch-scan) { width: 72px; height: 72px; } .root :global(.history-modal .history-peak-reference) { padding: 12px; } .root :global(.history-modal .history-peak-reference-scroll) { max-height: 260px; padding-right: 2px; } .root :global(.history-modal .history-peak-reference-row) { grid-template-columns: 1fr; gap: 6px; } } /* ── Info Button ── */ .root :global(.account-btn) { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 6px 12px; border-radius: 8px; border: 1px solid rgba(34, 211, 238, 0.34); background: rgba(34, 211, 238, 0.08); color: var(--accent-cyan); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; transition: var(--transition); } .root :global(.account-btn:hover) { background: rgba(34, 211, 238, 0.16); border-color: rgba(34, 211, 238, 0.62); color: #f8fbff; transform: translateY(-1px); } .root :global(.account-renew-badge) { display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(245, 158, 11, 0.34); background: rgba(245, 158, 11, 0.1); color: #fbbf24; font-size: 11px; font-weight: 700; letter-spacing: 0.01em; text-decoration: none; transition: var(--transition); } .root :global(.account-renew-badge:hover) { background: rgba(245, 158, 11, 0.18); border-color: rgba(245, 158, 11, 0.6); color: #fff6d5; transform: translateY(-1px); } .root :global(.account-renew-badge.expired) { border-color: rgba(239, 68, 68, 0.34); background: rgba(239, 68, 68, 0.12); color: #fca5a5; } .root :global(.trial-promo-badge) { display: inline-flex; align-items: center; justify-content: center; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(34, 211, 238, 0.28); background: rgba(34, 211, 238, 0.1); color: #a5f3fc; font-size: 11px; font-weight: 700; letter-spacing: 0.01em; text-decoration: none; transition: var(--transition); } .root :global(.trial-promo-badge:hover) { background: rgba(34, 211, 238, 0.16); border-color: rgba(34, 211, 238, 0.45); color: #ecfeff; transform: translateY(-1px); } .root :global(.info-btn) { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); color: var(--accent-blue); padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 6px; } .root :global(.info-btn:hover) { background: rgba(99, 102, 241, 0.2); border-color: var(--accent-blue); transform: translateY(-1px); } /* ── Guide Modal Customizations ── */ .root :global(.modal-content.large) { max-width: 900px; } .root :global(.modal-content.large.future-modal) { width: min(96vw, 1720px); max-width: 1720px; } .root :global(.future-modal-body) { display: flex; flex-direction: column; gap: 14px; padding-right: 14px; } .root :global(.future-v2-sync-strip) { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; } .root :global(.future-v2-sync-strip-compact) { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; } .root :global(.future-v2-sync-strip-compact .future-v2-sync-chip) { padding: 8px 10px; border-radius: 8px; background: rgba(15, 23, 42, 0.62); } .root :global(.future-v2-sync-strip-compact .future-v2-sync-copy span) { display: none; } .root :global(.future-v2-meteorology-brief) { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr); gap: 14px; padding: 16px; border: 1px solid rgba(34, 211, 238, 0.22); border-radius: 8px; background: linear-gradient(180deg, rgba(8, 47, 73, 0.42), rgba(15, 23, 42, 0.78)); } .root :global(.future-v2-meteorology-copy) { display: grid; gap: 9px; min-width: 0; } .root :global(.future-v2-anchor-row) { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; } .root :global(.future-v2-anchor-source) { display: inline-flex; align-items: center; min-height: 24px; padding: 4px 8px; border: 1px solid rgba(34, 211, 238, 0.28); border-radius: 8px; background: rgba(8, 47, 73, 0.36); color: #67e8f9; font-size: 11px; font-weight: 800; line-height: 1.25; white-space: nowrap; } .root :global(.future-v2-meteorology-copy h3) { margin: 0; color: #f8fafc; font-size: 18px; font-weight: 800; line-height: 1.35; letter-spacing: 0; } .root :global(.future-v2-anchor-rule) { margin: 0; max-width: 860px; color: var(--text-muted); font-size: 12px; line-height: 1.55; } .root :global(.future-v2-meteorology-meta) { display: flex; flex-wrap: wrap; gap: 8px; } .root :global(.future-v2-meteorology-meta span) { min-height: 26px; display: inline-flex; align-items: center; padding: 5px 8px; border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 8px; background: rgba(15, 23, 42, 0.62); color: #cbd5e1; font-size: 12px; line-height: 1.35; } .root :global(.future-v2-decision-rail) { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.35fr); gap: 10px; min-width: 0; } .root :global(.future-v2-decision-anchor) { min-width: 0; padding: 12px; border: 1px solid rgba(96, 165, 250, 0.2); border-radius: 8px; background: rgba(2, 6, 23, 0.5); } .root :global(.future-v2-decision-anchor span), .root :global(.future-v2-decision-grid span) { display: block; color: var(--text-muted); font-size: 11px; line-height: 1.3; } .root :global(.future-v2-decision-anchor strong) { display: block; margin-top: 8px; color: #f8fafc; font-size: 14px; font-weight: 800; line-height: 1.35; letter-spacing: 0; } .root :global(.future-v2-decision-anchor small) { display: block; margin-top: 6px; color: #67e8f9; font-size: 11px; font-weight: 700; line-height: 1.3; } .root :global(.future-v2-decision-grid) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; min-width: 0; } .root :global(.future-v2-decision-grid div) { min-width: 0; padding: 10px; border: 1px solid rgba(34, 211, 238, 0.18); border-radius: 8px; background: rgba(2, 6, 23, 0.5); } .root :global(.future-v2-decision-grid strong) { display: block; margin-top: 7px; color: #67e8f9; font-size: 18px; font-weight: 800; line-height: 1; letter-spacing: 0; } .root :global(.future-v2-meteorology-paths) { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; } .root :global(.future-v2-meteorology-paths div) { min-width: 0; padding: 12px; border: 1px solid rgba(34, 211, 238, 0.18); border-radius: 8px; background: rgba(2, 6, 23, 0.5); } .root :global(.future-v2-meteorology-paths span) { display: block; color: var(--text-muted); font-size: 11px; line-height: 1.3; } .root :global(.future-v2-meteorology-paths strong) { display: block; margin-top: 8px; color: #67e8f9; font-size: 22px; font-weight: 800; line-height: 1; letter-spacing: 0; } .root :global(.future-v2-sync-chip) { display: flex; align-items: flex-start; gap: 10px; padding: 11px 12px; border-radius: 12px; border: 1px solid rgba(52, 211, 153, 0.16); background: rgba(16, 185, 129, 0.06); } .root :global(.future-v2-sync-chip.syncing) { border-color: rgba(34, 211, 238, 0.2); background: rgba(34, 211, 238, 0.07); } .root :global(.future-v2-sync-dot) { width: 9px; height: 9px; border-radius: 999px; background: #34d399; margin-top: 5px; flex: 0 0 auto; box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12); } .root :global(.future-v2-sync-chip.syncing .future-v2-sync-dot) { background: #22d3ee; box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12); animation: pulseGlow 1.25s ease-in-out infinite; } .root :global(.future-v2-sync-copy) { display: grid; gap: 4px; min-width: 0; } .root :global(.future-v2-sync-copy strong) { color: var(--text-primary); font-size: 12px; font-weight: 700; line-height: 1.3; } .root :global(.future-v2-sync-copy span) { color: var(--text-muted); font-size: 11px; line-height: 1.45; } @keyframes pulseGlow { 0%, 100% { opacity: 0.9; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } } .root :global(.future-v2-layout) { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 14px; align-items: start; } .root :global(.future-v2-left) { display: grid; gap: 12px; } .root :global(.future-v2-right) { display: grid; gap: 14px; } .root :global(.future-v2-card) { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 14px; } .root :global(.future-v2-card-head) { display: grid; gap: 6px; } .root :global(.future-v2-card-kicker) { color: var(--text-muted); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; } .root :global(.future-v2-focus-card) { background: linear-gradient( 180deg, rgba(34, 211, 238, 0.08) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.future-v2-support-card) { background: linear-gradient( 180deg, rgba(148, 163, 184, 0.08) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.future-v2-hero-card) { background: linear-gradient( 180deg, rgba(99, 102, 241, 0.12) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.future-v2-hero-title) { margin: 0; font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; } .root :global(.future-v2-hero-main) { display: flex; align-items: center; gap: 14px; margin-top: 14px; } .root :global(.future-v2-hero-temp) { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: #f8fafc; text-shadow: 0 10px 30px rgba(34, 211, 238, 0.14); } .root :global(.future-v2-hero-divider) { width: 1px; height: 56px; background: rgba(255, 255, 255, 0.12); } .root :global(.future-v2-hero-weather) { display: grid; gap: 4px; font-size: 15px; color: var(--text-secondary); } .root :global(.future-v2-hero-icon) { display: inline-flex; align-items: center; line-height: 1; } .root :global(.future-v2-hero-obs) { margin-top: 10px; color: var(--text-secondary); font-size: 26px; font-weight: 500; font-variant-numeric: tabular-nums; } .root :global(.future-v2-daylight) { margin-top: 14px; padding: 12px 12px 10px; border-radius: 12px; border: 1px solid rgba(245, 158, 11, 0.14); background: linear-gradient( 180deg, rgba(245, 158, 11, 0.08) 0%, rgba(34, 211, 238, 0.04) 100% ); } .root :global(.future-v2-daylight-head) { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 8px; } .root :global(.future-v2-daylight-head span) { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; } .root :global(.future-v2-daylight-head strong) { color: #fde68a; font-size: 12px; font-weight: 700; } .root :global(.future-v2-daylight-bar) { position: relative; height: 12px; border-radius: 999px; background: linear-gradient( 90deg, rgba(15, 23, 42, 0.85) 0%, rgba(56, 189, 248, 0.18) 15%, rgba(250, 204, 21, 0.24) 50%, rgba(56, 189, 248, 0.16) 85%, rgba(15, 23, 42, 0.85) 100% ); overflow: hidden; } .root :global(.future-v2-daylight-bar::before) { content: ""; position: absolute; inset: 0; width: var(--daylight-progress, 0%); background: linear-gradient( 90deg, rgba(34, 211, 238, 0.22) 0%, rgba(250, 204, 21, 0.4) 70%, rgba(251, 146, 60, 0.5) 100% ); } .root :global(.future-v2-daylight-bar::after) { content: ""; position: absolute; top: 50%; left: var(--daylight-progress, 0%); width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle, #fff7cc 0%, #facc15 65%, #fb923c 100%); box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.16), 0 0 18px rgba(250, 204, 21, 0.22); transform: translate(-50%, -50%); } .root :global(.future-v2-daylight-times) { margin-top: 8px; display: flex; justify-content: space-between; color: var(--text-secondary); font-size: 11px; } .root :global(.future-v2-mini-grid) { margin-top: 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .root :global(.future-v2-mini-grid.future-v2-mini-grid-tight) { margin-top: 8px; } .root :global(.future-v2-mini-item) { border-radius: 10px; border: 1px solid var(--border-subtle); background: rgba(255, 255, 255, 0.025); padding: 10px; display: grid; gap: 4px; } .root :global(.future-v2-signal-item) { gap: 8px; } .root :global(.future-v2-signal-head) { display: flex; justify-content: space-between; align-items: center; gap: 8px; } .root :global(.future-v2-mini-item span) { color: var(--text-muted); font-size: 11px; } .root :global(.future-v2-mini-item strong) { color: var(--text-primary); font-size: 23px; line-height: 1.15; font-weight: 700; } .root :global(.future-v2-signal-tag) { font-style: normal; font-size: 10px; font-weight: 700; line-height: 1; padding: 5px 8px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); color: var(--text-secondary); } .root :global(.future-v2-signal-tag.cyan) { color: #67e8f9; border-color: rgba(34, 211, 238, 0.22); background: rgba(34, 211, 238, 0.08); } .root :global(.future-v2-signal-tag.blue) { color: #93c5fd; border-color: rgba(96, 165, 250, 0.22); background: rgba(96, 165, 250, 0.08); } .root :global(.future-v2-signal-tag.amber) { color: #fbbf24; border-color: rgba(251, 191, 36, 0.22); background: rgba(251, 191, 36, 0.08); } .root :global(.future-v2-signal-meter) { position: relative; height: 7px; border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.06); } .root :global(.future-v2-signal-fill) { height: 100%; border-radius: inherit; background: linear-gradient( 90deg, rgba(203, 213, 225, 0.25) 0%, rgba(255, 255, 255, 0.32) 100% ); } .root :global(.future-v2-signal-fill.cyan) { background: linear-gradient(90deg, #155e75 0%, #22d3ee 100%); } .root :global(.future-v2-signal-fill.blue) { background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%); } .root :global(.future-v2-signal-fill.amber) { background: linear-gradient(90deg, #b45309 0%, #f59e0b 100%); } .root :global(.future-v2-pace-card) { background: radial-gradient( circle at top right, rgba(34, 211, 238, 0.12) 0%, rgba(15, 23, 42, 0) 42% ), linear-gradient( 180deg, rgba(8, 15, 28, 0.96) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.future-v2-pace-head) { margin-top: 12px; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; } .root :global(.future-v2-pace-kicker) { color: var(--text-muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; } .root :global(.future-v2-pace-delta) { margin-top: 10px; font-size: 34px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; } .root :global(.future-v2-pace-delta.warm) { color: #fbbf24; } .root :global(.future-v2-pace-delta.cold) { color: #67e8f9; } .root :global(.future-v2-pace-delta.neutral) { color: #e2e8f0; } .root :global(.future-v2-pace-summary) { margin-top: 8px; color: var(--text-secondary); font-size: 12px; line-height: 1.55; } .root :global(.future-v2-pace-signal-grid) { margin-top: 12px; display: grid; gap: 10px; } .root :global(.future-v2-pace-signal-card) { border-radius: 10px; border: 1px solid var(--border-subtle); background: rgba(255, 255, 255, 0.025); padding: 10px; display: grid; gap: 8px; } .root :global(.future-v2-pace-signal-note) { color: var(--text-secondary); font-size: 12px; line-height: 1.5; } .root :global(.future-v2-pace-meter) { position: relative; height: 10px; margin-top: 12px; border-radius: 999px; overflow: hidden; background: linear-gradient( 90deg, rgba(34, 211, 238, 0.12) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.06) 54%, rgba(251, 191, 36, 0.12) 100% ); } .root :global(.future-v2-pace-meter-midline) { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(255, 255, 255, 0.2); transform: translateX(-50%); z-index: 1; } .root :global(.future-v2-pace-meter-fill) { position: absolute; top: 0; left: var(--pace-left, 46%); width: var(--pace-width, 8%); bottom: 0; border-radius: inherit; } .root :global(.future-v2-pace-meter-fill.warm) { background: linear-gradient(90deg, #b45309 0%, #fbbf24 100%); } .root :global(.future-v2-pace-meter-fill.cold) { background: linear-gradient(90deg, #0f766e 0%, #67e8f9 100%); } .root :global(.future-v2-pace-meter-fill.neutral) { background: linear-gradient(90deg, #475569 0%, #cbd5e1 100%); } .root :global(.intraday-scene-shell) { margin-top: 12px; margin-bottom: 10px; border-radius: 14px; border: 1px solid rgba(99, 102, 241, 0.14); background: radial-gradient( circle at 50% 18%, rgba(34, 211, 238, 0.14) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.015) 100% ); overflow: hidden; } .root :global(.intraday-scene-frame) { height: 196px; } .root :global(.intraday-scene-frame canvas) { width: 100%; height: 100%; display: block; } .root :global(.intraday-scene-legend) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 10px 12px 12px; border-top: 1px solid rgba(255, 255, 255, 0.06); background: rgba(2, 6, 23, 0.18); } .root :global(.intraday-scene-chip) { display: flex; align-items: flex-start; gap: 8px; min-width: 0; } .root :global(.intraday-scene-chip-dot) { width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; box-shadow: 0 0 10px currentColor; flex: 0 0 auto; } .root :global(.intraday-scene-chip-copy) { min-width: 0; display: grid; gap: 2px; } .root :global(.intraday-scene-chip-copy strong) { color: var(--text-primary); font-size: 11px; font-weight: 700; } .root :global(.intraday-scene-chip-copy span) { color: var(--text-secondary); font-size: 11px; line-height: 1.35; } .root :global(.future-v2-card-title) { margin: 0; color: var(--text-primary); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; } .root :global(.future-v2-stack) { margin-top: 14px; display: grid; gap: 12px; } .root :global(.future-v2-subpanel) { border: 1px solid var(--border-subtle); border-radius: 12px; background: rgba(255, 255, 255, 0.025); padding: 12px; } .root :global(.future-v2-subpanel-title) { margin: 0; color: var(--text-primary); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; } .root :global(.future-v2-market-v3) { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; position: relative; } .root :global(.future-v2-market-card) { background: radial-gradient( circle at top right, rgba(34, 197, 94, 0.08) 0%, rgba(15, 23, 42, 0) 40% ), linear-gradient( 180deg, rgba(7, 16, 26, 0.96) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.market-layer-loading-overlay) { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(2px); z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 8px; color: var(--accent-cyan); font-size: 13px; font-weight: 500; } .root :global(.market-sub-title) { color: var(--text-secondary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; font-weight: 600; } .root :global(.market-layer-target) { background: rgba(34, 211, 238, 0.04); border: 1px solid rgba(34, 211, 238, 0.15); border-radius: 8px; padding: 12px; } .root :global(.market-target-header) { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 13px; color: var(--text-secondary); } .root :global(.market-target-bucket) { font-size: 16px; color: var(--text-primary); font-weight: 700; } .root :global(.market-edge-box) { background: rgba(15, 23, 42, 0.4); border-radius: 6px; padding: 10px; } .root :global(.market-edge-header) { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 12px; color: var(--text-primary); font-weight: 600; } .root :global(.market-edge-val) { font-size: 15px; font-weight: 700; } .root :global(.market-edge-val.positive) { color: var(--accent-green); } .root :global(.market-edge-val.negative) { color: var(--text-secondary); } .root :global(.market-edge-compare) { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 8px; } .root :global(.edge-stat) { display: flex; flex-direction: column; gap: 2px; } .root :global(.edge-label) { font-size: 10px; color: var(--text-muted); } .root :global(.edge-value) { font-size: 13px; color: var(--text-secondary); font-weight: 600; } .root :global(.market-layer-book), .root :global(.market-layer-context) { padding: 0 4px; } .root :global(.market-book-row), .root :global(.market-context-row) { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 6px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.05); } .root :global(.market-book-row:last-child), .root :global(.market-context-row:last-child) { border-bottom: none; } .root :global(.book-label), .root :global(.market-context-row span) { color: var(--text-secondary); } .root :global(.book-quote strong), .root :global(.market-context-row strong) { color: var(--text-primary); font-weight: 600; } .root :global(.book-quote span) { color: var(--text-muted); font-size: 11px; } .root :global(.book-spread) { color: var(--text-muted); font-size: 11px; } .root :global(.mt-3) { margin-top: 12px; } .root :global(.future-v2-market-signal) { margin-top: 10px; padding: 8px 10px; border-radius: 10px; background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.22); color: var(--accent-cyan); font-size: 12px; font-weight: 600; } .root :global(.future-v2-main-chart) { min-height: 340px; } .root :global(.future-v2-chart-thresholds) { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; } .root :global(.future-v2-chart-thresholds span) { min-height: 26px; display: inline-flex; align-items: center; padding: 5px 8px; border: 1px solid rgba(34, 211, 238, 0.16); border-radius: 8px; background: rgba(8, 47, 73, 0.24); color: #cbd5e1; font-size: 12px; line-height: 1.35; } .root :global(.future-v2-meteorology-grid) { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 0.9fr); gap: 12px; } .root :global(.future-v2-evidence-list) { display: grid; gap: 8px; } .root :global(.future-v2-evidence-row) { padding: 10px; border: 1px solid rgba(148, 163, 184, 0.14); border-left-width: 3px; border-radius: 8px; background: rgba(15, 23, 42, 0.5); } .root :global(.future-v2-evidence-row.cyan) { border-left-color: #22d3ee; } .root :global(.future-v2-evidence-row.amber) { border-left-color: #f59e0b; } .root :global(.future-v2-evidence-row.blue) { border-left-color: #60a5fa; } .root :global(.future-v2-evidence-head) { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; } .root :global(.future-v2-evidence-head strong) { color: #f8fafc; font-size: 13px; line-height: 1.35; } .root :global(.future-v2-evidence-head span) { color: var(--text-muted); font-size: 11px; line-height: 1.35; text-align: right; } .root :global(.future-v2-evidence-row p) { margin: 7px 0 0; color: var(--text-secondary); font-size: 12px; line-height: 1.55; } .root :global(.future-v2-rule-list) { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; } .root :global(.future-v2-rule-list li) { position: relative; padding-left: 16px; color: var(--text-secondary); font-size: 12px; line-height: 1.55; } .root :global(.future-v2-rule-list li::before) { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 999px; background: #22d3ee; } .root :global(.future-v2-rule-panel:nth-child(2) .future-v2-rule-list li::before) { background: #f59e0b; } .root :global(.future-v2-model-note) { margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(148, 163, 184, 0.14); color: var(--text-muted); font-size: 12px; line-height: 1.55; } .root :global(.future-modal-section) { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 14px; } .root :global(.future-modal-section h3) { margin: 0 0 14px; font-size: 14px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; } .root :global(.section-inline-icon) { display: inline-flex; width: 16px; height: 16px; align-items: center; justify-content: center; color: var(--accent-cyan); flex: 0 0 16px; } .root :global(.section-inline-icon svg) { width: 16px; height: 16px; } .root :global(.future-modal-grid) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } .root :global(.future-chart-wrapper) { height: 220px; } .root :global(.future-prob-bars .prob-bar-fill) { min-width: 56px; } .root :global(.future-trend-grid) { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } .root :global(.future-trend-card) { border: 1px solid var(--border-subtle); border-radius: 12px; padding: 12px; background: rgba(255, 255, 255, 0.025); } .root :global(.future-trend-label) { display: block; color: var(--text-muted); font-size: 11px; margin-bottom: 6px; } .root :global(.future-trend-value) { display: block; color: var(--text-primary); font-size: 17px; font-weight: 700; } .root :global(.future-trend-meter) { position: relative; height: 8px; margin-top: 10px; border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.06); } .root :global(.future-trend-meter.center) { background: linear-gradient( 90deg, rgba(56, 189, 248, 0.1) 0%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.05) 52%, rgba(245, 158, 11, 0.1) 100% ); } .root :global(.future-trend-meter-midline) { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(255, 255, 255, 0.18); transform: translateX(-50%); z-index: 1; } .root :global(.future-trend-meter-fill) { position: absolute; top: 0; left: 0; bottom: 0; border-radius: inherit; background: linear-gradient(90deg, #334155 0%, #94a3b8 100%); } .root :global(.future-trend-meter-fill.warm) { background: linear-gradient(90deg, #b45309 0%, #f59e0b 100%); } .root :global(.future-trend-meter-fill.cold) { background: linear-gradient(90deg, #0f766e 0%, #22d3ee 100%); } .root :global(.future-trend-note) { margin-top: 6px; color: var(--text-secondary); font-size: 12px; line-height: 1.45; } .root :global(.future-trend-summary-muted) { color: var(--text-muted); border: 1px dashed rgba(148, 163, 184, 0.18); background: rgba(255, 255, 255, 0.018); } .root :global(.future-trend-card-empty) { background: linear-gradient( 180deg, rgba(148, 163, 184, 0.05) 0%, rgba(255, 255, 255, 0.02) 100% ); } .root :global(.future-subsection-title) { color: var(--text-primary); font-size: 0.95rem; font-weight: 700; margin-top: 18px; } .root :global(.future-trend-value.warm) { color: #34d399; } .root :global(.future-trend-value.cold) { color: #f59e0b; } .root :global(.future-text-block) { color: var(--text-secondary); font-size: 13px; line-height: 1.7; } .root :global(.future-text-block strong) { color: var(--text-primary); } .root :global(.future-front-score) { display: grid; gap: 12px; } .root :global(.future-front-bar) { position: relative; height: 10px; border-radius: 999px; background: linear-gradient( 90deg, rgba(56, 189, 248, 0.4) 0%, rgba(56, 189, 248, 0.4) 30%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.06) 55%, rgba(245, 158, 11, 0.4) 70%, rgba(245, 158, 11, 0.4) 100% ); overflow: hidden; } .root :global(.future-front-bar::after) { content: ""; position: absolute; top: 50%; left: var(--score-position, 50%); width: 14px; height: 14px; border-radius: 999px; background: var(--text-primary); transform: translate(-50%, -50%); box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15); z-index: 2; transition: left 0.5s ease; } .root :global(.future-front-meta) { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text-secondary); } .root :global(.future-front-pill) { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border-subtle); background: rgba(255, 255, 255, 0.03); } @media (max-width: 960px) { .root :global(.future-v2-meteorology-brief), .root :global(.future-v2-meteorology-grid) { grid-template-columns: 1fr; } .root :global(.future-v2-meteorology-paths) { grid-template-columns: repeat(3, minmax(0, 1fr)); } .root :global(.future-v2-decision-rail) { grid-template-columns: 1fr; } .root :global(.future-v2-decision-grid) { grid-template-columns: repeat(4, minmax(0, 1fr)); } .root :global(.future-v2-layout) { grid-template-columns: 1fr; } .root :global(.future-v2-mini-item strong) { font-size: 18px; } .root :global(.future-v2-daylight-head) { flex-direction: column; align-items: flex-start; } .root :global(.future-modal-grid), .root :global(.future-trend-grid) { grid-template-columns: 1fr; } } @media (max-width: 640px) { .root :global(.future-modal-body) { gap: 12px; padding-right: 0; } .root :global(.future-v2-meteorology-brief) { padding: 12px; } .root :global(.future-v2-meteorology-paths) { grid-template-columns: 1fr; } .root :global(.future-v2-anchor-row) { align-items: flex-start; flex-direction: column; } .root :global(.future-v2-decision-grid) { grid-template-columns: repeat(2, minmax(0, 1fr)); } .root :global(.future-v2-meteorology-copy h3) { font-size: 16px; } .root :global(.future-v2-card), .root :global(.future-modal-section) { border-radius: 12px; padding: 12px; } .root :global(.future-v2-hero-main) { align-items: flex-start; gap: 12px; } .root :global(.future-v2-hero-temp) { font-size: 44px; } .root :global(.future-v2-hero-divider) { height: 44px; } .root :global(.future-v2-hero-obs) { font-size: 18px; } .root :global(.future-v2-mini-grid) { grid-template-columns: 1fr; } .root :global(.future-v2-mini-item strong) { font-size: 20px; } .root :global(.future-v2-signal-head) { flex-direction: column; align-items: flex-start; } .root :global(.future-v2-main-chart) { min-height: 280px; } .root :global(.future-chart-wrapper) { height: 190px; } .root :global(.future-trend-card) { padding: 10px; } .root :global(.future-v2-subpanel) { padding: 10px; } .root :global(.intraday-scene-frame) { height: 174px; } .root :global(.intraday-scene-legend) { grid-template-columns: 1fr; } .root :global(.future-trend-value) { font-size: 16px; } .root :global(.future-trend-note), .root :global(.future-text-block) { font-size: 12px; line-height: 1.6; } .root :global(.future-subsection-title) { font-size: 0.9rem; margin-top: 14px; } .root :global(.future-front-meta) { gap: 8px; } .root :global(.future-front-pill) { width: 100%; justify-content: center; } .root :global(.detail-grid) { grid-template-columns: 1fr; } .root :global(.detail-mini-chart) { height: 170px; } .root :global(.detail-source-link) { padding: 10px 12px; align-items: flex-start; flex-direction: column; } .root :global(.detail-source-label) { text-align: left; } } @media (max-width: 1200px) { .root :global(.future-trend-grid) { grid-template-columns: repeat(2, minmax(0, 1fr)); } } .root :global(.guide-grid) { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; padding: 4px; } .root :global(.guide-card) { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 16px; transition: var(--transition); } .root :global(.guide-card:hover) { background: rgba(255, 255, 255, 0.05); border-color: var(--border-glass); } .root :global(.guide-card h3) { font-size: 15px; font-weight: 700; color: var(--accent-cyan); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; } .root :global(.guide-card p) { font-size: 13px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 0; } .root :global(.guide-card b) { color: var(--text-primary); } .root :global(.guide-footer) { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border-subtle); text-align: center; font-size: 11px; color: var(--text-muted); } .root :global(.detail-grid) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .root :global(.detail-card) { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 12px; } .root :global(.detail-source-list) { display: grid; grid-template-columns: 1fr; gap: 10px; } .root :global(.detail-source-note) { margin: 8px 0 12px; color: var(--text-muted); font-size: 12px; line-height: 1.6; } .root :global(.detail-source-link) { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border-subtle); background: rgba(255, 255, 255, 0.03); color: var(--text-main); text-decoration: none; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease; } .root :global(.detail-source-link:hover) { background: rgba(34, 211, 238, 0.08); border-color: rgba(34, 211, 238, 0.28); transform: translateY(-1px); } .root :global(.detail-source-kind) { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-cyan); text-transform: uppercase; flex-shrink: 0; } .root :global(.detail-source-label) { font-size: 13px; font-weight: 600; color: var(--text-main); text-align: right; } .root :global(.detail-label) { display: block; color: var(--text-muted); font-size: 11px; margin-bottom: 6px; } .root :global(.detail-value) { display: block; color: var(--text-primary); font-size: 14px; font-weight: 700; line-height: 1.5; word-break: break-word; } .root :global(.profile-lead) { color: var(--text-secondary); font-size: 13px; line-height: 1.7; } .root :global(.detail-mini-chart-wrap) { display: grid; gap: 8px; } .root :global(.detail-mini-chart) { position: relative; height: 190px; border: 1px solid var(--border-subtle); border-radius: 12px; background: rgba(255, 255, 255, 0.02); padding: 10px; } .root :global(.detail-mini-chart canvas) { width: 100% !important; height: 100% !important; } .root :global(.detail-mini-meta) { color: var(--text-muted); font-size: 11px; line-height: 1.55; } .root :global(.insight-list) { display: grid; gap: 10px; } .root :global(.insight-item) { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 12px; } .root :global(.insight-title) { color: var(--accent-cyan); font-size: 12px; font-weight: 700; margin-bottom: 6px; } .root :global(.insight-text) { color: var(--text-secondary); font-size: 13px; line-height: 1.65; } .root :global(.detail-scenery-card) { position: relative; min-height: 210px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-subtle); background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.78)), rgba(255, 255, 255, 0.03); } .root :global(.detail-scenery-image) { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; } .root :global(.detail-scenery-overlay) { position: relative; z-index: 1; min-height: 210px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient( 180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.86) 100% ); } .root :global(.detail-scenery-copy), .root :global(.detail-scenery-fallback) { display: flex; flex-direction: column; gap: 6px; } .root :global(.detail-scenery-fallback) { min-height: 210px; padding: 18px; justify-content: flex-end; background: radial-gradient( circle at top left, rgba(34, 211, 238, 0.12), transparent 34% ), linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96)); } .root :global(.detail-scenery-kicker) { color: rgba(226, 232, 240, 0.78); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; } .root :global(.detail-scenery-title) { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; text-shadow: 0 6px 22px rgba(2, 6, 23, 0.42); } .root :global(.detail-scenery-subtitle) { max-width: 320px; color: rgba(226, 232, 240, 0.9); font-size: 13px; line-height: 1.6; text-shadow: 0 2px 10px rgba(2, 6, 23, 0.45); } .root :global(.detail-scenery-credit) { align-self: flex-start; color: rgba(226, 232, 240, 0.9); font-size: 11px; text-decoration: none; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(2, 6, 23, 0.35); backdrop-filter: blur(10px); } .root :global(.detail-scenery-credit:hover) { border-color: rgba(34, 211, 238, 0.4); color: #fff; }