| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Post-Install Superstation Dashboard</title> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap'); |
| |
| :root { |
| --bg-color: #0f172a; |
| --glass-bg: rgba(30, 41, 59, 0.7); |
| --border-color: rgba(255, 255, 255, 0.1); |
| --primary-glow: #38bdf8; |
| --nvidia-glow: #22c55e; |
| --intel-glow: #3b82f6; |
| --text-main: #f8fafc; |
| --text-muted: #94a3b8; |
| } |
| |
| body { |
| margin: 0; |
| padding: 0; |
| font-family: 'Inter', sans-serif; |
| background: var(--bg-color); |
| background-image: |
| radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.15), transparent 25%), |
| radial-gradient(circle at 85% 30%, rgba(34, 197, 94, 0.15), transparent 25%); |
| color: var(--text-main); |
| min-height: 100vh; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| } |
| |
| .container { |
| max-width: 800px; |
| width: 90%; |
| background: var(--glass-bg); |
| backdrop-filter: blur(12px); |
| -webkit-backdrop-filter: blur(12px); |
| border: 1px solid var(--border-color); |
| border-radius: 24px; |
| padding: 40px; |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); |
| animation: fadeIn 0.8s ease-out; |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(20px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| .header { |
| text-align: center; |
| margin-bottom: 40px; |
| } |
| |
| h1 { |
| font-size: 2.5rem; |
| margin: 0; |
| background: linear-gradient(to right, #38bdf8, #818cf8); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| font-weight: 800; |
| } |
| |
| .subtitle { |
| color: var(--text-muted); |
| margin-top: 10px; |
| font-size: 1.1rem; |
| } |
| |
| .cards { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
| gap: 20px; |
| margin-bottom: 30px; |
| } |
| |
| .card { |
| background: rgba(255, 255, 255, 0.03); |
| border: 1px solid var(--border-color); |
| border-radius: 16px; |
| padding: 24px; |
| transition: all 0.3s ease; |
| position: relative; |
| overflow: hidden; |
| } |
| |
| .card:hover { |
| transform: translateY(-5px); |
| background: rgba(255, 255, 255, 0.05); |
| } |
| |
| .card.nvidia:hover { |
| border-color: var(--nvidia-glow); |
| box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); |
| } |
| |
| .card.intel:hover { |
| border-color: var(--intel-glow); |
| box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); |
| } |
| |
| .card h2 { |
| margin-top: 0; |
| font-size: 1.5rem; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| |
| .card p { |
| color: var(--text-muted); |
| line-height: 1.6; |
| margin-bottom: 24px; |
| } |
| |
| .btn { |
| display: inline-block; |
| text-decoration: none; |
| color: white; |
| font-weight: 600; |
| padding: 12px 24px; |
| border-radius: 8px; |
| transition: all 0.2s ease; |
| text-align: center; |
| width: calc(100% - 48px); |
| } |
| |
| .btn-nvidia { |
| background: linear-gradient(135deg, #16a34a, #22c55e); |
| box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4); |
| } |
| |
| .btn-nvidia:hover { |
| background: linear-gradient(135deg, #15803d, #16a34a); |
| box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6); |
| } |
| |
| .btn-intel { |
| background: linear-gradient(135deg, #2563eb, #3b82f6); |
| box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4); |
| } |
| |
| .btn-intel:hover { |
| background: linear-gradient(135deg, #1d4ed8, #2563eb); |
| box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6); |
| } |
| |
| .footer-note { |
| background: rgba(255, 255, 255, 0.02); |
| border-radius: 12px; |
| padding: 20px; |
| border: 1px dashed var(--border-color); |
| color: var(--text-muted); |
| } |
| |
| .footer-note strong { |
| color: var(--primary-glow); |
| } |
| |
| .footer-note ul { |
| margin-top: 10px; |
| padding-left: 20px; |
| } |
| .footer-note li { |
| margin-bottom: 8px; |
| } |
| </style> |
| </head> |
| <body> |
|
|
| <div class="container"> |
| <div class="header"> |
| <h1>🚀 Post-Install Command Center</h1> |
| <div class="subtitle">Fresh Windows? Install these hardware-level drivers before using your portable apps.</div> |
| </div> |
|
|
| <div class="cards"> |
| |
| <div class="card nvidia"> |
| <h2>🟢 NVIDIA Drivers</h2> |
| <p>Essential for gaming, overlays, and GPU acceleration. Click below to download the latest Game Ready drivers or the new NVIDIA App directly from the official source.</p> |
| <a href="https://www.nvidia.com/download/index.aspx" target="_blank" class="btn btn-nvidia">Download NVIDIA Drivers</a> |
| </div> |
|
|
| |
| <div class="card intel"> |
| <h2>🔵 Intel Assistant</h2> |
| <p>Required to keep your motherboard chipsets, Wi-Fi, and CPU drivers up to date. This service scans your PC automatically.</p> |
| <a href="https://www.intel.com/content/www/us/en/support/intel-driver-support-assistant.html" target="_blank" class="btn btn-intel">Download Intel Assistant</a> |
| </div> |
| </div> |
|
|
| <div class="footer-note"> |
| <strong>🛠️ Next Steps Before Playing:</strong> |
| <ul> |
| <li>Run <code>VC_redist.x64.exe</code> and <code>VC_redist.x86.exe</code> from your <b>Drivers_and_Runtimes</b> folder.</li> |
| <li>Run <code>dxwebsetup.exe</code> to update DirectX.</li> |
| <li>Once done, your <b>Portable Apps</b> (WARP, VLC, Vortex, etc.) are 100% ready to use!</li> |
| </ul> |
| </div> |
| </div> |
|
|
| </body> |
| </html> |
|
|