1142 lines
24 KiB
CSS
1142 lines
24 KiB
CSS
@font-face {
|
|
font-family: "StreamSter";
|
|
src: url(./fonts/Streamster.ttf);
|
|
}
|
|
@font-face {
|
|
font-family: "VCR";
|
|
src: url(./fonts/VCR_OSD_MONO_1.001.ttf);
|
|
}
|
|
#app,
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
background: #fafafa;
|
|
font-family: "VCR", arial, sans-serif;
|
|
font-weight: 400;
|
|
color: #444;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
background: #f5b7f0;
|
|
background-image: url("./images/rainbowprism.gif");
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.music-player {
|
|
width: 350px;
|
|
height: 500px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -250px 0 0 -175px;
|
|
overflow: hidden;
|
|
border-radius: 8px;
|
|
border: 3px solid #ff2975;
|
|
box-shadow:
|
|
0 0 30px rgba(255, 41, 117, 0.6),
|
|
0 0 60px rgba(255, 41, 117, 0.3),
|
|
inset 0 0 20px rgba(255, 41, 117, 0.1),
|
|
0 20px 60px rgba(0, 0, 0, 0.8),
|
|
0 10px 30px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
inset 1px 0 0 rgba(255, 255, 255, 0.05),
|
|
inset -1px 0 0 rgba(0, 0, 0, 0.3);
|
|
text-align: center;
|
|
background: linear-gradient(135deg, #1a0033 0%, #0a0015 50%, #000008 100%);
|
|
background-position: 50% 50%;
|
|
background-repeat: no-repeat;
|
|
z-index: 999;
|
|
transform: perspective(1000px) rotateX(5deg) rotateY(-2deg);
|
|
transform-style: preserve-3d;
|
|
animation: playerFloat 6s ease-in-out infinite, playerPulse 4s ease-in-out infinite alternate;
|
|
}
|
|
|
|
.music-player .color-overlay {
|
|
background: rgba(26, 0, 51, 0.6);
|
|
width: 350px;
|
|
height: 500px;
|
|
position: absolute;
|
|
z-index: 10;
|
|
top: 0;
|
|
left: 0;
|
|
transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
|
|
box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
.music-player .gradient-overlay {
|
|
background-image: linear-gradient(
|
|
rgba(255, 41, 117, 0) 0%,
|
|
rgba(255, 41, 117, 0.1) 50%,
|
|
rgba(0, 255, 255, 0.1) 100%
|
|
);
|
|
width: 350px;
|
|
height: 500px;
|
|
position: absolute;
|
|
top: 350px;
|
|
left: 0;
|
|
z-index: 15;
|
|
}
|
|
|
|
.music-player:hover .color-overlay {
|
|
background: rgba(26, 0, 51, 0.8);
|
|
}
|
|
|
|
.title-content {
|
|
text-align: center;
|
|
margin: 130px 0 0 0;
|
|
position: absolute;
|
|
z-index: 20;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
h3#track-name {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
letter-spacing: 2px;
|
|
color: #ff2975;
|
|
text-shadow: 0 0 15px rgba(255, 41, 117, 0.8);
|
|
font-family: "VCR", sans-serif;
|
|
margin-bottom: 0;
|
|
background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
|
|
border: 1px solid rgba(255, 41, 117, 0.5);
|
|
border-radius: 6px;
|
|
padding: 12px;
|
|
backdrop-filter: blur(5px);
|
|
box-shadow:
|
|
0 4px 15px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
0 0 20px rgba(255, 41, 117, 0.3);
|
|
transform: translateZ(10px);
|
|
animation: trackNameFloat 8s ease-in-out infinite, trackNameGlow 3s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes trackNameFloat {
|
|
0%, 100% {
|
|
transform: translateZ(10px) rotateY(0deg) translateY(0px);
|
|
}
|
|
25% {
|
|
transform: translateZ(15px) rotateY(1deg) translateY(-2px);
|
|
}
|
|
50% {
|
|
transform: translateZ(12px) rotateY(-1deg) translateY(1px);
|
|
}
|
|
75% {
|
|
transform: translateZ(18px) rotateY(0.5deg) translateY(-1px);
|
|
}
|
|
}
|
|
|
|
@keyframes trackNameGlow {
|
|
0% {
|
|
text-shadow: 0 0 15px rgba(255, 41, 117, 0.8);
|
|
box-shadow:
|
|
0 4px 15px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
0 0 20px rgba(255, 41, 117, 0.3);
|
|
}
|
|
100% {
|
|
text-shadow: 0 0 25px rgba(255, 41, 117, 1);
|
|
box-shadow:
|
|
0 6px 20px rgba(0, 0, 0, 0.7),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.15),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.6),
|
|
0 0 30px rgba(255, 41, 117, 0.5);
|
|
}
|
|
}
|
|
|
|
hr {
|
|
width: 60px;
|
|
height: 2px;
|
|
margin: 20px auto;
|
|
border: 0;
|
|
background: linear-gradient(90deg, #ff2975 0%, #00ffff 100%);
|
|
box-shadow:
|
|
0 0 10px rgba(255, 41, 117, 0.6),
|
|
0 2px 4px rgba(0, 0, 0, 0.4),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
transform: translateZ(8px);
|
|
animation: hrPulse 3s ease-in-out infinite, hrRotate 12s linear infinite;
|
|
}
|
|
|
|
.intro {
|
|
width: 170px;
|
|
margin: 0 auto;
|
|
color: #00ffff;
|
|
text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
|
|
font-family: "VCR", serif;
|
|
font-size: 13px;
|
|
font-style: italic;
|
|
line-height: 18px;
|
|
transform: translateZ(6px);
|
|
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
|
|
animation: introFloat 5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes introFloat {
|
|
0%, 100% {
|
|
transform: translateZ(6px) translateY(0px);
|
|
text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
|
|
}
|
|
25% {
|
|
transform: translateZ(8px) translateY(-1px);
|
|
text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
|
|
}
|
|
50% {
|
|
transform: translateZ(4px) translateY(1px);
|
|
text-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
|
|
}
|
|
75% {
|
|
transform: translateZ(7px) translateY(-0.5px);
|
|
text-shadow: 0 0 9px rgba(0, 255, 255, 0.65);
|
|
}
|
|
}
|
|
|
|
dialog {
|
|
text-align: center;
|
|
padding: 50px;
|
|
z-index: 999;
|
|
border: 1px solid #000000;
|
|
margin-left: 15px;
|
|
width: 50%;
|
|
background: #000000;
|
|
color: #ffffff;
|
|
}
|
|
|
|
dialog button {
|
|
background: #ffffff;
|
|
border: none;
|
|
padding: 3px;
|
|
}
|
|
|
|
dialog::backdrop {
|
|
background: repeating-linear-gradient(
|
|
45deg,
|
|
rgba(0, 0, 0, 0.2),
|
|
rgba(0, 0, 0, 0.2) 1px,
|
|
rgba(0, 0, 0, 0.3) 1px,
|
|
rgba(0, 0, 0, 0.3) 20px
|
|
);
|
|
backdrop-filter: blur(3px);
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all 0.3s ease;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.modal.open {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.modal-bg {
|
|
position: absolute;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
backdrop-filter: blur(2px);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.modal-container {
|
|
border-radius: 8px;
|
|
background: linear-gradient(145deg, #1a0033 0%, #0a0015 50%, #000008 100%);
|
|
border: 2px solid #ff2975;
|
|
box-shadow:
|
|
0 0 30px rgba(255, 41, 117, 0.5),
|
|
inset 0 0 20px rgba(255, 41, 117, 0.1),
|
|
0 20px 40px rgba(0, 0, 0, 0.8),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5);
|
|
position: relative;
|
|
padding: 30px;
|
|
color: #00ffff;
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
transform: perspective(800px) rotateX(2deg);
|
|
}
|
|
|
|
.modal-container h3 {
|
|
color: #ff2975;
|
|
text-shadow: 0 0 12px rgba(255, 41, 117, 0.8);
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 1.1em;
|
|
margin-bottom: 1em;
|
|
padding-bottom: 0.4em;
|
|
border-bottom: 1px solid rgba(255, 41, 117, 0.4);
|
|
}
|
|
|
|
.modal-container h4 {
|
|
color: #00ffff;
|
|
text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 0.9em;
|
|
margin: 0.8em 0;
|
|
}
|
|
|
|
.modal-container p {
|
|
color: #00ffff;
|
|
text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 0.9em;
|
|
margin: 0.8em 0;
|
|
}
|
|
|
|
.modal-container .controls {
|
|
color: #ff2975;
|
|
text-shadow: 0 0 8px rgba(255, 41, 117, 0.8);
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.modal-close {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 15px;
|
|
outline: none;
|
|
appearance: none;
|
|
color: #ff2975;
|
|
background: none;
|
|
border: 0px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 20px;
|
|
text-shadow: 0 0 10px rgba(255, 41, 117, 0.8);
|
|
transition: color 0.3s, text-shadow 0.3s, transform 0.2s;
|
|
width: 30px;
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.modal-close:hover {
|
|
color: #00ffff;
|
|
text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
|
|
transform: scale(1.1);
|
|
background: rgba(255, 41, 117, 0.1);
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.mt-5 {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#file-upload {
|
|
display: none;
|
|
}
|
|
|
|
.controls {
|
|
font-style: italic;
|
|
font-size: larger;
|
|
color: #ff0095;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
width: 342px;
|
|
display: flex;
|
|
color: #00ffff;
|
|
text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
|
|
z-index: 999;
|
|
justify-content: center;
|
|
height: 17px;
|
|
background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
|
|
backdrop-filter: blur(3px);
|
|
border-top: 1px solid rgba(0, 255, 255, 0.3);
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
0 -2px 8px rgba(0, 0, 0, 0.6);
|
|
transform: translateZ(2px);
|
|
animation: footerGlow 4s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes footerGlow {
|
|
0% {
|
|
border-top: 1px solid rgba(0, 255, 255, 0.3);
|
|
text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
|
|
}
|
|
100% {
|
|
border-top: 1px solid rgba(0, 255, 255, 0.6);
|
|
text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
|
|
}
|
|
}
|
|
|
|
.footer .footer-items {
|
|
font-size: 12px;
|
|
font-family: "VCR", serif;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
padding-left: 10px;
|
|
color: #00ffff;
|
|
text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
|
|
justify-content: center;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.footer .footer-items:hover {
|
|
color: #ff2975;
|
|
text-shadow: 0 0 10px rgba(255, 41, 117, 0.8);
|
|
}
|
|
|
|
.footer-items#history {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
canvas {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
.player-controls {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 12px;
|
|
background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
|
|
border-bottom: 2px solid #ff2975;
|
|
z-index: 999;
|
|
box-shadow:
|
|
0 2px 10px rgba(0, 0, 0, 0.8),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.6);
|
|
transform: translateZ(5px);
|
|
}
|
|
|
|
.control-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.buttons {
|
|
z-index: 999;
|
|
cursor: pointer;
|
|
position: relative;
|
|
user-select: none;
|
|
color: #00ffff;
|
|
text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
|
|
transition: all 0.2s ease;
|
|
padding: 6px 10px;
|
|
border: 1px solid #00ffff;
|
|
border-radius: 3px;
|
|
background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 255, 0.1));
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 32px;
|
|
min-height: 32px;
|
|
font-family: "VCR", monospace;
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.2),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
inset 1px 0 0 rgba(255, 255, 255, 0.1),
|
|
inset -1px 0 0 rgba(0, 0, 0, 0.3),
|
|
0 3px 8px rgba(0, 0, 0, 0.4),
|
|
0 1px 3px rgba(0, 0, 0, 0.3);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
transform: translateZ(3px);
|
|
animation: buttonPulse 2s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes buttonPulse {
|
|
0% {
|
|
transform: translateZ(3px) scale(1);
|
|
text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
|
|
}
|
|
100% {
|
|
transform: translateZ(5px) scale(1.02);
|
|
text-shadow: 0 0 15px rgba(0, 255, 255, 1);
|
|
}
|
|
}
|
|
|
|
.buttons:hover {
|
|
color: #ff2975;
|
|
text-shadow: 0 0 15px rgba(255, 41, 117, 1);
|
|
border-color: #ff2975;
|
|
background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(255, 41, 117, 0.2));
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.3),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
inset 1px 0 0 rgba(255, 255, 255, 0.15),
|
|
inset -1px 0 0 rgba(0, 0, 0, 0.3),
|
|
0 0 20px rgba(255, 41, 117, 0.4),
|
|
0 4px 12px rgba(0, 0, 0, 0.5);
|
|
transform: translateZ(5px) translateY(-1px);
|
|
}
|
|
|
|
.buttons:active {
|
|
transform: translateZ(1px) translateY(1px);
|
|
box-shadow:
|
|
inset 0 2px 4px rgba(0, 0, 0, 0.7),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
0 1px 3px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.refresh {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.fullscreen {
|
|
color: #00ffff;
|
|
text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
|
|
}
|
|
|
|
.terminal-btn {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.OVR {
|
|
position: absolute;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
color: #ffff;
|
|
right: 0;
|
|
margin-right: 5px;
|
|
padding: 5px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
.ERRORS {
|
|
position: absolute;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
color: #ffff;
|
|
left: 0;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
#warning {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
color: red;
|
|
font-weight: bold;
|
|
border: 2px solid red;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* Terminal Overlay Styles - Retrowave/Synthwave Style */
|
|
.terminal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
backdrop-filter: blur(2px);
|
|
z-index: 10001;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.terminal-window {
|
|
width: 80%;
|
|
max-width: 600px;
|
|
height: 65%;
|
|
max-height: 450px;
|
|
min-height: 300px;
|
|
background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.08));
|
|
border: 2px solid #00ffff;
|
|
border-radius: 6px;
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.2),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.6),
|
|
inset 1px 0 0 rgba(255, 255, 255, 0.1),
|
|
inset -1px 0 0 rgba(0, 0, 0, 0.4),
|
|
0 0 30px rgba(0, 255, 255, 0.5),
|
|
0 0 60px rgba(0, 255, 255, 0.2),
|
|
0 15px 30px rgba(0, 0, 0, 0.8),
|
|
0 4px 8px rgba(0, 0, 0, 0.4);
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
overflow: hidden;
|
|
animation: terminalGlow 3s ease-in-out infinite alternate;
|
|
transform: perspective(1000px) rotateX(3deg) rotateY(-1deg);
|
|
}
|
|
|
|
@keyframes terminalGlow {
|
|
0% {
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(0, 255, 255, 0.4),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.6),
|
|
0 0 30px rgba(0, 255, 255, 0.5),
|
|
0 0 60px rgba(0, 255, 255, 0.2),
|
|
0 4px 8px rgba(0, 0, 0, 0.4);
|
|
}
|
|
100% {
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(0, 255, 255, 0.5),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.6),
|
|
0 0 40px rgba(0, 255, 255, 0.6),
|
|
0 0 80px rgba(0, 255, 255, 0.3),
|
|
0 4px 8px rgba(0, 0, 0, 0.4);
|
|
}
|
|
}
|
|
|
|
/* Mobile-specific terminal styling */
|
|
@media (max-width: 768px) {
|
|
.terminal-window {
|
|
width: 100%;
|
|
height: 100vh;
|
|
height: 100dvh;
|
|
max-width: none;
|
|
max-height: none;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
border: none;
|
|
box-shadow: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.terminal-overlay {
|
|
background: rgba(0, 0, 0, 0.9);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.terminal-content {
|
|
padding: 4px;
|
|
height: calc(100% - 24px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#terminal-output {
|
|
flex: 1;
|
|
margin-bottom: 8px;
|
|
font-size: 13px;
|
|
padding: 8px;
|
|
overflow-y: auto;
|
|
min-height: 0;
|
|
}
|
|
|
|
.terminal-line {
|
|
font-size: 13px;
|
|
line-height: 1.3;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.terminal-input-line {
|
|
flex-shrink: 0;
|
|
padding: 8px 12px;
|
|
min-height: 44px;
|
|
border: 1px solid #ff2975;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
position: relative;
|
|
bottom: 0;
|
|
}
|
|
|
|
.terminal-prompt {
|
|
font-size: 13px;
|
|
margin-right: 8px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.terminal-input {
|
|
font-size: 16px;
|
|
line-height: 1.4;
|
|
min-height: 24px;
|
|
padding: 4px 0;
|
|
}
|
|
|
|
.terminal-header {
|
|
flex-shrink: 0;
|
|
min-height: 28px;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.terminal-title {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.terminal-close {
|
|
width: 28px;
|
|
height: 24px;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
}
|
|
|
|
.terminal-header {
|
|
background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
|
|
color: #00ffff;
|
|
text-shadow: 0 0 15px rgba(0, 255, 255, 1);
|
|
padding: 10px 12px;
|
|
border-bottom: 2px solid #ff2975;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
font-family: 'VCR', monospace;
|
|
min-height: 28px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
position: relative;
|
|
}
|
|
|
|
.terminal-header::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 1px;
|
|
background: linear-gradient(90deg, transparent, #00ffff, transparent);
|
|
box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
|
|
}
|
|
|
|
.terminal-title {
|
|
color: #00ffff;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
flex: 1;
|
|
text-shadow: 0 0 15px rgba(0, 255, 255, 1);
|
|
animation: titleGlow 2s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes titleGlow {
|
|
0% { opacity: 0.9; }
|
|
100% { opacity: 1; }
|
|
}
|
|
|
|
.terminal-close {
|
|
cursor: pointer;
|
|
color: #00ffff;
|
|
text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
font-family: 'VCR', monospace;
|
|
width: 28px;
|
|
height: 24px;
|
|
border: 1px solid #00ffff;
|
|
background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 255, 255, 0.1));
|
|
text-align: center;
|
|
line-height: 22px;
|
|
border-radius: 0;
|
|
margin-left: 8px;
|
|
transition: all 0.2s ease;
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(0, 255, 255, 0.3),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
0 2px 4px rgba(0, 0, 0, 0.3);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.terminal-close:hover {
|
|
color: #ff2975;
|
|
text-shadow: 0 0 15px rgba(255, 41, 117, 1);
|
|
border-color: #ff2975;
|
|
background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(255, 41, 117, 0.2));
|
|
box-shadow:
|
|
inset 0 1px 0 rgba(255, 41, 117, 0.3),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
0 0 20px rgba(255, 41, 117, 0.4),
|
|
0 2px 4px rgba(0, 0, 0, 0.3);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.terminal-close:active {
|
|
transform: translateY(1px);
|
|
box-shadow:
|
|
inset 0 2px 4px rgba(0, 0, 0, 0.5),
|
|
0 0 5px rgba(255, 41, 117, 0.3);
|
|
}
|
|
|
|
.terminal-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 8px;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
}
|
|
|
|
#terminal-output {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
margin-bottom: 8px;
|
|
color: #00ffff;
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
border: 1px solid #00ffff;
|
|
border-radius: 4px;
|
|
padding: 12px;
|
|
white-space: pre-wrap;
|
|
text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
|
|
box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
|
|
}
|
|
|
|
.terminal-line {
|
|
margin-bottom: 3px;
|
|
word-wrap: break-word;
|
|
color: #00ffff;
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
|
|
}
|
|
|
|
.terminal-input-line {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #00ffff;
|
|
font-size: 13px;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
border: 1px solid #ff2975;
|
|
border-radius: 4px;
|
|
padding: 8px 12px;
|
|
min-height: 32px;
|
|
box-shadow: inset 0 0 10px rgba(255, 41, 117, 0.2);
|
|
}
|
|
|
|
.terminal-prompt {
|
|
color: #ff2975;
|
|
margin-right: 8px;
|
|
font-weight: bold;
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 13px;
|
|
text-shadow: 0 0 5px rgba(255, 41, 117, 0.8);
|
|
}
|
|
|
|
.terminal-input {
|
|
flex: 1;
|
|
background: transparent;
|
|
border: none;
|
|
color: #00ffff;
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 13px;
|
|
outline: none;
|
|
caret-color: #00ffff;
|
|
line-height: 1.4;
|
|
text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
|
|
}
|
|
|
|
.terminal-input::selection {
|
|
background: rgba(0, 255, 255, 0.3);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.terminal-btn {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.terminal-overlay.hidden {
|
|
display: none;
|
|
}
|
|
|
|
/* Custom scrollbar for terminal output - Synthwave style */
|
|
#terminal-output::-webkit-scrollbar {
|
|
width: 12px;
|
|
}
|
|
|
|
#terminal-output::-webkit-scrollbar-track {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
#terminal-output::-webkit-scrollbar-thumb {
|
|
background: linear-gradient(180deg, #ff2975 0%, #8b1538 100%);
|
|
border-radius: 6px;
|
|
box-shadow: 0 0 8px rgba(255, 41, 117, 0.5);
|
|
}
|
|
|
|
#terminal-output::-webkit-scrollbar-thumb:hover {
|
|
background: linear-gradient(180deg, #ff4499 0%, #aa1a44 100%);
|
|
box-shadow: 0 0 12px rgba(255, 41, 117, 0.8);
|
|
}
|
|
|
|
#terminal-output::-webkit-scrollbar-thumb:active {
|
|
background: linear-gradient(180deg, #cc2060 0%, #661122 100%);
|
|
}
|
|
|
|
#terminal-output::-webkit-scrollbar-corner {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.modal-container #warning {
|
|
color: #ff8800;
|
|
text-shadow: 0 0 8px rgba(255, 136, 0, 0.8);
|
|
font-family: 'VCR', 'Consolas', 'Courier New', monospace;
|
|
font-size: 0.7em;
|
|
margin: 0 0 1em 0;
|
|
padding: 8px;
|
|
border: 1px solid #ff8800;
|
|
border-radius: 4px;
|
|
background: rgba(255, 136, 0, 0.1);
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Modal Compact Layout Styles */
|
|
.compact-controls {
|
|
display: flex;
|
|
gap: 1em;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.controls-section {
|
|
flex: 1;
|
|
}
|
|
|
|
.section-title {
|
|
color: #ff2975 !important;
|
|
text-shadow: 0 0 8px rgba(255, 41, 117, 0.8) !important;
|
|
font-size: 0.8em !important;
|
|
margin-bottom: 0.5em !important;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.control-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3em;
|
|
}
|
|
|
|
.touch-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3em;
|
|
}
|
|
|
|
.control-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0.4em 0.2em;
|
|
border: 1px solid rgba(0, 255, 255, 0.3);
|
|
border-radius: 4px;
|
|
background: rgba(0, 255, 255, 0.05);
|
|
color: #00ffff;
|
|
text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
|
|
font-size: 0.7em;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.control-item small {
|
|
color: #ff2975;
|
|
text-shadow: 0 0 6px rgba(255, 41, 117, 0.6);
|
|
font-size: 0.8em;
|
|
margin-top: 0.1em;
|
|
}
|
|
|
|
.features-compact {
|
|
text-align: center;
|
|
margin: 0.8em 0;
|
|
}
|
|
|
|
.features-compact p {
|
|
color: #00ffff !important;
|
|
text-shadow: 0 0 6px rgba(0, 255, 255, 0.6) !important;
|
|
font-size: 0.7em !important;
|
|
margin: 0 !important;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.credit-compact {
|
|
text-align: center;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.credit-compact small {
|
|
color: rgba(0, 255, 255, 0.6);
|
|
text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
|
|
font-size: 0.6em;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* Mobile responsive adjustments */
|
|
@media (max-width: 480px) {
|
|
.compact-controls {
|
|
flex-direction: column;
|
|
gap: 0.8em;
|
|
margin: 0.8em 0;
|
|
}
|
|
|
|
.control-grid, .touch-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.3em;
|
|
}
|
|
|
|
.control-item {
|
|
padding: 0.3em 0.1em;
|
|
font-size: 0.65em;
|
|
}
|
|
|
|
.modal-container {
|
|
padding: 15px;
|
|
max-height: 85vh;
|
|
max-width: 95vw;
|
|
}
|
|
|
|
.modal-container h3 {
|
|
font-size: 1.1em !important;
|
|
margin-bottom: 0.8em !important;
|
|
padding-bottom: 0.3em !important;
|
|
}
|
|
|
|
.features-compact p {
|
|
font-size: 0.65em !important;
|
|
}
|
|
}
|
|
|
|
/* Retro Icon Styling */
|
|
.retro-icon {
|
|
font-family: "VCR", monospace;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.terminal-btn .retro-icon {
|
|
font-size: 12px;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.refresh .retro-icon {
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.fullscreen .retro-icon {
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* 3D Animation Keyframes */
|
|
@keyframes playerFloat {
|
|
0%, 100% {
|
|
transform: perspective(1000px) rotateX(5deg) rotateY(-2deg) translateY(0px) translateZ(0px);
|
|
}
|
|
25% {
|
|
transform: perspective(1000px) rotateX(3deg) rotateY(-1deg) translateY(-5px) translateZ(5px);
|
|
}
|
|
50% {
|
|
transform: perspective(1000px) rotateX(7deg) rotateY(-3deg) translateY(3px) translateZ(-3px);
|
|
}
|
|
75% {
|
|
transform: perspective(1000px) rotateX(4deg) rotateY(-1.5deg) translateY(-2px) translateZ(8px);
|
|
}
|
|
}
|
|
|
|
@keyframes playerPulse {
|
|
0% {
|
|
box-shadow:
|
|
0 0 30px rgba(255, 41, 117, 0.6),
|
|
0 0 60px rgba(255, 41, 117, 0.3),
|
|
inset 0 0 20px rgba(255, 41, 117, 0.1),
|
|
0 20px 60px rgba(0, 0, 0, 0.8),
|
|
0 10px 30px rgba(0, 0, 0, 0.6),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.5),
|
|
inset 1px 0 0 rgba(255, 255, 255, 0.05),
|
|
inset -1px 0 0 rgba(0, 0, 0, 0.3);
|
|
}
|
|
100% {
|
|
box-shadow:
|
|
0 0 40px rgba(255, 41, 117, 0.8),
|
|
0 0 80px rgba(255, 41, 117, 0.4),
|
|
inset 0 0 30px rgba(255, 41, 117, 0.15),
|
|
0 25px 70px rgba(0, 0, 0, 0.9),
|
|
0 15px 40px rgba(0, 0, 0, 0.7),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.15),
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.6),
|
|
inset 1px 0 0 rgba(255, 255, 255, 0.08),
|
|
inset -1px 0 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
}
|
|
|
|
@keyframes hrPulse {
|
|
0%, 100% {
|
|
width: 60px;
|
|
box-shadow:
|
|
0 0 10px rgba(255, 41, 117, 0.6),
|
|
0 2px 4px rgba(0, 0, 0, 0.4),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
}
|
|
50% {
|
|
width: 80px;
|
|
box-shadow:
|
|
0 0 20px rgba(255, 41, 117, 0.8),
|
|
0 3px 6px rgba(0, 0, 0, 0.5),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
}
|
|
}
|
|
|
|
@keyframes hrRotate {
|
|
0% {
|
|
transform: translateZ(8px) rotateY(0deg);
|
|
}
|
|
100% {
|
|
transform: translateZ(8px) rotateY(360deg);
|
|
}
|
|
}
|