body {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(180deg,#e92929,#520000);
    color: #ffffff;
}

.artist-card {
      width:400px;
      background-color: #000000;
      border-radius: 15px;
      box-shadow: 0 10px 30px #200000(0, 0, 0, 0.2);
      padding: 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
}

.artist-profile-img {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #dd2d2d;
     margin-bottom: 20px;
}

.artist-name {
     font-size: 2em;
     margin-bottom: 5px;
     color:#dd2d2d;
}

.artist-title {
     font-size: 1em;
     color:#b81414;
     margin-bottom: 25px;
}

.tabs-nav {
     list-style: none;
     padding: 0;
     margin: 0 0 20px 0;
     display: flex;
     justify-content: center;
     border-bottom: 1px solid #eee;
}

.tab-btn {
     padding: 10px 15px;
     cursor: pointer;
     background-color: transparent;
     border: none;
     font-size: 0.95em;
     color:#b81414;
     transition: all 0.3s ease;
     margin: 0 5px;
     display: inline-block;
}

.tab-btn:hover {
     color: #dd2d2d;
}
     .tab-btn.active {
        color:#dd2d2d;
        border-bottom: 3px solid #dd2d2d;
        font-weight: bold;
     }

.tab-pane {
     display: none;
     text-align: left;
     padding: 15px 0;
     line-height: 1.6;
}     

.tab-pane.active {
     display: block;
}

.relative-box {
     position: relative;
     background-color: #1c0000;
     border: 1px solid #dd2d2d;
     padding: 20px;
     margin-top: 15px;
     text-align: center;
}

.absolute-child {
     position: absolute;
     background-color: #dd2d2d;
     color:#eee;
     font-size: 13px;
     border-radius: 5px;
     top: -15px;
     right: 10px;
     z-index: 10;
}

.gallery-item {
      display:block;
      width: 90%;
      margin: 1.5%;
}

.gallery-item img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 5px #ff0000;
}