* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0c12;
  color: #ededf2;
  line-height: 1.5;
  scroll-behavior: smooth;
  padding-bottom: 70px;
}

:root {
  --primary: #9b59b6;
  --primary-dark: #8e44ad;
  --primary-light: #af7ac5;
  --primary-glow: rgba(155, 89, 182, 0.4);
  --bg-dark: #0a0c12;
  --bg-card: #11131c;
  --bg-header: rgba(10, 12, 18, 0.97);
  --bg-footer: #05070c;
  --bg-about: #0d0f17;
  --text-muted: #a9abb6;
  --border-light: #1f212e;
  --border-card: #232530;
  --now-playing-bg: rgba(155, 89, 182, 0.25);
  --now-playing-border: #9b59b6;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e1f2a;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(155, 89, 182, 0.3);
  padding: 14px 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-section {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.02);
}

.player-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.header-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(155, 89, 182, 0.12);
  padding: 4px 16px;
  border-radius: 40px;
  border: 1px solid rgba(155, 89, 182, 0.35);
  backdrop-filter: blur(4px);
}

.header-player .track-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-player .live-badge {
  background: var(--primary);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 30px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 2px;
}

.header-player .track-info h3 {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-player .play-btn-small {
  background: var(--primary);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  font-size: 0.8rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.header-player .play-btn-small:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.header-player .volume-slider-small {
  width: 70px;
  accent-color: var(--primary);
}

.nav-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #e0e0e8;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ededf2;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.98);
  backdrop-filter: blur(12px);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #ededf2;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul a {
  color: #ededf2;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: 0.2s;
}

.mobile-menu ul a:hover,
.mobile-menu ul a.active {
  color: var(--primary);
}

/* Bottom Navigation */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 12, 18, 0.97);
  border-top: 1px solid rgba(155, 89, 182, 0.3);
  backdrop-filter: blur(12px);
  z-index: 190;
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 12px;
  transition: 0.2s;
  min-width: 60px;
}

.bottom-nav a i {
  font-size: 1.2rem;
}

.bottom-nav a.active,
.bottom-nav a:hover {
  color: var(--primary);
}

/* Floating Mobile Player */
.floating-player {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(155, 89, 182, 0.5);
  padding: 12px 20px;
  z-index: 300;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.floating-player .player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.floating-player .track-info-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 2;
  min-width: 120px;
}

.floating-player .live-badge-mini {
  background: var(--primary);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 30px;
  white-space: nowrap;
}

.floating-player .song-title {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-player .play-btn-float {
  background: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-player .play-btn-float:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.floating-player .volume-slider-float {
  width: 80px;
  accent-color: var(--primary);
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary);
  padding-left: 20px;
}

.page-header {
  padding: 50px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffffff, var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.page-header p {
  color: var(--text-muted);
  margin-top: 12px;
}

footer {
  background: var(--bg-footer);
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid var(--border-light);
}

/* Hero Section */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(145deg, #0f111a 0%, #090b10 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Today Schedule */
.today-schedule-card {
  background: var(--bg-card);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  margin-bottom: 60px;
}

.today-header {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.05));
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.today-header h2 {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.today-header h2 i {
  color: var(--primary);
  font-size: 1.8rem;
}

.today-header .date {
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(155, 89, 182, 0.15);
  padding: 6px 16px;
  border-radius: 40px;
}

.schedule-table {
  width: 100%;
}

.schedule-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid var(--border-light);
  transition: 0.2s;
}

.schedule-row:hover {
  background: rgba(155, 89, 182, 0.05);
}

.schedule-cell {
  padding: 16px 24px;
}

.schedule-cell.time {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.schedule-cell.show h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.schedule-row.now-playing {
  background: rgba(155, 89, 182, 0.2);
  border-left: 4px solid var(--primary);
  animation: glowPulse 1.5s infinite;
}

.now-playing-tag {
  background: var(--primary);
  font-size: 0.65rem;
  padding: 2px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  animation: pulse 1s infinite;
}

.empty-schedule {
  text-align: center;
  padding: 50px;
  color: var(--text-muted);
}

.empty-schedule i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
  display: block;
}

/* About Section */
.about {
  background: var(--bg-about);
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 2;
}

.about-text p {
  margin-bottom: 20px;
  color: #c2c5d4;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 70px 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info i {
  width: 38px;
  color: var(--primary);
  font-size: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 35px;
  margin-top: 28px;
}

.social-links a {
  background: #1f212e;
  width: 48px;
  height: 48px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.2s;
  text-decoration: none;
}

.social-links a i {
  font-size: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  background: var(--bg-card);
  padding: 32px;
  border-radius: 36px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  background: #1a1c27;
  border: 1px solid #2e303e;
  border-radius: 36px;
  color: white;
  font-family: inherit;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-submit {
  background: var(--primary);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.2s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.member-card {
  background: var(--bg-card);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid var(--border-card);
  text-align: center;
  padding-bottom: 24px;
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.member-avatar {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #2a1f3a, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-avatar .fallback-icon {
  font-size: 4rem;
  color: var(--primary);
}

.member-card h3 {
  font-size: 1.3rem;
  margin: 16px 16px 6px;
}

.member-roles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 16px 10px;
}

.member-role {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(155, 89, 182, 0.15);
  padding: 4px 14px;
  border-radius: 40px;
  width: fit-content;
}

.member-role2 {
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 14px;
  border-radius: 40px;
  width: fit-content;
}

/* Live Now Panel */
.live-now-panel {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(155, 89, 182, 0.05));
  border-radius: 28px;
  padding: 28px 36px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid rgba(155, 89, 182, 0.3);
}

.live-label {
  background: var(--primary);
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-label i {
  animation: pulse 1s infinite;
}

.current-show-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

/* Week Schedule */
.week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin: 30px 0 70px;
}

.day-card {
  background: var(--bg-card);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  transition: 0.3s ease;
}

.day-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 30px -12px rgba(155, 89, 182, 0.2);
}

.day-header {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.05));
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.day-header h2 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}

