File size: 3,144 Bytes
9df13e6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <title>Road Thent OS - Boot Sequence</title>
    <style>
        body {
            margin: 0;
            background: #0D001A; /* Roxo Profundo Obsidian */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
            font-family: 'Segoe UI', sans-serif;
        }

        /* Container das Luzes */
        .boot-container {
            position: relative;
            width: 200px;
            height: 200px;
        }

        /* As 4 Luzes Estilo Windows 7 */
        .light {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            filter: blur(15px);
            opacity: 0;
            animation: win7boot 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .l1 { background: #00FFFF; top: 0; left: 80px; animation-delay: 0.2s; } /* Cyan */
        .l2 { background: #BF00FF; top: 80px; left: 160px; animation-delay: 0.4s; } /* Neon Purple */
        .l3 { background: #4B0082; top: 160px; left: 80px; animation-delay: 0.6s; } /* Indigo */
        .l4 { background: #FFFFFF; top: 80px; left: 0; animation-delay: 0.8s; } /* White */

        /* Animação das Luzes se fundindo */
        @keyframes win7boot {
            0% { transform: scale(0) translate(0, 0); opacity: 0; }
            50% { opacity: 0.8; }
            100% { 
                transform: scale(1.2) translate(var(--tx), var(--ty)); 
                opacity: 0; 
                filter: blur(30px);
            }
        }

        /* O Logo Cubic 2.5D que surge depois */
        .cubic-logo {
            position: absolute;
            width: 80px;
            height: 80px;
            background: #BF00FF;
            transform: rotateX(45deg) rotateZ(45deg); /* Efeito 2.5D Isométrico */
            box-shadow: 20px 20px 40px rgba(0,0,0,0.5), -1px -1px 0px white inset;
            opacity: 0;
            animation: showLogo 1.5s 3s forwards;
        }

        @keyframes showLogo {
            from { opacity: 0; transform: rotateX(45deg) rotateZ(45deg) scale(0.5); }
            to { opacity: 1; transform: rotateX(45deg) rotateZ(45deg) scale(1); }
        }

        .text-load {
            position: absolute;
            bottom: -60px;
            width: 100%;
            text-align: center;
            color: white;
            letter-spacing: 5px;
            font-weight: 200;
            opacity: 0;
            animation: fadeIn 2s 3.5s forwards;
        }

        @keyframes fadeIn { to { opacity: 0.5; } }
    </style>
</head>
<body>

    <div class="boot-container">
        <div class="light l1" style="--tx: 0px; --ty: 80px;"></div>
        <div class="light l2" style="--tx: -80px; --ty: 0px;"></div>
        <div class="light l3" style="--tx: 0px; --ty: -80px;"></div>
        <div class="light l4" style="--tx: 80px; --ty: 0px;"></div>

        <div class="cubic-logo"></div>
        
        <div class="text-load">INICIANDO ROAD THENT OS...</div>
    </div>

</body>
</html>