body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #363636 100%);
  color: #ffffff;
  line-height: 1.6;
}

nav {
  background: linear-gradient(to right, #2c3e50, #3498db);
  padding: 1em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  text-align: center;
}

nav a {
  color: #ffffff;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f1c40f;
  text-decoration: none;
}

.container {
  display: flex;
  gap: 2em;
  padding: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.player-section {
  width: 300px;
  flex-shrink: 0;
}

.mp3-player {
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 2px solid #3498db;
}

.player-display {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #3498db;
}

.song-info {
  text-align: center;
  margin-bottom: 15px;
}

.song-title {
  font-size: 1.2em;
  color: #f1c40f;
  margin-bottom: 5px;
}

.artist-name {
  font-size: 0.9em;
  color: #95a5a6;
}

.visualizer {
  display: flex;
  justify-content: center;
  gap: 5px;
  height: 40px;
  align-items: center;
}

.visualizer .bar {
  width: 4px;
  height: 20px;
  background: #3498db;
  animation: equalizer 1s ease-in-out infinite;
}

.visualizer .bar:nth-child(2) { animation-delay: 0.2s; }
.visualizer .bar:nth-child(3) { animation-delay: 0.4s; }
.visualizer .bar:nth-child(4) { animation-delay: 0.6s; }
.visualizer .bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes equalizer {
  0% { height: 20px; }
  50% { height: 40px; }
  100% { height: 20px; }
}

.player-controls {
  display: flex;
  justify-content: center;
}

.play-button {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-icon {
  color: white;
  font-size: 1.5em;
}

main {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  padding: 2em;
}

h1 {
  color: #f1c40f;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 1em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 1em;
}

.main-image {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5),
              0 0 40px rgba(255, 0, 0, 0.3),
              0 0 60px rgba(255, 0, 0, 0.2);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.blog-post {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  border-left: 4px solid #f1c40f;
}

.timestamp {
  color: #95a5a6;
  font-size: 0.9em;
  text-align: right;
  margin-top: 20px;
}

.comment-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #3498db;
  border-radius: 5px;
  color: #ffffff;
}

.comment-form button {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.comment-form button:hover {
  transform: translateY(-2px);
}

.visitor-counter {
  text-align: center;
  font-family: "Courier New", monospace;
  background-color: #000000;
  color: #00ff00;
  padding: 10px;
  margin: 20px auto;
  width: fit-content;
  border: 2px solid #ffff00;
}

.construction {
  text-align: center;
  margin: 20px 0;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.marquee {
  background-color: #ffff00;
  color: #000000;
  padding: 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
}

.youtube-player {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #000;
}
