* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #0a0e17;
color: #ffffff;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
padding: 2rem;
position: relative;
z-index: 2;
}
.main-header {
text-align: center;
margin-bottom: 3rem;
max-width: 900px;
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 2.5rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 206, 0, 0.3);
}
.main-header h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
background: linear-gradient(135deg, #ffce00 0%, #ff9f00 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.subtitle {
font-size: 1.4rem;
color: #b0b7c3;
font-weight: 600;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 0.5rem;
}
.description {
font-size: 1.1rem;
color: #b0b7c3;
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
}
.cards-section,
.content-section {
width: 100%;
max-width: 1200px;
margin-bottom: 2rem;
display: none;
}
.cards-section.active,
.content-section.active {
display: block;
animation: fadeInUp 0.8s ease-out;
}
.section-title {
font-size: 2.2rem;
color: #ffce00;
text-align: center;
margin-bottom: 2.5rem;
font-weight: 600;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.card {
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 2.5rem 2rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 229, 255, 0.3);
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, 
transparent, 
rgba(255, 255, 255, 0.2), 
transparent);
transition: left 0.6s ease;
}
.card:hover::before {
left: 100%;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px rgba(0, 229, 255, 0.4);
border-color: rgba(255, 206, 0, 0.5);
}
.card.coming-soon {
cursor: not-allowed;
opacity: 0.7;
}
.card.coming-soon:hover {
transform: none;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
border-color: rgba(0, 229, 255, 0.3);
}
.card-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.card-title {
font-size: 1.8rem;
color: #00e5ff;
margin-bottom: 1rem;
font-weight: 600;
}
.card-description {
font-size: 1.1rem;
color: #b0b7c3;
line-height: 1.5;
margin-bottom: 1.5rem;
}
.card-badge {
display: inline-block;
background: linear-gradient(135deg, #ffce00 0%, #ff9f00 100%);
color: #0a0e17;
padding: 0.5rem 1.2rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.card.coming-soon .card-badge {
background: linear-gradient(135deg, #b0b7c3 0%, #8b949e 100%);
}
.section-header {
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 229, 255, 0.3);
margin-bottom: 2rem;
text-align: center;
position: relative;
}
.back-button {
position: absolute;
left: 2rem;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 206, 0, 0.9);
color: #0a0e17;
border: none;
border-radius: 12px;
padding: 0.8rem 1.2rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}
.back-button:hover {
background: rgba(255, 206, 0, 1);
transform: translateY(-50%) scale(1.05);
box-shadow: 0 6px 16px rgba(255, 206, 0, 0.4);
}
.back-icon {
font-size: 1.2rem;
}
.section-header h2 {
font-size: 2.2rem;
color: #00e5ff;
margin-bottom: 0.5rem;
font-weight: 600;
}
.section-header p {
font-size: 1.1rem;
color: #b0b7c3;
}
.music-container {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.music-card {
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.music-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
border-color: rgba(0, 229, 255, 0.3);
}
.music-card.coming-soon {
opacity: 0.6;
cursor: not-allowed;
}
.music-card.coming-soon:hover {
transform: none;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
border-color: rgba(255, 255, 255, 0.1);
}
.music-info {
margin-bottom: 1.5rem;
}
.music-card h3 {
font-size: 1.5rem;
color: #ffce00;
margin-bottom: 0.5rem;
font-weight: 600;
}
.music-duration {
font-size: 1rem;
color: #b0b7c3;
}
audio {
width: 100%;
height: 50px;
border-radius: 12px;
background: rgba(15, 20, 35, 0.8);
outline: none;
}
audio::-webkit-media-controls-panel {
background: rgba(15, 20, 35, 0.8);
border-radius: 12px;
}
audio::-webkit-media-controls-play-button {
background-color: #00e5ff;
border-radius: 50%;
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
color: #ffffff;
}
.coming-soon-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
justify-content: center;
border-radius: 16px;
}
.coming-soon-overlay span {
background: linear-gradient(135deg, #ffce00 0%, #ff9f00 100%);
color: #0a0e17;
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 1.2rem;
box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}
.main-footer {
text-align: center;
margin-top: auto;
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 1.5rem 2rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 229, 255, 0.3);
width: 100%;
max-width: 800px;
}
.main-footer p {
color: #b0b7c3;
margin: 0.3rem 0;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.footer-sub {
font-size: 0.9rem;
opacity: 0.8;
}
.background-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 1;
overflow: hidden;
}
.background-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, 
rgba(10, 14, 23, 0.95) 0%, 
rgba(26, 31, 46, 0.9) 50%, 
rgba(10, 14, 23, 0.95) 100%);
z-index: 1;
}
.background-image {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
object-fit: cover;
opacity: 0.3;
filter: blur(4px) brightness(0.8);
z-index: 0;
}
@media (max-width: 768px) {
#app {
padding: 1.5rem;
}
.cards-container {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.card {
padding: 2rem 1.5rem;
}
.section-header {
padding: 1.5rem;
}
.back-button {
position: static;
transform: none;
margin-bottom: 1rem;
width: 100%;
justify-content: center;
}
.music-card {
padding: 1.5rem;
}
.main-header {
padding: 1.5rem;
}
}
@media (max-width: 480px) {
#app {
padding: 1rem;
}
.main-header h1 {
font-size: 1.8rem;
}
.subtitle {
font-size: 1.2rem;
}
.description {
font-size: 1rem;
}
.section-title {
font-size: 1.8rem;
}
.card {
padding: 1.5rem 1.25rem;
}
.card-icon {
font-size: 3rem;
}
.card-title {
font-size: 1.5rem;
}
.section-header h2 {
font-size: 1.8rem;
}
.music-card h3 {
font-size: 1.3rem;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.main-header {
animation: fadeInUp 0.8s ease-out forwards;
}
.cards-section.active,
.content-section.active {
animation: fadeInUp 0.8s ease-out;
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
.card:focus,
.back-button:focus,
audio:focus {
outline: 3px solid #00e5ff;
outline-offset: 2px;
}
@media (min-aspect-ratio: 16/9) {
.background-image {
width: 100%;
height: auto;
}
}
@media (max-aspect-ratio: 16/9) {
.background-image {
width: auto;
height: 100%;
}
}