/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

/* Background GIF */
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('background.gif') repeat;
  z-index: -1;
}

/* Container */
#container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  color: #ff4c4c;
}

/* Logo */
#logo-section {
  text-align: center;
  margin-bottom: 20px;
}

#logo {
  max-width: 200px;
  width: 50%;
  height: auto;
}

/* Search input */
#search-section {
  background-color: #111;
  text-align: center;
  margin-bottom: 20px;
}

#searchInput {
  width: 90%;
  max-width: 400px;
  padding: 10px 12px;
  font-size: 16px;
  border: 2px solid #ff4c4c;
  background-color: #111;
  color: #ff4c4c;
  outline: none;
}

#searchInput::placeholder {
  color: #ff4c4c88;
}

/* Player Section */
#playlist-section {
  background-color: #111;
  margin-bottom: 30px;
}
#player-section {
  text-align:center;
  margin:auto;
  margin-bottom: 30px;
  border:none;
  background:none;
}

#player {
  width: 100%;
  margin:auto;
  border: 2px solid #ff4c4c;
  border-radius: 4px;
}

/* Track list */
#trackList {
  list-style: none;
  padding: 0;
}

.track-item {
  padding: 14px 16px;
  margin-bottom: 4px;
  background-color: #111;
  cursor: pointer;
  border: 1px solid #ff4c4c;
  border-radius: 4px;
  font-size: 16px;
  transition: background 0.15s, transform 0.05s;
  min-height: 48px; /* touch friendly */
}

.track-item:hover {
  background-color: #220000;
}

.track-item:active {
  background-color: #330000;
  transform: scale(0.98);
}

.track-item.active {
  background-color: #550000;
  font-weight: bold;
}

.friend-logo {
  max-width: 200px;
  width: 50%;
  height: auto;
}
.friend-feature {
  padding: 14px 16px;
  margin-bottom: 4px;
  background-color: #111;
  cursor: pointer;
  border: 1px solid #ff4c4c;
  border-radius: 4px;
  font-size: 16px;
  transition: background 0.15s, transform 0.05s;
}

/* About / Contact sections */
section {
  background-color: #111;
  margin-top: 40px;
  padding: 10px;
  border: 1px solid #ff4c4c;
  border-radius: 4px;
}

/* Headers */
h1, h2 {
  text-align: center;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  #searchInput {
    width: 95%;
  }

  .track-item {
    font-size: 14px;
    padding: 12px;
  }
}
/* Article-style About section */
.article {
  margin-top: 40px;
  padding: 20px;
  background-color: #0d0d0d;
  border: 1px solid #aa0000;
  border-radius: 4px;
}

/* Title */
.article h2 {
  text-align: left;
  margin-bottom: 15px;
  border-bottom: 1px solid #aa0000;
  padding-bottom: 5px;
}

/* Text content */
.article-content {
  line-height: 1.6;
  font-size: 15px;
  color: #dddddd;
}

.article-content p {
  margin-bottom: 12px;
}

/* Image at bottom */
.article-image {
  margin-top: 20px;
  text-align: center;
}

.article-image img {
  border: 1px solid #aa0000;
  border-radius: 2px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .article {
    padding: 15px;
  }

  .article-content {
    font-size: 14px;
  }
}
/* Byline styling */
.byline {
  font-size: 13px;
  color: #aa4444;
  margin-bottom: 15px;
}

.author-name {
  color: #ff4c4c;
  font-weight: bold;
}
