:root {
--primary-blue: #0a0e17;
--primary-dark: #05080f;
--primary-light: #1a1f2e;
--accent-orange: #ff9f00;
--accent-yellow: #ffce00;
--accent-gold: #ffd700;
--accent-music: #8a2be2;
--text-light: #ffffff;
--text-secondary: #b0b7c3;
--text-muted: #6b7280;
--card-bg: rgba(255, 255, 255, 0.08);
--card-bg-hover: rgba(255, 255, 255, 0.12);
--glass-bg: rgba(169, 169, 169, 0.15);
--shadow-light: 0 4px 6px rgba(0, 0, 0, 0.3);
--shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
--shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.5);
--gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, #1a1a2e 100%);
--gradient-accent: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
--gradient-music: linear-gradient(135deg, var(--accent-music) 0%, #00e5ff 100%);
--gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #ffb700 100%);
--font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
--font-heading: 'Montserrat', 'Arial', sans-serif;
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--border-radius-sm: 8px;
--border-radius-md: 12px;
--border-radius-lg: 16px;
--border-radius-xl: 24px;
--transition-fast: 0.2s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font-primary);
background: var(--gradient-primary);
color: var(--text-light);
line-height: 1.6;
overflow-x: hidden;
min-height: 100vh;
position: relative;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
padding: var(--space-lg);
position: relative;
z-index: 2;
}
.main-header {
text-align: center;
margin-bottom: 3rem;
max-width: 900px;
background: var(--card-bg);
border-radius: var(--border-radius-lg);
padding: var(--space-xl);
box-shadow: var(--shadow-medium);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border: 2px solid rgba(255, 206, 0, 0.3);
}
.main-header h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: var(--space-md);
line-height: 1.2;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
background: var(--gradient-music);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.studio-badge {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
background: rgba(138, 43, 226, 0.1);
padding: var(--space-sm) var(--space-md);
border-radius: 20px;
margin-bottom: var(--space-md);
border: 1px solid rgba(138, 43, 226, 0.3);
}
.studio-icon {
font-size: 1.2rem;
}
.studio-name {
font-weight: 600;
color: var(--accent-music);
font-size: 1.1rem;
}
.subtitle {
font-size: 1.2rem;
color: var(--text-secondary);
font-weight: 500;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.music-container {
width: 100%;
max-width: 1200px;
margin-bottom: 2rem;
}
.studio-info {
margin-bottom: 3rem;
}
.info-card {
background: var(--card-bg);
border-radius: var(--border-radius-lg);
padding: var(--space-xl);
box-shadow: var(--shadow-medium);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border: 2px solid rgba(0, 229, 255, 0.3);
text-align: center;
transition: all var(--transition-normal);
}
.info-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-heavy);
border-color: rgba(138, 43, 226, 0.5);
}
.info-card h2 {
font-size: 2rem;
color: var(--accent-yellow);
margin-bottom: var(--space-md);
font-weight: 600;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.info-card p {
font-size: 1.1rem;
line-height: 1.6;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}
.clubs-section {
margin-bottom: 3rem;
}
.section-title {
font-size: 2.2rem;
color: var(--accent-yellow);
text-align: center;
margin-bottom: var(--space-xl);
font-weight: 600;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.clubs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: var(--space-lg);
}
.club-card {
background: var(--card-bg);
border-radius: var(--border-radius-lg);
padding: var(--space-xl);
box-shadow: var(--shadow-medium);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border: 2px solid rgba(255, 255, 255, 0.1);
transition: all var(--transition-normal);
position: relative;
overflow: hidden;
}
.club-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, 
transparent, 
rgba(255, 255, 255, 0.1), 
transparent);
transition: left var(--transition-slow);
}
.club-card:hover::before {
left: 100%;
}
.club-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-heavy);
border-color: rgba(138, 43, 226, 0.3);
}
.club-header {
display: flex;
align-items: center;
gap: var(--space-md);
margin-bottom: var(--space-lg);
}
.club-icon {
font-size: 2.5rem;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.club-card h3 {
font-size: 1.5rem;
color: var(--accent-yellow);
font-weight: 600;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
line-height: 1.3;
}
.club-content p {
font-size: 1rem;
line-height: 1.6;
color: var(--text-secondary);
margin-bottom: var(--space-lg);
}
.navigation-section {
display: flex;
justify-content: center;
}
.btn {
display: inline-flex;
align-items: center;
text-decoration: none;
padding: var(--space-sm) var(--space-lg);
border-radius: var(--border-radius-md);
transition: all var(--transition-normal);
position: relative;
overflow: hidden;
border: 2px solid;
box-shadow: var(--shadow-medium);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
background: var(--card-bg);
gap: var(--space-xs);
font-weight: 600;
min-height: 50px;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, 
transparent, 
rgba(255, 255, 255, 0.3), 
transparent);
transition: left 0.7s ease;
}
.btn:hover::before {
left: 100%;
}
.btn-primary {
border-color: var(--accent-yellow);
color: var(--accent-yellow);
background: rgba(255, 206, 0, 0.1);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-heavy);
background: rgba(255, 206, 0, 0.15);
}
.btn-secondary {
border-color: var(--accent-music);
color: var(--accent-music);
background: rgba(138, 43, 226, 0.1);
}
.btn-secondary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-heavy);
background: rgba(138, 43, 226, 0.15);
}
.btn-back {
border-color: var(--text-secondary);
color: var(--text-secondary);
background: rgba(176, 183, 195, 0.1);
}
.btn-back:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-heavy);
background: rgba(176, 183, 195, 0.15);
}
.btn-icon {
font-size: 1.2rem;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.btn-text {
font-size: 1rem;
font-weight: 600;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.main-footer {
text-align: center;
margin-top: auto;
background: var(--card-bg);
border-radius: var(--border-radius-lg);
padding: var(--space-lg);
box-shadow: var(--shadow-medium);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border: 2px solid rgba(0, 229, 255, 0.3);
width: 100%;
max-width: 800px;
}
.main-footer p {
color: var(--text-secondary);
margin: 0.3rem 0;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.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: var(--space-md);
}
.clubs-grid {
grid-template-columns: 1fr;
gap: var(--space-md);
}
.club-card {
padding: var(--space-lg);
}
.club-header {
flex-direction: column;
text-align: center;
gap: var(--space-sm);
}
.club-card h3 {
font-size: 1.3rem;
}
.info-card {
padding: var(--space-lg);
}
.info-card h2 {
font-size: 1.6rem;
}
.main-header {
padding: var(--space-lg);
}
.btn {
padding: var(--space-sm) var(--space-md);
}
}
@media (max-width: 480px) {
#app {
padding: var(--space-sm);
}
.main-header h1 {
font-size: 1.8rem;
}
.subtitle {
font-size: 1rem;
}
.studio-badge {
flex-direction: column;
gap: var(--space-xs);
}
.club-card {
padding: var(--space-md);
}
.club-icon {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
.btn {
width: 100%;
justify-content: center;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.main-header {
animation: fadeInUp 0.8s ease-out forwards;
}
.studio-info {
animation: fadeInUp 0.8s ease-out 0.2s forwards;
opacity: 0;
}
.clubs-section {
animation: fadeInUp 0.8s ease-out 0.4s forwards;
opacity: 0;
}
.navigation-section {
animation: fadeInUp 0.8s ease-out 0.6s forwards;
opacity: 0;
}
.main-footer {
animation: fadeInUp 0.8s ease-out 0.8s forwards;
opacity: 0;
}
.club-card:hover .club-icon {
animation: pulse 1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
.btn:focus, .club-card:focus {
outline: 3px solid var(--accent-music);
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%;
}
}