* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111 url("data/fon1.jpg") center center / cover no-repeat scroll;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 40px 20px;
}

.band-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e63946;
  margin-bottom: 20px;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.3);
}

.band-name {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.band-status {
  font-size: 1.1rem;
  color: #e63946;
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.band-members {
  font-size: 0.9rem;
  color: #888;
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 60px 0;
  border-bottom: 1px solid #1a1a1a;
}

.section h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #e63946;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e63946;
}

.description {
  font-size: 1.05rem;
  color: #ccc;
  white-space: pre-wrap;
}

/* Links */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #e0e0e0;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.links a:hover {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}

/* Posts */
.posts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}

.post-card:hover {
  border-color: #e63946;
}

.post-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.post-text {
  font-size: 1rem;
  color: #ddd;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.post-text a {
  color: #e63946;
  text-decoration: underline;
}

.post-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.post-photos img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.post-photos img:hover {
  transform: scale(1.02);
}

/* Footer */
.footer {
  padding: 30px 0;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
}

/* Music */
.music-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.music-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.music-item:hover {
  border-color: #e63946;
  background: #1a1a1a;
}

.music-item.active {
  border-color: #e63946;
  background: #1a1a1a;
}

.music-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e63946;
  background: transparent;
  color: #e63946;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.music-item.active .music-play-btn {
  background: #e63946;
  color: #fff;
}

.music-item-name {
  font-size: 1rem;
  color: #ddd;
  flex: 1;
}

.music-player {
  width: 100%;
  margin-top: 16px;
  display: none;
}

.music-player.active {
  display: block;
}

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.video-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.video-card:hover {
  border-color: #e63946;
  transform: translateY(-2px);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-info {
  padding: 12px 16px;
}

.video-title {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-duration {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

/* Video lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox iframe {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
}

/* Loading */
.loading {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 1.1rem;
}

.error {
  text-align: center;
  padding: 40px;
  color: #e63946;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .band-name { font-size: 2rem; }
  .band-photo { width: 140px; height: 140px; }
  .section { padding: 40px 0; }
}
