

.bma-artist-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
}

.bma-artist-detail img {
  flex: 0 0 500px;
  border-radius: 10px;
  margin-bottom: 0;
}

.bma-artist-detail .bma-artist-text {
  flex: 1;
  min-width: 300px;
}

.bma-artist-detail p {
  line-height: 1.6em;
  margin: 0 0 10px;
}

.bma-artist-detail img { display:block !important; }
.bma-artist-detail { display:flex !important; }

.bma-album {
  position: relative;
  width: 180px;
  text-align: center;
}

.bma-album-cover {
  position: relative;
}

.bma-album img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.bma-album:hover img {
  transform: scale(1.02);
}

.bma-album .name {
  margin-top: 6px;
  font-weight: bold;
}

.bma-album .year {
  font-size: 0.9em;
  color: #777;
}

/* --- pulsante + spostato in basso a destra --- */
.bma-album-more {
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.bma-more-btn {
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  user-select: none;
  display: inline-block;
}
 
.bma-tooltip {
  position: absolute;
  top: -10px;
  left: 105%;
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 240px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 0.85em;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.bma-album-more:hover .bma-tooltip {
  opacity: 1;
  pointer-events: auto;
}

.bma-buy-wrap {
  margin-top: 6px;
}

.bma-buy-btn {
  display: inline-block;
  background: #ff9900;
  color: #111;
  font-weight: 600;
  font-size: 0.85em;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.bma-buy-btn:hover {
  background: #e68900;
  transform: translateY(-1px);
}

.bma-buy-btn:active {
  transform: translateY(0);
}

.bma-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.bma-video-cell {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.bma-video-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.bma-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
}

.bma-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px 12px 0 0;
}

.bma-video-meta {
  padding: 10px 12px;
  font-size: 0.9em;
}

.read-horoscope {
  color:#b20;
  font-weight:500;
  text-decoration:none;
}
.read-horoscope:hover {
  text-decoration:underline;
  color:#900;
}

.bma-css-tabs {
 margin-top: 20px;
}

.bma-css-tab-nav {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 15px;
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}
.bma-css-tab-nav li {
  padding: 10px 20px;
  cursor: pointer;
  background: #f7f7f7;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  font-weight: 600;
}
.bma-css-tab-nav li.active {
  background: #fff;
 
  border-bottom: none;
}
.bma-css-tab-content {
  display: none;
 
 
 
  border-top: none;
}
.bma-css-tab-content.active {
  display: block;
}

.bma-css-song-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 12px;
}

.bma-css-song-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.bma-css-song-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bma-css-song-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    margin-bottom: 2px;
}

.bma-css-song-title:hover {
    text-decoration: underline;
}

.bma-css-song-sub {
    font-size: 13px;
    color: #666;
}

.bma-css-play-btn {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    min-width: 32px;
}

ul, ol {
    margin: 0 !important;
}
