* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
  min-height: 100vh;
  background-color: #000;
}

.sidebar {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  body {
    display: flex;
  }

  .sidebar {
    width: 250px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    justify-content: flex-start;
  }
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: block;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .logo {
    margin-bottom: 2rem;
  }
}

.nav-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

@media (min-width: 768px) {
  .nav-container {
    max-height: none;
  }
}

nav ul {
  list-style: none;
}

nav ul li {
  margin-bottom: 1.2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
  display: block;
  padding: 0.5rem 0;
}

nav ul li a:hover {
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

@media (min-width: 768px) {
  .social-links {
    margin-top: 2rem;
    border-top: none;
  }
}

.social-links a {
  color: white;
  font-size: 1.2rem;
}

.main-content {
  padding: 2rem;
}

@media (min-width: 768px) {
  .main-content {
    flex: 1;
    overflow-y: auto;
    margin-left: 250px;
    max-width: calc(100% - 250px);
  }
}

.hero {
  height: 100vw;
  background-color: #ddd;
  margin: -2rem -2rem 2rem -2rem;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-section {
  margin-bottom: 3rem;
  background-color: #000;
  color: #FFB518;
  padding: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
}

.music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.news-section {
  margin-bottom: 3rem;
}

.news-item {
  display: flex;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.news-date {
  min-width: 100px;
  font-weight: bold;
  color: #555;
}

.news-content {
  flex: 1;
}

footer {
  text-align: center;
  padding: 1rem;
  color: #FFB518;
  font-size: 0.9rem;
  background-color: #000;
  margin-left: -2rem;
  margin-right: -2rem;
}