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

body {
  height: 100vh;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  color: white;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #111;
  z-index: 1000;
}

nav a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  text-shadow: 0 0 10px #00ffff;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 420px;
  margin: 30px auto;
  text-align: center;
}

/* LOGO */
.logo {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow:
    0 0 5px #ff00ff,
    0 0 10px #ff00ff,
    0 0 20px #00ffff,
    0 0 40px #00ffff;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #ccc;
}

.section-title {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #00ffff;
}

/* LINKS */
.links a {
  display: block;
  margin: 12px 0;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid transparent;
}

.links a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.youtube {
  border-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

.tiktok {
  border-color: #00f2ea;
  box-shadow: 0 0 10px #00f2ea;
}

.facebook {
  border-color: #1877f2;
  box-shadow: 0 0 10px #1877f2;
}

.instagram {
  border-color: #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.soundcloud {
  border-color: #ff7700;
  box-shadow: 0 0 10px #ff7700;
}

.spotify {
  border-color: #1DB954;
  box-shadow: 0 0 10px #1DB954;
}

.mixcloud {
  border-color: #5000ff;
  box-shadow: 0 0 10px #5000ff;
}

.email {
  border-color: #a1a1a1;
  box-shadow: 0 0 10px #a1a1a1;
}

footer {
  margin-top: 25px;
  font-size: 0.8rem;
  color: #555;
}

.track {
  margin-bottom: 15px;
}

.track-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.track-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.track-thumb {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.track-info {
  text-align: left;
}

.track-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.track-link {
  color: #00f2ea;
  font-size: 0.9rem;
}

.subscribe {
  display: block;
  margin-bottom: 25px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background: linear-gradient(45deg, #ff0000, #ff4d4d);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  transition: 0.3s;
}

.subscribe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
}

.playlist {
  display: block;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  transition: 0.3s;
}

.playlist:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.latest {
  display: block;
  margin-bottom: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;

  background: linear-gradient(45deg, #ff00ff, #8a2be2);
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.5);

  transition: 0.3s;

  /* IMPORTANT */
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}