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

/* Body styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  min-height: 100vh;
}

/* Logo */
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* Title */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Navigation buttons */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  background-color: #222;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav a:hover {
  background-color: #444;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .nav a {
    width: 100%;
    text-align: center;
  }
}
.music-control {
  margin-top: 40px;
  text-align: center;
}

#music-toggle {
  padding: 12px 24px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#music-toggle:hover {
  background-color: #444;
  transform: scale(1.05);
}
