File size: 2,883 Bytes
e762863
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Futuristic Stock Bot</title>
    <link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
    <style>
        body {
            padding: 2rem;
            font-family: "Orbitron", "Arial", sans-serif;
            background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
            color: #e0e0e0;
            margin: 0;
        }

        h1 {
            font-size: 24px;
            margin-top: 0;
            color: #00eaff;
            text-transform: uppercase;
            text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff;
            text-align: center;
        }

        p {
            color: #b0bec5;
            font-size: 16px;
            margin-bottom: 10px;
            margin-top: 5px;
            line-height: 1.6;
        }

        .card {
            max-width: 620px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 16px;
            background: linear-gradient(145deg, #112233, #334455);
            box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.1);
            text-align: center;
        }

        .card:hover {
            box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7), inset 0 0 20px rgba(0, 255, 255, 0.2);
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .card p:last-child {
            margin-bottom: 0;
        }

        button {
            display: block;
            margin: 20px auto 0;
            padding: 12px 24px;
            font-size: 14px;
            color: #00eaff;
            background: transparent;
            border: 2px solid #00eaff;
            border-radius: 8px;
            cursor: pointer;
            text-transform: uppercase;
            box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        button:hover {
            background: #00eaff;
            color: #0f2027;
            box-shadow: 0 0 20px #00eaff, 0 0 30px rgba(0, 255, 255, 0.7);
        }

        iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 16px;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2);
        }
    </style>
</head>
<body>
    <h1>Futuristic Stock Bot</h1>
    <div class="card">
        <p>Welcome to the Futuristic Stock Bot interface.</p>
        <p>Stay ahead with real-time stock updates and futuristic design!</p>
        <button>Explore Stocks</button>
        <iframe src="https://fnkffp.vercel.app/" allowfullscreen></iframe>
    </div>
</body>
</html>