body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg,#634c29,#cecb26,#69ce26);
    color: #333;
}
        .artist-card {
            width: 400px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 30px;
            text-align: center;
            position: relative; 
            overflow: hidden;
            margin-top: 50px;
            margin-bottom: 50px;
        }
         .artist-profile-img {
            width: 120px;
            height: 120px;
            border-radius:50%;
            object-fit: cover;
            border: 4px solid #cecb26;
            margin-bottom: 20px;
        }
         .artist-name {
            font-size: 1.8em;
            margin-bottom: 5px;
            color: #cecb26;
        }

        .artist-title {
            font-size: 1em;
            color: #666;
            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: #555;
            transition: all 0.3s ease;
            margin: 0 5px;
            display: inline-block;
        }
         .tab-btn:hover {
            color: #634c29;
        }
         .tab-btn.active {
            color: #634c29;
            border-bottom: 3px solid #634c29;
            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: #f0f0f0;
            border: 1px dashed #aaa;
            padding: 20px;
            margin-top: 15px;
            text-align: center;
        }
           .absolute-child {
            position: absolute;
            background-color: #ff6347;
            color: white;
            padding: 5px 10px;
            font-size: 13px;
            border-radius: 5px;
            top: -15px;
            right: 10px;
            z-index: 10;
        }
       .gallery-item {
            display: inline-block;
            width: 28%;
            margin: 1.5%;
            vertical-align: top;
        }

        .gallery-item img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }