| |
| :root { |
| --bg-void: #02040a; |
| --bg-panel: rgba(6, 10, 22, 0.75); |
| --border-color: rgba(0, 240, 255, 0.12); |
| --border-hover: rgba(0, 240, 255, 0.3); |
| |
| --text-main: #E1E3E8; |
| --text-muted: #8c93a3; |
| |
| |
| --cyan: #00F0FF; |
| --cyan-glow: rgba(0, 240, 255, 0.45); |
| --green: #39FF14; |
| --green-glow: rgba(57, 255, 20, 0.35); |
| --yellow: #FFE600; |
| --yellow-glow: rgba(255, 230, 0, 0.35); |
| --red: #FF0055; |
| --red-glow: rgba(255, 0, 85, 0.45); |
| |
| |
| --font-display: 'Outfit', 'Space Grotesk', system-ui, sans-serif; |
| --font-body: 'Space Grotesk', system-ui, sans-serif; |
| --font-mono: 'JetBrains Mono', monospace; |
| } |
|
|
| |
| * { |
| box-sizing: border-box; |
| margin: 0; |
| padding: 0; |
| } |
|
|
| body { |
| background-color: var(--bg-void); |
| color: var(--text-main); |
| font-family: var(--font-body); |
| overflow-x: hidden; |
| min-height: 100vh; |
| display: flex; |
| flex-direction: column; |
| } |
|
|
| |
| #rain-canvas { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| z-index: 0; |
| pointer-events: none; |
| opacity: 0.45; |
| } |
|
|
| |
| header { |
| width: 100%; |
| padding: 1.5rem 2.5rem; |
| background: linear-gradient(to bottom, rgba(2, 4, 10, 0.95) 60%, transparent); |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| border-bottom: 1px solid rgba(255, 255, 255, 0.03); |
| z-index: 10; |
| position: relative; |
| } |
|
|
| .logo-container { |
| display: flex; |
| align-items: baseline; |
| gap: 10px; |
| } |
|
|
| .logo-text { |
| font-family: var(--font-display); |
| font-size: 1.8rem; |
| font-weight: 800; |
| letter-spacing: 2px; |
| background: linear-gradient(135deg, #FFF 40%, var(--cyan) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| text-shadow: 0 0 20px rgba(0, 240, 255, 0.15); |
| } |
|
|
| .logo-text .highlight { |
| font-weight: 300; |
| letter-spacing: 0px; |
| color: var(--cyan); |
| margin-left: 4px; |
| } |
|
|
| .version-tag { |
| font-family: var(--font-mono); |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| background: rgba(255, 255, 255, 0.05); |
| padding: 2px 8px; |
| border-radius: 4px; |
| border: 1px solid rgba(255, 255, 255, 0.08); |
| } |
|
|
| .system-status { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
|
|
| .status-indicator { |
| width: 8px; |
| height: 8px; |
| border-radius: 50%; |
| } |
|
|
| .status-indicator.online { |
| background-color: var(--green); |
| box-shadow: 0 0 10px var(--green-glow), 0 0 20px var(--green-glow); |
| animation: pulse-green 2s infinite; |
| } |
|
|
| .status-label { |
| font-family: var(--font-mono); |
| font-size: 0.8rem; |
| color: var(--text-muted); |
| } |
|
|
| |
| .dashboard-grid { |
| display: grid; |
| grid-template-columns: 320px 1fr 340px; |
| gap: 1.5rem; |
| padding: 1.5rem 2.5rem; |
| flex: 1; |
| z-index: 5; |
| position: relative; |
| } |
|
|
| @media (max-width: 1200px) { |
| .dashboard-grid { |
| grid-template-columns: 1fr; |
| } |
| } |
|
|
| |
| .panel { |
| background: var(--bg-panel); |
| border: 1px solid var(--border-color); |
| border-radius: 12px; |
| padding: 1.5rem; |
| backdrop-filter: blur(16px); |
| box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); |
| transition: border-color 0.3s, box-shadow 0.3s; |
| } |
|
|
| .panel:hover { |
| border-color: var(--border-hover); |
| box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.05); |
| } |
|
|
| .panel-title { |
| font-family: var(--font-display); |
| font-size: 0.95rem; |
| font-weight: 600; |
| letter-spacing: 1.5px; |
| color: var(--text-main); |
| margin-bottom: 1.2rem; |
| border-left: 3px solid var(--cyan); |
| padding-left: 8px; |
| text-transform: uppercase; |
| } |
|
|
| .panel-subtitle { |
| font-family: var(--font-display); |
| font-size: 0.85rem; |
| font-weight: 600; |
| color: var(--cyan); |
| margin-bottom: 1rem; |
| text-transform: uppercase; |
| } |
|
|
| |
| .control-group { |
| margin-bottom: 1.2rem; |
| } |
|
|
| .control-group label { |
| display: block; |
| font-size: 0.8rem; |
| color: var(--text-muted); |
| margin-bottom: 6px; |
| text-transform: uppercase; |
| font-family: var(--font-mono); |
| } |
|
|
| .form-control { |
| width: 100%; |
| background: rgba(0, 0, 0, 0.4); |
| border: 1px solid var(--border-color); |
| color: var(--text-main); |
| padding: 10px 14px; |
| border-radius: 8px; |
| outline: none; |
| font-family: var(--font-body); |
| font-size: 0.9rem; |
| transition: border-color 0.3s; |
| } |
|
|
| .form-control:focus { |
| border-color: var(--cyan); |
| } |
|
|
| .slider { |
| width: 100%; |
| -webkit-appearance: none; |
| height: 6px; |
| border-radius: 3px; |
| background: rgba(255, 255, 255, 0.1); |
| outline: none; |
| } |
|
|
| .slider::-webkit-slider-thumb { |
| -webkit-appearance: none; |
| width: 16px; |
| height: 16px; |
| border-radius: 50%; |
| background: var(--cyan); |
| box-shadow: 0 0 10px var(--cyan-glow); |
| cursor: pointer; |
| transition: transform 0.1s; |
| } |
|
|
| .slider::-webkit-slider-thumb:hover { |
| transform: scale(1.25); |
| } |
|
|
| .value-display, .override-display { |
| font-family: var(--font-mono); |
| color: var(--cyan); |
| font-weight: bold; |
| float: right; |
| } |
|
|
| .range-override-container { |
| display: flex; |
| flex-direction: column; |
| gap: 5px; |
| } |
|
|
| .divider { |
| height: 1px; |
| background: rgba(255, 255, 255, 0.05); |
| margin: 1.5rem 0; |
| } |
|
|
| |
| .action-btn { |
| width: 100%; |
| padding: 12px; |
| background: rgba(0, 240, 255, 0.06); |
| border: 1px solid var(--cyan); |
| color: var(--cyan); |
| font-family: var(--font-mono); |
| font-size: 0.90rem; |
| font-weight: bold; |
| border-radius: 8px; |
| cursor: pointer; |
| position: relative; |
| overflow: hidden; |
| transition: background 0.3s, box-shadow 0.3s; |
| } |
|
|
| .action-btn:hover { |
| background: rgba(0, 240, 255, 0.15); |
| box-shadow: 0 0 20px var(--cyan-glow); |
| } |
|
|
| |
| .map-panel { |
| display: flex; |
| flex-direction: column; |
| height: 380px; |
| margin-bottom: 1.5rem; |
| } |
|
|
| .map-container { |
| flex: 1; |
| position: relative; |
| background: rgba(0, 0, 0, 0.3); |
| border-radius: 8px; |
| overflow: hidden; |
| border: 1px solid var(--border-color); |
| } |
|
|
| #map { |
| width: 100%; |
| height: 100%; |
| background: var(--bg-void) !important; |
| } |
|
|
| |
| .leaflet-custom-marker { |
| position: relative; |
| cursor: pointer; |
| } |
|
|
| .leaflet-custom-marker .marker-pulse { |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| width: 28px; |
| height: 28px; |
| margin-left: -14px; |
| margin-top: -14px; |
| background: var(--cyan); |
| border-radius: 50%; |
| opacity: 0.15; |
| transform: scale(1); |
| animation: pulse-node 2s infinite; |
| pointer-events: none; |
| } |
|
|
| .leaflet-custom-marker .marker-core { |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| width: 12px; |
| height: 12px; |
| margin-left: -6px; |
| margin-top: -6px; |
| background: var(--cyan); |
| border: 2px solid #FFF; |
| border-radius: 50%; |
| box-shadow: 0 0 10px var(--cyan-glow); |
| transition: transform 0.2s, background 0.3s; |
| } |
|
|
| .leaflet-custom-marker .marker-label { |
| position: absolute; |
| top: -24px; |
| left: 50%; |
| transform: translateX(-50%); |
| font-family: var(--font-mono); |
| font-size: 10px; |
| font-weight: bold; |
| color: var(--text-muted); |
| background: rgba(0, 0, 0, 0.85); |
| padding: 2px 6px; |
| border-radius: 4px; |
| border: 1px solid rgba(255, 255, 255, 0.15); |
| white-space: nowrap; |
| pointer-events: none; |
| transition: color 0.3s, border-color 0.3s; |
| } |
|
|
| |
| .leaflet-custom-marker:hover .marker-core { |
| transform: scale(1.2); |
| } |
|
|
| .leaflet-custom-marker.active .marker-core { |
| transform: scale(1.3); |
| background: var(--cyan); |
| box-shadow: 0 0 15px var(--cyan), 0 0 25px var(--cyan-glow); |
| } |
|
|
| .leaflet-custom-marker.active .marker-label { |
| color: var(--cyan); |
| border-color: var(--cyan); |
| box-shadow: 0 0 10px rgba(0, 240, 255, 0.2); |
| } |
|
|
| |
| .leaflet-custom-marker.safe .marker-core { |
| background: var(--green); |
| box-shadow: 0 0 10px var(--green-glow); |
| } |
| .leaflet-custom-marker.safe .marker-pulse { |
| background: var(--green); |
| } |
|
|
| .leaflet-custom-marker.warning .marker-core { |
| background: var(--yellow); |
| box-shadow: 0 0 10px var(--yellow-glow); |
| } |
| .leaflet-custom-marker.warning .marker-pulse { |
| background: var(--yellow); |
| } |
|
|
| .leaflet-custom-marker.critical .marker-core { |
| background: var(--red); |
| box-shadow: 0 0 10px var(--red-glow); |
| } |
| .leaflet-custom-marker.critical .marker-pulse { |
| background: var(--red); |
| } |
|
|
| |
| .leaflet-bar { |
| border: 1px solid var(--border-color) !important; |
| border-radius: 8px !important; |
| overflow: hidden; |
| box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important; |
| } |
|
|
| .leaflet-bar a { |
| background-color: rgba(6, 10, 22, 0.85) !important; |
| color: var(--text-main) !important; |
| border-bottom: 1px solid var(--border-color) !important; |
| transition: background-color 0.2s, color 0.2s; |
| } |
|
|
| .leaflet-bar a:hover { |
| background-color: rgba(0, 240, 255, 0.15) !important; |
| color: var(--cyan) !important; |
| } |
|
|
| .leaflet-container { |
| background: var(--bg-void) !important; |
| } |
|
|
| |
| .stats-row { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 1.5rem; |
| } |
|
|
| .stat-card { |
| display: flex; |
| flex-direction: column; |
| justify-content: center; |
| padding: 1.2rem; |
| height: 100px; |
| } |
|
|
| .card-label { |
| font-family: var(--font-mono); |
| font-size: 0.7rem; |
| color: var(--text-muted); |
| margin-bottom: 6px; |
| text-transform: uppercase; |
| } |
|
|
| .card-value { |
| font-family: var(--font-display); |
| font-size: 1.5rem; |
| font-weight: 800; |
| color: #FFF; |
| } |
|
|
| .card-value .unit { |
| font-size: 0.85rem; |
| font-weight: 400; |
| color: var(--text-muted); |
| } |
|
|
| .status-badge { |
| display: inline-block; |
| padding: 4px 12px; |
| border-radius: 6px; |
| font-size: 0.95rem; |
| font-weight: bold; |
| text-align: center; |
| width: fit-content; |
| } |
|
|
| .status-badge.safe { |
| background: rgba(57, 255, 20, 0.08); |
| border: 1px solid var(--green); |
| color: var(--green); |
| text-shadow: 0 0 10px var(--green-glow); |
| } |
|
|
| .status-badge.warning { |
| background: rgba(255, 230, 0, 0.08); |
| border: 1px solid var(--yellow); |
| color: var(--yellow); |
| text-shadow: 0 0 10px var(--yellow-glow); |
| } |
|
|
| .status-badge.critical { |
| background: rgba(255, 0, 85, 0.08); |
| border: 1px solid var(--red); |
| color: var(--red); |
| text-shadow: 0 0 10px var(--red-glow); |
| } |
|
|
| |
| .progress-item { |
| margin-bottom: 1.2rem; |
| } |
|
|
| .progress-header { |
| display: flex; |
| justify-content: space-between; |
| font-size: 0.8rem; |
| color: var(--text-muted); |
| margin-bottom: 6px; |
| font-family: var(--font-mono); |
| } |
|
|
| .progress-bar-bg { |
| width: 100%; |
| height: 8px; |
| background: rgba(255, 255, 255, 0.05); |
| border-radius: 4px; |
| overflow: hidden; |
| } |
|
|
| .progress-bar-fill { |
| height: 100%; |
| border-radius: 4px; |
| width: 0%; |
| transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); |
| } |
|
|
| .progress-bar-fill.organic { |
| background: linear-gradient(to right, #4CAF50, #8BC34A); |
| box-shadow: 0 0 10px rgba(76, 175, 80, 0.3); |
| } |
|
|
| .progress-bar-fill.plastic { |
| background: linear-gradient(to right, var(--cyan), #00BCD4); |
| box-shadow: 0 0 10px rgba(0, 240, 255, 0.3); |
| } |
|
|
| .progress-bar-fill.paper { |
| background: linear-gradient(to right, var(--yellow), #FF9900); |
| box-shadow: 0 0 10px rgba(255, 230, 0, 0.3); |
| } |
|
|
| .progress-bar-fill.glass { |
| background: linear-gradient(to right, var(--red), #E040FB); |
| box-shadow: 0 0 10px rgba(255, 0, 85, 0.3); |
| } |
|
|
| .progress-bar-fill.textile { |
| background: linear-gradient(to right, #CC66FF, #2196F3); |
| box-shadow: 0 0 10px rgba(204, 102, 255, 0.3); |
| } |
|
|
| .progress-bar-fill.metal { |
| background: linear-gradient(to right, #E1E3E8, var(--cyan)); |
| box-shadow: 0 0 10px rgba(225, 227, 232, 0.3); |
| } |
|
|
| |
| .weather-grid { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| background: rgba(0, 0, 0, 0.25); |
| padding: 12px; |
| border-radius: 8px; |
| border: 1px solid rgba(255, 255, 255, 0.03); |
| margin-bottom: 1rem; |
| } |
|
|
| .weather-temp { |
| font-family: var(--font-display); |
| font-size: 1.2rem; |
| font-weight: 700; |
| color: #FFF; |
| } |
|
|
| .weather-label { |
| display: block; |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| } |
|
|
| .weather-details { |
| font-family: var(--font-mono); |
| font-size: 0.75rem; |
| text-align: right; |
| line-height: 1.4; |
| } |
|
|
| .weather-details .highlight { |
| color: var(--cyan); |
| } |
|
|
| .event-box { |
| padding: 10px; |
| background: rgba(255, 230, 0, 0.03); |
| border-left: 3px solid var(--yellow); |
| border-radius: 0 6px 6px 0; |
| } |
|
|
| .event-title { |
| display: block; |
| font-size: 0.75rem; |
| font-weight: bold; |
| color: var(--yellow); |
| font-family: var(--font-mono); |
| margin-bottom: 4px; |
| } |
|
|
| .event-desc { |
| font-size: 0.8rem; |
| color: var(--text-main); |
| } |
|
|
| |
| .logistics-grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 12px; |
| } |
|
|
| .log-item { |
| background: rgba(0, 0, 0, 0.2); |
| border: 1px solid rgba(255, 255, 255, 0.03); |
| border-radius: 8px; |
| padding: 10px; |
| display: flex; |
| flex-direction: column; |
| } |
|
|
| .log-label { |
| font-family: var(--font-mono); |
| font-size: 0.65rem; |
| color: var(--text-muted); |
| text-transform: uppercase; |
| margin-bottom: 4px; |
| } |
|
|
| .log-value { |
| font-size: 0.95rem; |
| font-weight: bold; |
| color: #FFF; |
| } |
|
|
| .log-value.highlight { |
| color: var(--cyan); |
| text-shadow: 0 0 10px var(--cyan-glow); |
| } |
|
|
| |
| .timeline-container { |
| margin-top: 1.5rem; |
| padding: 0 2.5rem; |
| z-index: 5; |
| position: relative; |
| } |
|
|
| .timeline-list { |
| display: flex; |
| gap: 12px; |
| overflow-x: auto; |
| padding-bottom: 10px; |
| } |
|
|
| .timeline-card { |
| min-width: 140px; |
| background: rgba(0, 0, 0, 0.4); |
| border: 1px solid var(--border-color); |
| border-radius: 8px; |
| padding: 12px; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| text-align: center; |
| transition: transform 0.2s, border-color 0.2s; |
| } |
|
|
| .timeline-card:hover { |
| transform: translateY(-4px); |
| border-color: var(--cyan); |
| } |
|
|
| .timeline-date { |
| font-family: var(--font-mono); |
| font-size: 0.7rem; |
| color: var(--text-muted); |
| margin-bottom: 6px; |
| } |
|
|
| .timeline-vol { |
| font-family: var(--font-display); |
| font-size: 1.1rem; |
| font-weight: bold; |
| color: #FFF; |
| margin-bottom: 6px; |
| } |
|
|
| .timeline-status { |
| font-size: 0.7rem; |
| padding: 2px 8px; |
| border-radius: 4px; |
| font-weight: bold; |
| } |
|
|
| .timeline-status.safe { background: rgba(57, 255, 20, 0.1); color: var(--green); } |
| .timeline-status.warning { background: rgba(255, 230, 0, 0.1); color: var(--yellow); } |
| .timeline-status.critical { background: rgba(255, 0, 85, 0.1); color: var(--red); } |
|
|
| .empty-timeline { |
| width: 100%; |
| text-align: center; |
| padding: 2rem; |
| color: var(--text-muted); |
| font-style: italic; |
| font-size: 0.9rem; |
| } |
|
|
| |
| .hourly-container { |
| margin-top: 1.5rem; |
| padding: 0 2.5rem; |
| z-index: 5; |
| position: relative; |
| margin-bottom: 2rem; |
| } |
|
|
| .hourly-grid { |
| display: grid; |
| grid-template-columns: repeat(24, 1fr); |
| gap: 4px; |
| background: rgba(0, 0, 0, 0.3); |
| padding: 10px; |
| border-radius: 8px; |
| overflow-x: auto; |
| } |
|
|
| .hourly-cell { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| gap: 4px; |
| } |
|
|
| .cell-block { |
| width: 100%; |
| height: 40px; |
| border-radius: 4px; |
| transition: opacity 0.3s; |
| } |
|
|
| .cell-block.low { background-color: rgba(57, 255, 20, 0.35); border: 1px solid var(--green); } |
| .cell-block.medium { background-color: rgba(255, 230, 0, 0.35); border: 1px solid var(--yellow); } |
| .cell-block.high { background-color: rgba(255, 0, 85, 0.35); border: 1px solid var(--red); } |
|
|
| .cell-time { |
| font-family: var(--font-mono); |
| font-size: 8px; |
| color: var(--text-muted); |
| } |
|
|
| |
| footer { |
| width: 100%; |
| padding: 1.5rem; |
| text-align: center; |
| border-top: 1px solid rgba(255, 255, 255, 0.03); |
| color: var(--text-muted); |
| font-size: 0.75rem; |
| font-family: var(--font-mono); |
| margin-top: auto; |
| } |
|
|
| |
| @keyframes pulse-green { |
| 0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4); } |
| 70% { box-shadow: 0 0 0 8px rgba(57, 255, 20, 0); } |
| 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); } |
| } |
|
|
| @keyframes pulse-node { |
| 0% { transform: scale(0.9); opacity: 0.35; } |
| 70% { transform: scale(1.6); opacity: 0; } |
| 100% { transform: scale(0.9); opacity: 0; } |
| } |
|
|
| .card-meta { |
| font-family: var(--font-mono); |
| font-size: 0.65rem; |
| color: var(--text-muted); |
| margin-top: 6px; |
| display: block; |
| text-transform: uppercase; |
| } |
|
|
| .button-row { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 10px; |
| } |
|
|
| .secondary-btn { |
| background: rgba(57, 255, 20, 0.04) !important; |
| border: 1px solid var(--green) !important; |
| color: var(--green) !important; |
| } |
|
|
| .secondary-btn:hover { |
| background: rgba(57, 255, 20, 0.12) !important; |
| box-shadow: 0 0 20px var(--green-glow) !important; |
| } |
|
|
|
|
| |
| .page-container { |
| display: none; |
| opacity: 0; |
| transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| animation: fade-in 0.4s forwards; |
| padding: 1.5rem 2.5rem; |
| flex: 1; |
| z-index: 5; |
| position: relative; |
| } |
|
|
| .page-container.active { |
| display: block; |
| opacity: 1; |
| } |
|
|
| @keyframes fade-in { |
| from { opacity: 0; transform: translateY(8px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
|
|
| |
| .nav-links { |
| display: flex; |
| gap: 1.25rem; |
| background: rgba(255, 255, 255, 0.03); |
| border: 1px solid rgba(255, 255, 255, 0.06); |
| padding: 4px; |
| border-radius: 8px; |
| } |
|
|
| .nav-btn { |
| background: transparent; |
| border: none; |
| color: var(--text-muted); |
| font-family: var(--font-display); |
| font-size: 0.85rem; |
| font-weight: 600; |
| letter-spacing: 1px; |
| padding: 8px 16px; |
| cursor: pointer; |
| border-radius: 6px; |
| transition: color 0.3s, background 0.3s, box-shadow 0.3s; |
| } |
|
|
| .nav-btn:hover { |
| color: var(--cyan); |
| background: rgba(255, 255, 255, 0.02); |
| } |
|
|
| .nav-btn.active { |
| color: var(--bg-void); |
| background: var(--cyan); |
| box-shadow: 0 0 15px var(--cyan-glow); |
| } |
|
|
| |
| .hero-section { |
| display: grid; |
| grid-template-columns: 1.2fr 0.8fr; |
| gap: 2rem; |
| align-items: center; |
| padding: 3rem 0; |
| } |
|
|
| @media (max-width: 900px) { |
| .hero-section { |
| grid-template-columns: 1fr; |
| } |
| } |
|
|
| .hero-content { |
| display: flex; |
| flex-direction: column; |
| gap: 1.5rem; |
| } |
|
|
| .hero-title { |
| font-family: var(--font-display); |
| font-size: 3rem; |
| font-weight: 800; |
| letter-spacing: 2px; |
| line-height: 1.1; |
| background: linear-gradient(135deg, #FFF 40%, var(--cyan) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| text-shadow: 0 0 30px rgba(0, 240, 255, 0.15); |
| } |
|
|
| .hero-subtitle { |
| font-size: 1.1rem; |
| color: var(--text-muted); |
| line-height: 1.6; |
| } |
|
|
| .hero-actions { |
| display: flex; |
| gap: 1rem; |
| max-width: 400px; |
| } |
|
|
| .hero-stats-panel { |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| background: rgba(6, 10, 22, 0.6) !important; |
| } |
|
|
| .hero-stat-grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 1rem; |
| } |
|
|
| .hero-stat-card { |
| background: rgba(0, 0, 0, 0.25); |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| padding: 1.2rem; |
| border-radius: 8px; |
| display: flex; |
| flex-direction: column; |
| gap: 4px; |
| } |
|
|
| .h-stat-label { |
| font-size: 0.75rem; |
| font-family: var(--font-mono); |
| color: var(--text-muted); |
| text-transform: uppercase; |
| } |
|
|
| .h-stat-value { |
| font-size: 1.8rem; |
| font-family: var(--font-display); |
| font-weight: 800; |
| color: #FFF; |
| } |
|
|
| |
| .features-section { |
| padding: 2rem 0; |
| } |
|
|
| .section-title { |
| font-family: var(--font-display); |
| font-size: 1.4rem; |
| font-weight: 700; |
| letter-spacing: 1.5px; |
| margin-bottom: 2rem; |
| color: #FFF; |
| border-left: 3px solid var(--cyan); |
| padding-left: 10px; |
| } |
|
|
| .features-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); |
| gap: 1.5rem; |
| } |
|
|
| .feature-card { |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| transition: transform 0.3s; |
| } |
|
|
| .feature-card:hover { |
| transform: translateY(-4px); |
| } |
|
|
| .feature-icon { |
| font-size: 2rem; |
| font-weight: 800; |
| color: rgba(0, 240, 255, 0.25); |
| text-shadow: 0 0 10px rgba(0, 240, 255, 0.05); |
| } |
|
|
| .feature-name { |
| font-family: var(--font-display); |
| font-size: 1.05rem; |
| font-weight: 600; |
| color: var(--cyan); |
| } |
|
|
| .feature-desc { |
| font-size: 0.85rem; |
| color: var(--text-muted); |
| line-height: 1.6; |
| } |
|
|
| |
| .page-header-section { |
| padding: 2rem 0 1rem 0; |
| } |
|
|
| .section-subtitle { |
| font-size: 0.95rem; |
| color: var(--text-muted); |
| margin-top: 6px; |
| } |
|
|
| |
| .news-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); |
| gap: 1.5rem; |
| padding: 1.5rem 0; |
| } |
|
|
| .news-card { |
| background: var(--bg-panel); |
| border: 1px solid var(--border-color); |
| border-radius: 12px; |
| padding: 1.5rem; |
| backdrop-filter: blur(16px); |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; |
| } |
|
|
| .news-card:hover { |
| transform: translateY(-3px); |
| border-color: var(--border-hover); |
| box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.05); |
| } |
|
|
| .news-card-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
|
|
| .news-source { |
| font-family: var(--font-mono); |
| font-size: 0.75rem; |
| background: rgba(0, 240, 255, 0.08); |
| color: var(--cyan); |
| padding: 2px 8px; |
| border-radius: 4px; |
| border: 1px solid rgba(0, 240, 255, 0.2); |
| } |
|
|
| .news-date { |
| font-family: var(--font-mono); |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| } |
|
|
| .news-title { |
| font-family: var(--font-display); |
| font-size: 1.1rem; |
| font-weight: 600; |
| color: #FFF; |
| line-height: 1.4; |
| } |
|
|
| .news-summary { |
| font-size: 0.85rem; |
| color: var(--text-muted); |
| line-height: 1.6; |
| } |
|
|
| .news-link { |
| margin-top: auto; |
| display: inline-flex; |
| align-items: center; |
| color: var(--cyan); |
| text-decoration: none; |
| font-family: var(--font-mono); |
| font-size: 0.8rem; |
| font-weight: bold; |
| gap: 6px; |
| transition: gap 0.2s; |
| } |
|
|
| .news-link:hover { |
| gap: 10px; |
| } |
|
|
| .loading-news, .loading-alerts { |
| grid-column: 1 / -1; |
| text-align: center; |
| padding: 3rem; |
| color: var(--text-muted); |
| font-family: var(--font-mono); |
| font-size: 0.9rem; |
| } |
|
|
| |
| .alerts-summary { |
| margin-top: 1.5rem; |
| } |
|
|
| .alerts-list-group { |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| } |
|
|
| .alert-row { |
| display: grid; |
| grid-template-columns: 120px 180px 100px 1fr; |
| gap: 1rem; |
| align-items: center; |
| background: rgba(0, 0, 0, 0.2); |
| border: 1px solid rgba(255, 255, 255, 0.04); |
| padding: 1rem 1.5rem; |
| border-radius: 8px; |
| transition: background 0.3s; |
| } |
|
|
| @media (max-width: 768px) { |
| .alert-row { |
| grid-template-columns: 1fr 1fr; |
| } |
| } |
|
|
| .alert-row:hover { |
| background: rgba(255, 255, 255, 0.02); |
| } |
|
|
| .alert-date { |
| font-family: var(--font-mono); |
| font-size: 0.85rem; |
| color: var(--text-muted); |
| } |
|
|
| .alert-location { |
| font-family: var(--font-display); |
| font-weight: 600; |
| color: #FFF; |
| } |
|
|
| .alert-badge { |
| font-family: var(--font-mono); |
| font-size: 0.75rem; |
| font-weight: bold; |
| padding: 3px 8px; |
| border-radius: 4px; |
| text-align: center; |
| } |
|
|
| .alert-badge.critical { |
| background: rgba(255, 0, 85, 0.12); |
| color: var(--red); |
| border: 1px solid var(--red); |
| box-shadow: 0 0 10px rgba(255, 0, 85, 0.1); |
| } |
|
|
| .alert-badge.warning { |
| background: rgba(255, 230, 0, 0.12); |
| color: var(--yellow); |
| border: 1px solid var(--yellow); |
| box-shadow: 0 0 10px rgba(255, 230, 0, 0.1); |
| } |
|
|
| .alert-desc { |
| font-size: 0.85rem; |
| color: var(--text-muted); |
| } |
|
|
|
|
|
|