    body {
      background-image: url('mbk.gif');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      background-color: #0b0f19;
      font-family: 'Inter', sans-serif;
      color: #ffffff;
    }
    
    /* Elegant premium glassmorphism card showcase panel */
    .showcase-card {
      background: rgba(15, 23, 42, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      overflow: hidden;
    }
    
    /* Clean, modern breadcrumb styles */
    .custom-breadcrumb a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 1px;
      transition: color 0.2s;
    }
    .custom-breadcrumb a:hover {
      color: #fff;
    }
    .custom-breadcrumb .active {
      color: #3b82f6;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    /* Card image display viewport stage */
    .image-stage {
      background: radial-gradient(circle at center, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 480px;
    }
    
    .main-card-img {
      max-height: 440px;
      object-fit: contain;
      filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .main-card-img:hover {
      transform: scale(1.025);
    }
    
    /* Interactive thumbnail wrappers */
    .thumb-wrapper {
      cursor: pointer;
      background: rgba(255, 255, 255, 0.03);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 6px;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .thumb-wrapper img {
      max-height: 85px;
      object-fit: contain;
      border-radius: 6px;
    }
    .thumb-wrapper:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.3);
    }
    .thumb-wrapper.active {
      background: rgba(59, 130, 246, 0.15);
      border-color: #3b82f6;
      box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    }
    
    /* Action floating-style button circles */
    .action-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 0.2s;
    }
    .action-btn:hover {
      background: #ffffff;
      color: #0b0f19;
      transform: translateY(-2px);
    }

    /* Player profile presentation details */
    .player-title {
      font-weight: 800;
      letter-spacing: -1px;
      background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .meta-pill {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 1rem;
    }
    
    .spec-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 2px;
    }
    .spec-value {
      font-size: 1.1rem;
      font-weight: 600;
    }
    
    .badge-prospect {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.5px;
    }