Auto commit: 2026-02-15T02:55:50.730Z

This commit is contained in:
Flatlogic Bot 2026-02-15 02:55:50 +00:00
parent 07d968aee6
commit b0594fd510

164
index.php
View File

@ -407,36 +407,36 @@ $liveIndex = get_live_index($schedule);
} }
.brand h1 { .brand h1 {
font-size: 2.2rem; font-size: 2.8rem;
font-weight: 700; font-weight: 700;
margin: 0 0 0.5rem; margin: 0 0 0.5rem;
color: #fff; color: #fff;
letter-spacing: -0.03em; letter-spacing: -0.04em;
text-transform: lowercase; text-transform: lowercase;
} }
.brand-logo { .brand-logo {
width: 90px; width: 110px;
height: auto; height: auto;
margin: 0 auto 1.5rem; margin: 0 auto 2rem;
display: block; display: block;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
} }
.brand p { .brand p {
font-size: 0.8rem; font-size: 0.95rem;
font-weight: 300; font-weight: 300;
opacity: 0.4; opacity: 0.6;
margin-bottom: 2.5rem; margin-bottom: 3rem;
letter-spacing: 0.1em; letter-spacing: 0.1em;
text-transform: uppercase; text-transform: uppercase;
} }
.now-playing-container { .now-playing-container {
background: rgba(255, 255, 255, 0.01); background: rgba(255, 255, 255, 0.02);
border-radius: 40px; border-radius: 32px;
padding: 2.5rem 2rem; padding: 3rem 2rem;
border: 1px solid rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.05);
margin-bottom: 2.5rem; margin-bottom: 2.5rem;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
@ -445,24 +445,24 @@ $liveIndex = get_live_index($schedule);
.track-title { .track-title {
font-weight: 300; font-weight: 300;
font-size: 1.1rem; font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9); color: rgba(255, 255, 255, 0.9);
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
letter-spacing: 0.02em; letter-spacing: 0.02em;
position: relative;
z-index: 2;
} }
.play-btn { .play-btn {
width: 90px; width: 90px;
height: 90px; height: 90px;
border-radius: 50%; border-radius: 50%;
background: rgba(255, 255, 255, 0.05); background: #fff;
backdrop-filter: blur(10px); border: none;
-webkit-backdrop-filter: blur(10px); color: var(--bg-dark);
border: 1px solid rgba(255, 255, 255, 0.1); font-size: 3rem;
color: #fff;
font-size: 2.5rem;
cursor: pointer; cursor: pointer;
display: flex; display: flex;
align-items: center; align-items: center;
@ -474,43 +474,40 @@ $liveIndex = get_live_index($schedule);
.play-btn:hover { .play-btn:hover {
transform: scale(1.05); transform: scale(1.05);
background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
border-color: var(--primary-color);
box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
} }
.play-btn.is-playing { .play-btn.is-playing {
background: var(--primary-color); background: #ff3d00;
color: #0f172a; color: #fff;
border-color: transparent; box-shadow: 0 0 50px rgba(255, 61, 0, 0.4);
box-shadow: 0 0 50px rgba(56, 189, 248, 0.4); animation: pulse-red 2s infinite;
animation: pulse-primary 2s infinite;
} }
@keyframes pulse-primary { @keyframes pulse-red {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5); } 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(56, 189, 248, 0); } 70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 61, 0, 0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
} }
.volume-container { .volume-container {
width: 100%; width: 100%;
max-width: 160px; max-width: 180px;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 1.2rem; gap: 1.2rem;
margin: 2.5rem auto 0; margin: 2.5rem auto 0;
opacity: 0.3; opacity: 0.5;
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
} }
.volume-container:hover { .volume-container:hover {
opacity: 0.8; opacity: 1;
} }
.volume-slider { .volume-slider {
flex: 1; flex: 1;
height: 2px; height: 3px;
-webkit-appearance: none; -webkit-appearance: none;
background: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.1);
border-radius: 10px; border-radius: 10px;
@ -519,52 +516,21 @@ $liveIndex = get_live_index($schedule);
.volume-slider::-webkit-slider-thumb { .volume-slider::-webkit-slider-thumb {
-webkit-appearance: none; -webkit-appearance: none;
width: 10px; width: 12px;
height: 10px; height: 12px;
background: #fff; background: #fff;
border-radius: 50%; border-radius: 50%;
} }
.brand h1 {
font-size: 2.8rem;
font-weight: 700;
margin: 0 0 0.5rem;
color: #fff;
letter-spacing: -0.04em;
}
.brand-logo {
width: 110px;
height: auto;
margin: 0 auto 2rem;
display: block;
}
.brand p {
font-size: 0.95rem;
font-weight: 300;
opacity: 0.6;
margin-bottom: 3rem;
}
.now-playing-container {
background: rgba(255, 255, 255, 0.02);
border-radius: 32px;
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.05);
margin-bottom: 2.5rem;
position: relative;
overflow: hidden;
}
#visualizer { #visualizer {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 60px; height: 80px;
opacity: 0.6; opacity: 0.8;
pointer-events: none; pointer-events: none;
z-index: 1;
} }
.track-status { .track-status {
@ -583,6 +549,8 @@ $liveIndex = get_live_index($schedule);
width: fit-content; width: fit-content;
margin: 0 auto 1.2rem; margin: 0 auto 1.2rem;
border: 1px solid rgba(56, 189, 248, 0.15); border: 1px solid rgba(56, 189, 248, 0.15);
position: relative;
z-index: 2;
} }
.live-dot { .live-dot {
@ -600,62 +568,6 @@ $liveIndex = get_live_index($schedule);
100% { transform: scale(1); opacity: 1; } 100% { transform: scale(1); opacity: 1; }
} }
.track-title {
font-weight: 400;
font-size: 1.2rem;
color: #f1f5f9;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.play-btn {
width: 84px;
height: 84px;
border-radius: 50%;
background: #fff;
border: none;
color: var(--bg-dark);
font-size: 2.8rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.play-btn.is-playing {
background: #ff3d00;
color: #fff;
box-shadow: 0 0 30px rgba(255, 61, 0, 0.6);
animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 61, 0, 0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}
.volume-container {
width: 100%;
max-width: 180px;
display: flex;
align-items: center;
gap: 1.2rem;
margin: 2rem auto;
opacity: 0.6;
}
.volume-slider {
flex: 1;
height: 3px;
-webkit-appearance: none;
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
}
.payment-section { .payment-section {
margin-top: 2rem; margin-top: 2rem;
opacity: 0.5; opacity: 0.5;