File size: 6,673 Bytes
8739cbb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!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">
            <!-- NVIDIA Card -->
            <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>

            <!-- Intel Card -->
            <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>