.day-header .day-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.today-badge {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.shows-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 550px;
  overflow-y: auto;
}

.show-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 20px;
}

.show-item:hover {
  background: rgba(155, 89, 182, 0.1);
  transform: translateX(4px);
}

.show-item.now-playing {
  background: var(--now-playing-bg);
  border-left: 4px solid var(--now-playing-border);
  animation: rozvrh-glow 1.5s infinite;
}

.show-time {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  background: rgba(155, 89, 182, 0.15);
  padding: 6px 12px;
  border-radius: 40px;
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
}

.show-title {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.now-playing-indicator {
  background: var(--primary);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 12px;
  display: inline-block;
  animation: pulse 1s infinite;
}

.empty-shows {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 1rem;
}

.empty-shows i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.4;
  display: block;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: inset 0 0 5px rgba(155, 89, 182, 0.2); }
  50% { box-shadow: inset 0 0 20px rgba(155, 89, 182, 0.4); }
}

@keyframes rozvrh-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(155, 89, 182, 0.4); }
  50% { box-shadow: 0 0 25px rgba(155, 89, 182, 0.7); }
}

/* Responsive Design */
@media (max-width: 880px) {
  .header-player {
    gap: 8px;
    padding: 4px 12px;
  }
  .header-player .volume-slider-small {
    width: 55px;
  }
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-player {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .bottom-nav {
    display: block;
  }
  .floating-player {
    display: block;
  }
  main {
    padding-bottom: 20px;
  }
  body {
    padding-bottom: 85px;
  }

  .hero {
    padding: 40px 0 30px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    padding-left: 16px;
    margin-bottom: 24px;
  }

  .today-header {
    padding: 16px 20px;
  }
  .today-header h2 {
    font-size: 1.3rem;
  }
  .schedule-row {
    grid-template-columns: 1fr;
  }
  .schedule-cell {
    padding: 12px 16px;
  }
  .schedule-cell.time {
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
  }

  .about {
    padding: 50px 0;
  }
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  .about-text p {
    font-size: 0.95rem;
  }

  .contact {
    padding: 50px 0;
  }
  .contact-flex {
    flex-direction: column;
    gap: 30px;
  }
  .contact-form {
    padding: 24px;
    border-radius: 28px;
  }

  .page-header {
    padding: 30px 0 20px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  .member-avatar {
    height: 160px;
  }
  .member-card h3 {
    font-size: 1.1rem;
    margin: 12px 12px 4px;
  }
  .member-role {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .live-now-panel {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
  }

  .week-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .day-header h2 {
    font-size: 1.4rem;
  }
  .show-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
  }
  .show-time {
    min-width: unset;
    font-size: 0.85rem;
  }
  .show-title {
    font-size: 1rem;
  }
  .shows-list {
    max-height: none;
  }

  .container {
    padding: 0 16px;
  }
  .logo-img {
    height: 36px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .member-avatar {
    height: 140px;
  }
  .logo-img {
    height: 32px;
  }
  .floating-player .volume-slider-float {
    width: 60px;
  }
  .floating-player .track-info-mini {
    gap: 6px;
  }
}