* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
button,
a,
input,
textarea,
select,
div {
  outline: none !important;
  box-shadow: none !important;
}

/* حالت فوکوس کیبورد و کلیک */
button:focus,
button:focus-visible,
a:focus,
a:focus-visible,
input:focus,
input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* حذف افکت لمس موبایل */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  background: linear-gradient(120deg, #1a1a2e, #16213e);
  height:auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boxul a{
  text-align: center;
  color: red;
}
a:hover{
  text-decoration: none;
}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
.card {
  width: 100%;
  background: rgba(4, 8, 12, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.artist {
  text-align: center;
}

.artist img {
  width: 100%;
  border-radius: 20px;
}

.section {
  margin-top: 20px;
}
.section h3{
    text-align: center;
}
.section ul {
  list-style: none;
  padding: 0;
}

.section li {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  opacity: 0.9;
}

.albums {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100%;
}

.albums img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.player {
  margin-top: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}